├── 6 ├── .exclude-c9s ├── .exclude-rhel9 ├── Dockerfile.c9s ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── run-redis │ │ └── usage │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── redis │ │ ├── README.md │ │ ├── base.conf.template │ │ ├── common.sh │ │ ├── helpers.sh │ │ ├── password.conf.template │ │ ├── post-init.sh │ │ ├── scl_enable │ │ └── validate-variables.sh └── test ├── 7 ├── .exclude-rhel8 ├── Dockerfile.c9s ├── Dockerfile.fedora ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ └── usr │ │ ├── bin │ │ ├── container-entrypoint │ │ ├── run-redis │ │ └── usage │ │ ├── libexec │ │ └── container-setup │ │ └── share │ │ └── container-scripts │ │ └── redis │ │ ├── README.md │ │ ├── base.conf.template │ │ ├── common.sh │ │ ├── helpers.sh │ │ ├── password.conf.template │ │ ├── post-init.sh │ │ └── validate-variables.sh └── test ├── .github ├── auto-merge.yml ├── dependabot.yml └── workflows │ ├── auto-merge-on-demand.yml │ ├── auto-merge.yml │ ├── build-and-push.yml │ ├── container-tests.yml │ └── pr-metadata.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── examples ├── redis-ephemeral-template.json └── redis-persistent-template.json ├── imagestreams ├── imagestreams.yaml ├── redis-centos.json ├── redis-rhel-aarch64.json └── redis-rhel.json └── test ├── __init__.py ├── check_imagestreams.py ├── conftest.py ├── examples ├── imagestreams ├── redis-ephemeral-template.json ├── run ├── run-openshift-pytest ├── run-openshift-remote-cluster ├── run-pytest ├── show_all_imagestreams.py ├── test-lib-openshift.sh ├── test-lib-redis.sh ├── test-lib-remote-openshift.sh ├── test-lib.sh ├── test-openshift.yaml ├── test_container_application.py ├── test_container_basics.py ├── test_redis_imagestream.py ├── test_redis_imagestream_template.py ├── test_redis_latest_imagestreams.py ├── test_redis_local_template.py ├── test_redis_shared_helm_imagestreams.py └── test_redis_shared_helm_template.py /.github/auto-merge.yml: -------------------------------------------------------------------------------- 1 | target-branch: [] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-on-demand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.github/workflows/auto-merge-on-demand.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.github/workflows/build-and-push.yml -------------------------------------------------------------------------------- /.github/workflows/container-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.github/workflows/container-tests.yml -------------------------------------------------------------------------------- /.github/workflows/pr-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.github/workflows/pr-metadata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*image-id* 2 | help.1 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/.gitmodules -------------------------------------------------------------------------------- /6/.exclude-c9s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6/.exclude-rhel9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /6/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/Dockerfile.c9s -------------------------------------------------------------------------------- /6/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/Dockerfile.rhel8 -------------------------------------------------------------------------------- /6/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/Dockerfile.rhel9 -------------------------------------------------------------------------------- /6/README.md: -------------------------------------------------------------------------------- 1 | root/usr/share/container-scripts/redis/README.md -------------------------------------------------------------------------------- /6/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /6/root/usr/bin/run-redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/bin/run-redis -------------------------------------------------------------------------------- /6/root/usr/bin/usage: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat /usr/share/container-scripts/redis/README.md 4 | 5 | -------------------------------------------------------------------------------- /6/root/usr/libexec/container-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/libexec/container-setup -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/share/container-scripts/redis/README.md -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/base.conf.template: -------------------------------------------------------------------------------- 1 | dir ${REDIS_DATADIR} 2 | -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/share/container-scripts/redis/common.sh -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/share/container-scripts/redis/helpers.sh -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/password.conf.template: -------------------------------------------------------------------------------- 1 | # password for the server 2 | requirepass "${REDIS_PASSWORD}" 3 | 4 | -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/post-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/share/container-scripts/redis/post-init.sh -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/scl_enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/share/container-scripts/redis/scl_enable -------------------------------------------------------------------------------- /6/root/usr/share/container-scripts/redis/validate-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/6/root/usr/share/container-scripts/redis/validate-variables.sh -------------------------------------------------------------------------------- /6/test: -------------------------------------------------------------------------------- 1 | ../test/ -------------------------------------------------------------------------------- /7/.exclude-rhel8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /7/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/Dockerfile.c9s -------------------------------------------------------------------------------- /7/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/Dockerfile.fedora -------------------------------------------------------------------------------- /7/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/Dockerfile.rhel8 -------------------------------------------------------------------------------- /7/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/Dockerfile.rhel9 -------------------------------------------------------------------------------- /7/README.md: -------------------------------------------------------------------------------- 1 | root/usr/share/container-scripts/redis/README.md -------------------------------------------------------------------------------- /7/root/usr/bin/container-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exec "$@" 3 | -------------------------------------------------------------------------------- /7/root/usr/bin/run-redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/bin/run-redis -------------------------------------------------------------------------------- /7/root/usr/bin/usage: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat /usr/share/container-scripts/redis/README.md 4 | 5 | -------------------------------------------------------------------------------- /7/root/usr/libexec/container-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/libexec/container-setup -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/share/container-scripts/redis/README.md -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/base.conf.template: -------------------------------------------------------------------------------- 1 | dir ${REDIS_DATADIR} 2 | -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/share/container-scripts/redis/common.sh -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/share/container-scripts/redis/helpers.sh -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/password.conf.template: -------------------------------------------------------------------------------- 1 | # password for the server 2 | requirepass "${REDIS_PASSWORD}" 3 | 4 | -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/post-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/share/container-scripts/redis/post-init.sh -------------------------------------------------------------------------------- /7/root/usr/share/container-scripts/redis/validate-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/7/root/usr/share/container-scripts/redis/validate-variables.sh -------------------------------------------------------------------------------- /7/test: -------------------------------------------------------------------------------- 1 | ../test/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/README.md -------------------------------------------------------------------------------- /examples/redis-ephemeral-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/examples/redis-ephemeral-template.json -------------------------------------------------------------------------------- /examples/redis-persistent-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/examples/redis-persistent-template.json -------------------------------------------------------------------------------- /imagestreams/imagestreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/imagestreams/imagestreams.yaml -------------------------------------------------------------------------------- /imagestreams/redis-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/imagestreams/redis-centos.json -------------------------------------------------------------------------------- /imagestreams/redis-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/imagestreams/redis-rhel-aarch64.json -------------------------------------------------------------------------------- /imagestreams/redis-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/imagestreams/redis-rhel.json -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../common/check_imagestreams.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/examples: -------------------------------------------------------------------------------- 1 | ../examples -------------------------------------------------------------------------------- /test/imagestreams: -------------------------------------------------------------------------------- 1 | ../imagestreams -------------------------------------------------------------------------------- /test/redis-ephemeral-template.json: -------------------------------------------------------------------------------- 1 | ../examples/redis-ephemeral-template.json -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/run -------------------------------------------------------------------------------- /test/run-openshift-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/run-openshift-pytest -------------------------------------------------------------------------------- /test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/run-pytest -------------------------------------------------------------------------------- /test/show_all_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../common/show_all_imagestreams.py -------------------------------------------------------------------------------- /test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /test/test-lib-redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test-lib-redis.sh -------------------------------------------------------------------------------- /test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../common/test-lib.sh -------------------------------------------------------------------------------- /test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../common/test-openshift.yaml -------------------------------------------------------------------------------- /test/test_container_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_container_application.py -------------------------------------------------------------------------------- /test/test_container_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_container_basics.py -------------------------------------------------------------------------------- /test/test_redis_imagestream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_redis_imagestream.py -------------------------------------------------------------------------------- /test/test_redis_imagestream_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_redis_imagestream_template.py -------------------------------------------------------------------------------- /test/test_redis_latest_imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_redis_latest_imagestreams.py -------------------------------------------------------------------------------- /test/test_redis_local_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_redis_local_template.py -------------------------------------------------------------------------------- /test/test_redis_shared_helm_imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_redis_shared_helm_imagestreams.py -------------------------------------------------------------------------------- /test/test_redis_shared_helm_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/redis-container/HEAD/test/test_redis_shared_helm_template.py --------------------------------------------------------------------------------