-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sync-20240920052429
- Loading branch information
Showing
195 changed files
with
358 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Report IB Build Failures | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
issues: write | ||
contents: read | ||
actions: read | ||
|
||
jobs: | ||
report-failures: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get the last two runs of "Image Creation Run" workflow | ||
id: get_runs | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const workflowName = 'Image Creation Run'; | ||
const owner = context.repo.owner; | ||
const repo = context.repo.repo; | ||
// Get the workflows in the repo | ||
const workflows = await github.rest.actions.listRepoWorkflows({ | ||
owner, | ||
repo | ||
}); | ||
// Find the workflow ID for "Image Creation Run" | ||
const workflow = workflows.data.workflows.find(wf => wf.name === workflowName); | ||
if (!workflow) { | ||
core.setFailed(`Workflow "${workflowName}" not found.`); | ||
return; | ||
} | ||
const workflow_id = workflow.id; | ||
// Get the last two workflow runs | ||
const runsResponse = await github.rest.actions.listWorkflowRuns({ | ||
owner, | ||
repo, | ||
workflow_id, | ||
per_page: 2, | ||
}); | ||
const runs = runsResponse.data.workflow_runs; | ||
if (runs.length < 2) { | ||
core.setFailed('Not enough workflow runs found.'); | ||
return; | ||
} | ||
// Output the run IDs | ||
core.setOutput('run_id1', runs[0].id); | ||
core.setOutput('run_id2', runs[1].id); | ||
- name: Get failed jobs from the last two runs with suffix "-ib" | ||
id: get_failed_jobs | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const owner = context.repo.owner; | ||
const repo = context.repo.repo; | ||
const run_id1 = ${{ steps.get_runs.outputs.run_id1 }}; | ||
const run_id2 = ${{ steps.get_runs.outputs.run_id2 }}; | ||
// Function to get failed jobs ending with "-ib" | ||
async function getFailedJobs(run_id) { | ||
const jobsResponse = await github.rest.actions.listJobsForWorkflowRun({ | ||
owner, | ||
repo, | ||
run_id, | ||
per_page: 200, | ||
}); | ||
const jobs = jobsResponse.data.jobs; | ||
const failedJobs = jobs.filter(job => { | ||
return job.conclusion === 'failure' && job.name.endsWith('-ib'); | ||
}); | ||
return failedJobs.map(job => job.name); | ||
} | ||
const failedJobs1 = await getFailedJobs(run_id1); | ||
const failedJobs2 = await getFailedJobs(run_id2); | ||
// Find jobs that failed in both runs | ||
const failedInBoth = failedJobs1.filter(job => failedJobs2.includes(job)); | ||
core.setOutput('failed_jobs', failedInBoth.join(',')); | ||
- name: Report jobs failed in last two runs | ||
if: steps.get_failed_jobs.outputs.failed_jobs != '' | ||
run: | | ||
echo "Images failed in both of the last two runs: ${{ steps.get_failed_jobs.outputs.failed_jobs }}" |
Binary file modified
BIN
-100 Bytes
(98%)
community_images/airflow/airflow-scheduler/bitnami-ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-134 Bytes
(99%)
community_images/airflow/airflow-scheduler/bitnami-ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+14 Bytes
(100%)
community_images/airflow/airflow-worker/bitnami-ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+488 Bytes
(100%)
community_images/airflow/airflow-worker/bitnami-ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-80 Bytes
(99%)
community_images/airflow/airflow/bitnami-ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-168 Bytes
(99%)
community_images/airflow/airflow/bitnami-ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-108 Bytes
(98%)
community_images/airflow/airflow/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-44 Bytes
(100%)
community_images/airflow/airflow/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-60 Bytes
(99%)
community_images/alertmanager/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+140 Bytes
(100%)
community_images/alertmanager/ironbank/assets/metrics.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-140 Bytes
(98%)
community_images/ansible-lint/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-114 Bytes
(99%)
community_images/ansible-lint/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: ansible-operator-ib | ||
official_name: Ansible-Operator Iron Bank | ||
official_website: https://sdk.operatorframework.io/docs/building-operators/ansible/ | ||
source_image_provider: Platform One | ||
source_image_repo: registry1.dso.mil/ironbank/opensource/ansible/ansible-operator | ||
source_image_repo_link: https://registry1.dso.mil/harbor/projects/3/repositories/ironbank%2Fopensource%2Fansible%2Fansible-operator | ||
source_image_readme: https://repo1.dso.mil/dsop/opensource/ansible/ansible-operator/-/blob/development/README.md | ||
rf_docker_link: rapidfort/ansible-operator-ib | ||
image_workflow_name: ansible-operator_ironbank | ||
github_location: ansible-operator/ironbank | ||
report_url: https://us01.rapidfort.com/app/community/imageinfo/registry1.dso.mil%2Fironbank%2Fopensource%2Fansible%2Fansible-operator | ||
usage_instructions: | | ||
## Prerequisites: | ||
- Ensure you have a running Kubernetes cluster | ||
- Ensure you have the necessary CRDs (Custom Resource Definitions) applied in your Kubernetes cluster. | ||
## Running the Ansible Operator with Docker: | ||
The Ansible Operator runs as a container and requires access to a Kubernetes cluster to manage custom resources. | ||
$ docker run -d -v $HOME/.kube:/root/.kube:ro -v /path/to/watches.yml:/opt/ansible/watches.yml:ro rapidfort/ansible-operator-ib | ||
After running the operator, apply the necessary CRDs in your Kubernetes cluster | ||
$ kubectl apply -f /path/to/crd.yml | ||
Once the CRD is applied, create custom resources for the Ansible Operator to manage | ||
$ kubectl apply -f /path/to/cr.yml | ||
what_is_text: | | ||
Ansible-Operator allows you to manage Kubernetes resources by running Ansible playbooks, providing a simplified way to automate Kubernetes operations using Ansible. | ||
disclaimer: | | ||
Trademarks: This software listing is packaged by RapidFort. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. | ||
is_locked: "False" | ||
input_registry: | ||
registry: registry1.dso.mil | ||
account: ironbank | ||
repo_sets: | ||
- opensource/ansible/ansible-operator: | ||
input_base_tag: "v1.35." | ||
output_repo: ansible-operator-ib | ||
runtimes: | ||
- type: docker_compose | ||
script: dc_coverage.sh | ||
compose_file: docker-compose.yml | ||
image_keys: | ||
ansible-operator-ib: | ||
repository: "ANSBILE_OPERATOR_IMAGE_REPOSITORY" | ||
tag: "ANSBILE_OPERATOR_IMAGE_TAG" |
Binary file modified
BIN
-68 Bytes
(99%)
community_images/ansible/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-12 Bytes
(100%)
community_images/argocd/bigbang-ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-164 Bytes
(99%)
community_images/argocd/bigbang-ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+26 Bytes
(100%)
community_images/argocd/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-80 Bytes
(99%)
community_images/auditbeat/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-20 Bytes
(100%)
community_images/blackbox-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-398 Bytes
(98%)
community_images/blackbox-exporter/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: boundary-ib | ||
official_name: Boundary Iron Bank | ||
official_website: https://boundaryproject.io/ | ||
source_image_provider: Platform One | ||
source_image_repo: registry1.dso.mil/ironbank/hashicorp/boundary | ||
source_image_repo_link: https://registry1.dso.mil/harbor/projects/3/repositories/hashicorp%2Fboundary%2Fboundary | ||
source_image_readme: https://repo1.dso.mil/dsop/hashicorp/boundary/boundary/-/blob/development/README.md | ||
rf_docker_link: rapidfort/boundary-ib | ||
image_workflow_name: boundary_ironbank | ||
github_location: boundary/ironbank | ||
report_url: https://us01.rapidfort.com/app/community/imageinfo/registry1.dso.mil%2Fironbank%2Fhashicorp%2Fboundary%2Fboundary | ||
usage_instructions: | | ||
$ docker run -d --name boundary -v "$PWD"/config.hcl:/boundary/config.hcl rapidfort/boundary-ib [COMMAND] | ||
what_is_text: | | ||
HashiCorp Boundary is an identity-aware proxy aimed at simplifying and securing least-privileged access to cloud infrastructure | ||
disclaimer: | | ||
Trademarks: This software listing is packaged by RapidFort. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. | ||
input_registry: | ||
registry: registry1.dso.mil | ||
account: ironbank | ||
is_locked: "False" | ||
repo_sets: | ||
- hashicorp/boundary: | ||
input_base_tag: "0.17." | ||
output_repo: boundary-ib | ||
runtimes: | ||
- type: docker_compose | ||
script: dc_coverage.sh | ||
compose_file: docker-compose.yml | ||
image_keys: | ||
boundary-ib: | ||
repository: "BOUNDARY_IMAGE_REPOSITORY" | ||
tag: "BOUNDARY_IMAGE_TAG" |
Binary file modified
BIN
+90 Bytes
(100%)
community_images/buildah/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-14 Bytes
(100%)
community_images/chart-testing/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-148 Bytes
(99%)
community_images/chart-testing/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: clickhouse-ib | ||
official_name: clickhouse Iron Bank | ||
official_website: https://clickhouse.com | ||
source_image_provider: Platform One | ||
source_image_repo: registry1.dso.mil/ironbank/opensource/clickhouse | ||
source_image_repo_link: https://registry1.dso.mil/harbor/projects/3/repositories/opensource%2Fclickhouse | ||
source_image_readme: https://repo1.dso.mil/dsop/opensource/clickhouse/clickhouse/-/blob/development/README.md | ||
rf_docker_link: rapidfort/clickhouse-ib | ||
image_workflow_name: clickhouse_ironbank | ||
github_location: clickhouse/ironbank | ||
report_url: https://us01.rapidfort.com/app/community/imageinfo/registry1.dso.mil%2Fironbank%2Fopensource%2Fclickhouse | ||
usage_instructions: | | ||
#Run the clickhouse container: | ||
$ docker run -d --name clickhouse-server rapidfort/clickhouse-ib | ||
what_is_text: | | ||
ClickHouse is an open-source column-oriented database management system that allows generating analytical data reports in real-time. | ||
disclaimer: | | ||
Trademarks: This software listing is packaged by RapidFort. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. | ||
input_registry: | ||
registry: registry1.dso.mil | ||
account: ironbank | ||
repo_sets: | ||
- opensource/clickhouse: | ||
input_base_tag: "22.3." | ||
output_repo: clickhouse-ib | ||
runtimes: | ||
- type: docker_compose | ||
script: dc_coverage.sh | ||
compose_file: docker-compose.yml | ||
image_keys: | ||
clickhouse-ib: | ||
repository: "CLICKHOUSE_IMAGE_REPOSITORY" | ||
tag: "CLICKHOUSE_IMAGE_TAG" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-4 Bytes
(100%)
community_images/eck-operator/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-122 Bytes
(99%)
community_images/eck-operator/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-76 Bytes
(99%)
community_images/elasticsearch-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-220 Bytes
(99%)
community_images/elasticsearch-exporter/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+94 Bytes
(100%)
community_images/filebeat/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-124 Bytes
(98%)
community_images/fluent-bit/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-66 Bytes
(99%)
community_images/fluentd-elasticsearch/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-58 Bytes
(100%)
community_images/fluentd-elasticsearch/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-66 Bytes
(99%)
community_images/fluentd/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-152 Bytes
(98%)
community_images/fluxcd-helm-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-326 Bytes
(99%)
community_images/fluxcd-helm-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-44 Bytes
(99%)
community_images/fluxcd-image-automation-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-50 Bytes
(100%)
community_images/fluxcd-image-automation-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(100%)
community_images/fluxcd-image-reflector-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-398 Bytes
(98%)
community_images/fluxcd-image-reflector-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+10 Bytes
(100%)
community_images/fluxcd-kustomize-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+68 Bytes
(100%)
community_images/fluxcd-kustomize-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-82 Bytes
(99%)
community_images/fluxcd-notification-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-166 Bytes
(99%)
community_images/fluxcd-notification-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-4 Bytes
(100%)
community_images/fluxcd-source-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+452 Bytes
(100%)
community_images/fluxcd-source-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+60 Bytes
(100%)
community_images/gatekeeper/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-58 Bytes
(99%)
community_images/git-lfs/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+32 Bytes
(100%)
community_images/gitlab-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-356 Bytes
(98%)
community_images/gitlab-exporter/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-14 Bytes
(100%)
community_images/gitlab-runner/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-152 Bytes
(99%)
community_images/gitlab-runner/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+48 Bytes
(100%)
community_images/grafana-plugins/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+184 Bytes
(100%)
community_images/grafana-plugins/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+58 Bytes
(100%)
community_images/grafana/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-60 Bytes
(99%)
community_images/haproxy/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
community_images/heartbeat/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: jq-ib | ||
official_name: JQ Iron Bank | ||
official_website: https://jqlang.github.io/jq/ | ||
source_image_provider: Platform One | ||
source_image_repo: registry1.dso.mil/ironbank/stedolan/jq | ||
source_image_repo_link: https://registry1.dso.mil/harbor/projects/3/repositories/stedolan%2Fjq | ||
source_image_readme: https://repo1.dso.mil/dsop/opensource/stedolan/jq/-/blob/development/README.md | ||
rf_docker_link: rapidfort/jq-ib | ||
github_location: jq/ironbank | ||
image_workflow_name: jq_ironbank | ||
report_url: https://us01.rapidfort.com/app/community/imageinfo/registry1.dso.mil%2Fironbank%2Fstedolan%2Fjq | ||
usage_instructions: | | ||
#Run the jq container: | ||
$ docker run -i rapidfort/jq-ib <test.json '.a+.b' | ||
what_is_text: | | ||
jq is a lightweight and flexible command-line JSON processor. | ||
disclaimer: | | ||
Trademarks: This software listing is packaged by RapidFort. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. | ||
input_registry: | ||
registry: registry1.dso.mil | ||
account: ironbank | ||
repo_sets: | ||
- stedolan/jq: | ||
input_base_tag: "1.7." | ||
output_repo: jq-ib | ||
runtimes: | ||
- type: docker_compose | ||
script: dc_coverage.sh | ||
compose_file: docker-compose.yml | ||
image_keys: | ||
jq-ib: | ||
repository: "JQ_IMAGE_REPOSITORY" | ||
tag: "JQ_IMAGE_TAG" |
Binary file modified
BIN
-40 Bytes
(99%)
community_images/k8s-sidecar/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: kafka-bridge-ib | ||
official_name: Kafka Bridge Iron Bank | ||
official_website: https://strimzi.io/docs/bridge/in-development/ | ||
source_image_provider: Platform One | ||
source_image_repo: registry1.dso.mil/ironbank/opensource/apache/kakfa-bridge | ||
source_image_repo_link: https://registry1.dso.mil/harbor/projects/3/repositories/opensource%2Fapache%2Fkafka-bridge | ||
source_image_readme: https://repo1.dso.mil/dsop/opensource/apache/kafka-bridge/-/blob/development/README.md | ||
rf_docker_link: rapidfort/kafka-bridge-ib | ||
image_workflow_name: kafka-bridge_ironbank | ||
github_location: kafka-bridge/ironbank | ||
report_url: https://us01.rapidfort.com/app/community/imageinfo/registry1.dso.mil%2Fironbank%2Fopensource%2Fapache%2Fkafka-bridge | ||
usage_instructions: | | ||
$ docker pull rapidfort/kafka-bridge-ib | ||
$ docker run -w /opt/strimzi/kafka-bridge-0.30.0/ rapidfort/kafka-bridge-ib bash bin/kafka_bridge_run.sh --config-file config/application.properties | ||
what_is_text: | | ||
The Kafka Bridge provides a RESTful interface that allows HTTP-based clients to interact with a Kafka cluster. It offers the advantages of a web API connection to Strimzi, without the need for client applications to interpret the Kafka protocol. | ||
disclaimer: | | ||
Trademarks: This software listing is packaged by RapidFort. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. | ||
input_registry: | ||
registry: registry1.dso.mil | ||
account: ironbank | ||
repo_sets: | ||
- opensource/apache/kafka-bridge: | ||
input_base_tag: "0.30." | ||
output_repo: kafka-bridge-ib | ||
runtimes: | ||
- type: docker_compose | ||
script: dc_coverage.sh | ||
compose_file: docker-compose.yml | ||
image_keys: | ||
kafka-bridge-ib: | ||
repository: "KAFKA_BRIDGE_IMAGE_REPOSITORY" | ||
tag: "KAFKA_BRIDGE_IMAGE_TAG" |
Binary file modified
BIN
-146 Bytes
(98%)
community_images/kafka-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-64 Bytes
(100%)
community_images/kafka-exporter/ironbank/assets/metrics.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-20 Bytes
(100%)
community_images/kyverno-background-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-36 Bytes
(100%)
community_images/kyverno-background-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-20 Bytes
(100%)
community_images/kyverno-cleanup-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-12 Bytes
(100%)
community_images/kyverno-cleanup-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-20 Bytes
(100%)
community_images/kyverno-reports-controller/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-16 Bytes
(100%)
community_images/kyverno-reports-controller/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
+22 Bytes
(100%)
community_images/logstash/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+28 Bytes
(100%)
community_images/mariadb/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-28 Bytes
(100%)
community_images/memcached/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-46 Bytes
(99%)
community_images/metrics-server/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+308 Bytes
(100%)
community_images/metrics-server/ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-46 Bytes
(99%)
community_images/minio-operator-sidecar/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+188 Bytes
(100%)
community_images/minio-operator-sidecar/ironbank/assets/metrics.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-156 Bytes
(98%)
community_images/mkdocs/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+74 Bytes
(100%)
community_images/mongodb/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+34 Bytes
(100%)
community_images/moodle/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+24 Bytes
(100%)
community_images/nifi-registry/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-2 Bytes
(100%)
community_images/nifi-registry/ironbank/assets/metrics.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-46 Bytes
(99%)
community_images/node-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+190 Bytes
(100%)
community_images/node-exporter/ironbank/assets/metrics.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-58 Bytes
(99%)
community_images/openldap/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
community_images/packetbeat/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+40 Bytes
(100%)
community_images/podman/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-56 Bytes
(99%)
community_images/postgres-exporter/bitnami-ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
community_images/postgres-exporter/bitnami-ironbank/assets/metrics.webp
Binary file not shown.
Binary file modified
BIN
-14 Bytes
(100%)
community_images/postgres-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-26 Bytes
(100%)
community_images/postgres-exporter/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: postgresql-bitnami-ib | ||
official_name: PostgreSQL IronBank (Bitnami) | ||
official_website: https://www.postgresql.com/ | ||
source_image_provider: Platform One | ||
source_image_repo: registry1.dso.mil/ironbank/bitnami/postgres | ||
source_image_repo_link: https://registry1.dso.mil/harbor/projects/3/repositories/bitnami%2Fpostgres | ||
source_image_readme: https://repo1.dso.mil/dsop/bitnami/postgres/postgresql16/-/blob/development/README.md | ||
rf_docker_link: rapidfort/postgresql-bitnami-ib | ||
image_workflow_name: postgresql_bitnami_ironbank | ||
github_location: postgresql/bitnami-ironbank | ||
report_url: https://us01.rapidfort.com/app/community/imageinfo/registry1.dso.mil%2Fironbank%2Fbitnami%2Fpostgres | ||
usage_instructions: | | ||
$ docker run -e POSTGRES_PASSWORD=mysecretpassword -d rapidfort/postgresql16-bitnami-ib:latest | ||
what_is_text: | | ||
PostgreSQL, often simply "Postgres", is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards-compliance. As a database server, its primary function is to store data, securely and supporting best practices, and retrieve it later, as requested by other software applications, be it those on the same computer or those running on another computer across a network (including the Internet). It can handle workloads ranging from small single-machine applications to large Internet-facing applications with many concurrent users. Recent versions also provide replication of the database itself for security and scalability. | ||
disclaimer: | | ||
Trademarks: This software listing is packaged by RapidFort. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement. | ||
is_locked: "False" | ||
input_registry: | ||
registry: registry1.dso.mil | ||
account: ironbank | ||
repo_sets: | ||
- bitnami/postgres: | ||
input_base_tag: "16.3." | ||
output_repo: postgresql16-bitnami-ib | ||
runtimes: | ||
- type: docker_compose | ||
script: dc_coverage.sh | ||
compose_file: docker-compose.yml | ||
image_keys: | ||
postgresql16-bitnami-ib: | ||
repository: "PG_IMAGE_REPOSITORY" | ||
tag: "PG_IMAGE_TAG" | ||
- type: docker | ||
postgresql16-bitnami-ib: | ||
environment: | ||
POSTGRES_PASSWORD: PgPwd |
Binary file modified
BIN
-140 Bytes
(98%)
community_images/postgresql/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+28 Bytes
(100%)
community_images/prometheus-config-reloader/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
-136 Bytes
(99%)
community_images/prometheus-config-reloader/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+30 Bytes
(100%)
community_images/prometheus-operator/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+102 Bytes
(100%)
community_images/prometheus-operator/ironbank/assets/metrics.webp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-114 Bytes
(98%)
community_images/prometheus/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-1.31 KB
(82%)
community_images/rabbitmq/official/assets/cve_reduction.webp
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+14 Bytes
(100%)
community_images/redis-exporter/ironbank/assets/cve_reduction.webp
Binary file not shown.
Binary file modified
BIN
+42 Bytes
(100%)
community_images/redis-exporter/ironbank/assets/metrics.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.