├── .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 ├── 2.4-micro ├── .build-args-c9s ├── .exclude-c8s ├── 2.4-micro ├── Dockerfile.c10s ├── Dockerfile.c8s ├── Dockerfile.c9s ├── Dockerfile.fedora ├── README.md ├── core-scripts ├── root │ └── usr │ │ ├── bin │ │ └── run-httpd │ │ ├── libexec │ │ └── httpd-prepare │ │ └── share │ │ └── container-scripts │ │ └── httpd │ │ ├── README.md │ │ ├── common.sh │ │ ├── passwd.template │ │ ├── post-assemble │ │ ├── 20-copy-config.sh │ │ └── 40-ssl-certs.sh │ │ └── pre-init │ │ ├── 10-set-mpm.sh │ │ ├── 20-copy-config.sh │ │ └── 40-ssl-certs.sh ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── check_imagestreams.py │ ├── constants.py │ ├── examples │ ├── imagestreams │ ├── pre-init-test-app │ ├── httpd-pre-init │ │ └── modify_index.sh │ └── index.html │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── sample-test-app │ ├── self-signed-ssl │ ├── settings.py │ ├── test-lib-httpd.sh │ ├── test-lib-openshift.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test_container_httpd.py │ ├── test_container_httpd_s2i.py │ ├── test_ocp_ex_template.py │ ├── test_ocp_imagestream_s2i.py │ ├── test_ocp_imagestreams.py │ ├── test_ocp_integration.py │ ├── test_ocp_shared_helm_imagestreams.py │ ├── test_ocp_shared_helm_template.py │ └── utils.sh ├── 2.4 ├── 2.4 ├── Dockerfile.c10s ├── Dockerfile.c9s ├── Dockerfile.fedora ├── Dockerfile.rhel10 ├── Dockerfile.rhel8 ├── Dockerfile.rhel9 ├── README.md ├── root │ └── usr │ │ ├── bin │ │ └── run-httpd │ │ ├── libexec │ │ └── httpd-prepare │ │ └── share │ │ └── container-scripts │ │ └── httpd │ │ ├── README.md │ │ ├── common.sh │ │ ├── passwd.template │ │ ├── post-assemble │ │ ├── 20-copy-config.sh │ │ └── 40-ssl-certs.sh │ │ └── pre-init │ │ ├── 10-set-mpm.sh │ │ ├── 20-copy-config.sh │ │ └── 40-ssl-certs.sh ├── s2i │ └── bin │ │ ├── assemble │ │ ├── run │ │ └── usage └── test │ ├── __init__.py │ ├── check_imagestreams.py │ ├── constants.py │ ├── examples │ ├── imagestreams │ ├── pre-init-test-app │ ├── httpd-pre-init │ │ └── modify_index.sh │ └── index.html │ ├── run │ ├── run-openshift-pytest │ ├── run-openshift-remote-cluster │ ├── run-pytest │ ├── sample-test-app │ ├── self-signed-ssl │ ├── settings.py │ ├── test-lib-httpd.sh │ ├── test-lib-openshift.sh │ ├── test-lib-remote-openshift.sh │ ├── test-lib.sh │ ├── test-openshift.yaml │ ├── test_container_httpd.py │ ├── test_container_httpd_s2i.py │ ├── test_ocp_ex_template.py │ ├── test_ocp_imagestream_s2i.py │ ├── test_ocp_imagestreams.py │ ├── test_ocp_integration.py │ ├── test_ocp_shared_helm_imagestreams.py │ ├── test_ocp_shared_helm_template.py │ └── utils.sh ├── LICENSE ├── Makefile ├── README.md ├── examples ├── Dockerfile ├── Dockerfile.s2i ├── README.md ├── sample-test-app │ ├── Dockerfile │ ├── Dockerfile.s2i │ └── index.html └── self-signed-ssl │ ├── Dockerfile │ ├── Dockerfile.s2i │ ├── httpd-ssl │ ├── certs │ │ └── server-cert-selfsigned.pem │ └── private │ │ └── server-key.pem │ └── index.html ├── imagestreams ├── httpd-centos.json ├── httpd-rhel-aarch64.json ├── httpd-rhel.json └── imagestreams.yaml └── test ├── __init__.py ├── check_imagestreams.py ├── constants.py ├── imagestreams ├── run ├── run-openshift-pytest ├── run-openshift-remote-cluster ├── run-pytest ├── sample-test-app ├── settings.py ├── show_all_imagestreams.py ├── test-lib-httpd.sh ├── test-lib-openshift.sh ├── test-lib-remote-openshift.sh ├── test-lib.sh ├── test-openshift.yaml ├── test_container_httpd.py ├── test_container_httpd_s2i.py ├── test_ocp_ex_template.py ├── test_ocp_imagestream_s2i.py ├── test_ocp_imagestreams.py ├── test_ocp_integration.py ├── test_ocp_shared_helm_imagestreams.py └── test_ocp_shared_helm_template.py /.github/auto-merge.yml: -------------------------------------------------------------------------------- 1 | target-branch: [] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-on-demand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.github/workflows/auto-merge-on-demand.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.github/workflows/build-and-push.yml -------------------------------------------------------------------------------- /.github/workflows/container-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.github/workflows/container-tests.yml -------------------------------------------------------------------------------- /.github/workflows/pr-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.github/workflows/pr-metadata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*image-id* 2 | help.1 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/.gitmodules -------------------------------------------------------------------------------- /2.4-micro/.build-args-c9s: -------------------------------------------------------------------------------- 1 | --cap-add=CAP_SYS_CHROOT 2 | -------------------------------------------------------------------------------- /2.4-micro/.exclude-c8s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2.4-micro/2.4-micro: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /2.4-micro/Dockerfile.c10s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/Dockerfile.c10s -------------------------------------------------------------------------------- /2.4-micro/Dockerfile.c8s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/Dockerfile.c8s -------------------------------------------------------------------------------- /2.4-micro/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/Dockerfile.c9s -------------------------------------------------------------------------------- /2.4-micro/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/Dockerfile.fedora -------------------------------------------------------------------------------- /2.4-micro/README.md: -------------------------------------------------------------------------------- 1 | root/usr/share/container-scripts/httpd/README.md -------------------------------------------------------------------------------- /2.4-micro/core-scripts: -------------------------------------------------------------------------------- 1 | ../common/shared-scripts/core/ -------------------------------------------------------------------------------- /2.4-micro/root/usr/bin/run-httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/bin/run-httpd -------------------------------------------------------------------------------- /2.4-micro/root/usr/libexec/httpd-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/libexec/httpd-prepare -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/README.md -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/common.sh -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/passwd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/passwd.template -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/post-assemble/20-copy-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/post-assemble/20-copy-config.sh -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/post-assemble/40-ssl-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/post-assemble/40-ssl-certs.sh -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/pre-init/10-set-mpm.sh: -------------------------------------------------------------------------------- 1 | source ${HTTPD_CONTAINER_SCRIPTS_PATH}/common.sh 2 | 3 | config_mpm 4 | -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/pre-init/20-copy-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/pre-init/20-copy-config.sh -------------------------------------------------------------------------------- /2.4-micro/root/usr/share/container-scripts/httpd/pre-init/40-ssl-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/root/usr/share/container-scripts/httpd/pre-init/40-ssl-certs.sh -------------------------------------------------------------------------------- /2.4-micro/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/s2i/bin/assemble -------------------------------------------------------------------------------- /2.4-micro/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/s2i/bin/run -------------------------------------------------------------------------------- /2.4-micro/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/s2i/bin/usage -------------------------------------------------------------------------------- /2.4-micro/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /2.4-micro/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /2.4-micro/test/constants.py: -------------------------------------------------------------------------------- 1 | ../../test/constants.py -------------------------------------------------------------------------------- /2.4-micro/test/examples: -------------------------------------------------------------------------------- 1 | ../../examples/ -------------------------------------------------------------------------------- /2.4-micro/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams/ -------------------------------------------------------------------------------- /2.4-micro/test/pre-init-test-app/httpd-pre-init/modify_index.sh: -------------------------------------------------------------------------------- 1 | echo 'This content was replaced by pre-init script.' > ${HTTPD_APP_ROOT}/src/index.html 2 | -------------------------------------------------------------------------------- /2.4-micro/test/pre-init-test-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/test/pre-init-test-app/index.html -------------------------------------------------------------------------------- /2.4-micro/test/run: -------------------------------------------------------------------------------- 1 | ../../test/run -------------------------------------------------------------------------------- /2.4-micro/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /2.4-micro/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /2.4-micro/test/run-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-pytest -------------------------------------------------------------------------------- /2.4-micro/test/sample-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/sample-test-app/ -------------------------------------------------------------------------------- /2.4-micro/test/self-signed-ssl: -------------------------------------------------------------------------------- 1 | ../../examples/self-signed-ssl/ -------------------------------------------------------------------------------- /2.4-micro/test/settings.py: -------------------------------------------------------------------------------- 1 | ../../test/settings.py -------------------------------------------------------------------------------- /2.4-micro/test/test-lib-httpd.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-httpd.sh -------------------------------------------------------------------------------- /2.4-micro/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /2.4-micro/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /2.4-micro/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /2.4-micro/test/test_container_httpd.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_httpd.py -------------------------------------------------------------------------------- /2.4-micro/test/test_container_httpd_s2i.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_httpd_s2i.py -------------------------------------------------------------------------------- /2.4-micro/test/test_ocp_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_ex_template.py -------------------------------------------------------------------------------- /2.4-micro/test/test_ocp_imagestream_s2i.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestream_s2i.py -------------------------------------------------------------------------------- /2.4-micro/test/test_ocp_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams.py -------------------------------------------------------------------------------- /2.4-micro/test/test_ocp_integration.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_integration.py -------------------------------------------------------------------------------- /2.4-micro/test/test_ocp_shared_helm_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_shared_helm_imagestreams.py -------------------------------------------------------------------------------- /2.4-micro/test/test_ocp_shared_helm_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_shared_helm_template.py -------------------------------------------------------------------------------- /2.4-micro/test/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4-micro/test/utils.sh -------------------------------------------------------------------------------- /2.4/2.4: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /2.4/Dockerfile.c10s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/Dockerfile.c10s -------------------------------------------------------------------------------- /2.4/Dockerfile.c9s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/Dockerfile.c9s -------------------------------------------------------------------------------- /2.4/Dockerfile.fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/Dockerfile.fedora -------------------------------------------------------------------------------- /2.4/Dockerfile.rhel10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/Dockerfile.rhel10 -------------------------------------------------------------------------------- /2.4/Dockerfile.rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/Dockerfile.rhel8 -------------------------------------------------------------------------------- /2.4/Dockerfile.rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/Dockerfile.rhel9 -------------------------------------------------------------------------------- /2.4/README.md: -------------------------------------------------------------------------------- 1 | root/usr/share/container-scripts/httpd/README.md -------------------------------------------------------------------------------- /2.4/root/usr/bin/run-httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/bin/run-httpd -------------------------------------------------------------------------------- /2.4/root/usr/libexec/httpd-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/libexec/httpd-prepare -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/README.md -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/common.sh -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/passwd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/passwd.template -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/post-assemble/20-copy-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/post-assemble/20-copy-config.sh -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/post-assemble/40-ssl-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/post-assemble/40-ssl-certs.sh -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/pre-init/10-set-mpm.sh: -------------------------------------------------------------------------------- 1 | source ${HTTPD_CONTAINER_SCRIPTS_PATH}/common.sh 2 | 3 | config_mpm 4 | -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/pre-init/20-copy-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/pre-init/20-copy-config.sh -------------------------------------------------------------------------------- /2.4/root/usr/share/container-scripts/httpd/pre-init/40-ssl-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/root/usr/share/container-scripts/httpd/pre-init/40-ssl-certs.sh -------------------------------------------------------------------------------- /2.4/s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/s2i/bin/assemble -------------------------------------------------------------------------------- /2.4/s2i/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/s2i/bin/run -------------------------------------------------------------------------------- /2.4/s2i/bin/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/s2i/bin/usage -------------------------------------------------------------------------------- /2.4/test/__init__.py: -------------------------------------------------------------------------------- 1 | ../../test/__init__.py -------------------------------------------------------------------------------- /2.4/test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../common/check_imagestreams.py -------------------------------------------------------------------------------- /2.4/test/constants.py: -------------------------------------------------------------------------------- 1 | ../../test/constants.py -------------------------------------------------------------------------------- /2.4/test/examples: -------------------------------------------------------------------------------- 1 | ../../examples/ -------------------------------------------------------------------------------- /2.4/test/imagestreams: -------------------------------------------------------------------------------- 1 | ../../imagestreams/ -------------------------------------------------------------------------------- /2.4/test/pre-init-test-app/httpd-pre-init/modify_index.sh: -------------------------------------------------------------------------------- 1 | echo 'This content was replaced by pre-init script.' > ${HTTPD_APP_ROOT}/src/index.html 2 | -------------------------------------------------------------------------------- /2.4/test/pre-init-test-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/test/pre-init-test-app/index.html -------------------------------------------------------------------------------- /2.4/test/run: -------------------------------------------------------------------------------- 1 | ../../test/run -------------------------------------------------------------------------------- /2.4/test/run-openshift-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-pytest -------------------------------------------------------------------------------- /2.4/test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- 1 | ../../test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /2.4/test/run-pytest: -------------------------------------------------------------------------------- 1 | ../../test/run-pytest -------------------------------------------------------------------------------- /2.4/test/sample-test-app: -------------------------------------------------------------------------------- 1 | ../../examples/sample-test-app/ -------------------------------------------------------------------------------- /2.4/test/self-signed-ssl: -------------------------------------------------------------------------------- 1 | ../../examples/self-signed-ssl/ -------------------------------------------------------------------------------- /2.4/test/settings.py: -------------------------------------------------------------------------------- 1 | ../../test/settings.py -------------------------------------------------------------------------------- /2.4/test/test-lib-httpd.sh: -------------------------------------------------------------------------------- 1 | ../../test/test-lib-httpd.sh -------------------------------------------------------------------------------- /2.4/test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-openshift.sh -------------------------------------------------------------------------------- /2.4/test/test-lib-remote-openshift.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib-remote-openshift.sh -------------------------------------------------------------------------------- /2.4/test/test-lib.sh: -------------------------------------------------------------------------------- 1 | ../../common/test-lib.sh -------------------------------------------------------------------------------- /2.4/test/test-openshift.yaml: -------------------------------------------------------------------------------- 1 | ../../common/test-openshift.yaml -------------------------------------------------------------------------------- /2.4/test/test_container_httpd.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_httpd.py -------------------------------------------------------------------------------- /2.4/test/test_container_httpd_s2i.py: -------------------------------------------------------------------------------- 1 | ../../test/test_container_httpd_s2i.py -------------------------------------------------------------------------------- /2.4/test/test_ocp_ex_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_ex_template.py -------------------------------------------------------------------------------- /2.4/test/test_ocp_imagestream_s2i.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestream_s2i.py -------------------------------------------------------------------------------- /2.4/test/test_ocp_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_imagestreams.py -------------------------------------------------------------------------------- /2.4/test/test_ocp_integration.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_integration.py -------------------------------------------------------------------------------- /2.4/test/test_ocp_shared_helm_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_shared_helm_imagestreams.py -------------------------------------------------------------------------------- /2.4/test/test_ocp_shared_helm_template.py: -------------------------------------------------------------------------------- 1 | ../../test/test_ocp_shared_helm_template.py -------------------------------------------------------------------------------- /2.4/test/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/2.4/test/utils.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/README.md -------------------------------------------------------------------------------- /examples/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/Dockerfile -------------------------------------------------------------------------------- /examples/Dockerfile.s2i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/Dockerfile.s2i -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/sample-test-app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/sample-test-app/Dockerfile -------------------------------------------------------------------------------- /examples/sample-test-app/Dockerfile.s2i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/sample-test-app/Dockerfile.s2i -------------------------------------------------------------------------------- /examples/sample-test-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/sample-test-app/index.html -------------------------------------------------------------------------------- /examples/self-signed-ssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/self-signed-ssl/Dockerfile -------------------------------------------------------------------------------- /examples/self-signed-ssl/Dockerfile.s2i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/self-signed-ssl/Dockerfile.s2i -------------------------------------------------------------------------------- /examples/self-signed-ssl/httpd-ssl/certs/server-cert-selfsigned.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/self-signed-ssl/httpd-ssl/certs/server-cert-selfsigned.pem -------------------------------------------------------------------------------- /examples/self-signed-ssl/httpd-ssl/private/server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/examples/self-signed-ssl/httpd-ssl/private/server-key.pem -------------------------------------------------------------------------------- /examples/self-signed-ssl/index.html: -------------------------------------------------------------------------------- 1 | SSL test works 2 | -------------------------------------------------------------------------------- /imagestreams/httpd-centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/imagestreams/httpd-centos.json -------------------------------------------------------------------------------- /imagestreams/httpd-rhel-aarch64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/imagestreams/httpd-rhel-aarch64.json -------------------------------------------------------------------------------- /imagestreams/httpd-rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/imagestreams/httpd-rhel.json -------------------------------------------------------------------------------- /imagestreams/imagestreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/imagestreams/imagestreams.yaml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/check_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../common/check_imagestreams.py -------------------------------------------------------------------------------- /test/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/constants.py -------------------------------------------------------------------------------- /test/imagestreams: -------------------------------------------------------------------------------- 1 | ../imagestreams/ -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/run -------------------------------------------------------------------------------- /test/run-openshift-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/run-openshift-pytest -------------------------------------------------------------------------------- /test/run-openshift-remote-cluster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/run-openshift-remote-cluster -------------------------------------------------------------------------------- /test/run-pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/run-pytest -------------------------------------------------------------------------------- /test/sample-test-app: -------------------------------------------------------------------------------- 1 | ../examples/sample-test-app/ -------------------------------------------------------------------------------- /test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/settings.py -------------------------------------------------------------------------------- /test/show_all_imagestreams.py: -------------------------------------------------------------------------------- 1 | ../common/show_all_imagestreams.py -------------------------------------------------------------------------------- /test/test-lib-httpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test-lib-httpd.sh -------------------------------------------------------------------------------- /test/test-lib-openshift.sh: -------------------------------------------------------------------------------- 1 | ../common/test-lib-openshift.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_httpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_container_httpd.py -------------------------------------------------------------------------------- /test/test_container_httpd_s2i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_container_httpd_s2i.py -------------------------------------------------------------------------------- /test/test_ocp_ex_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_ocp_ex_template.py -------------------------------------------------------------------------------- /test/test_ocp_imagestream_s2i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_ocp_imagestream_s2i.py -------------------------------------------------------------------------------- /test/test_ocp_imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_ocp_imagestreams.py -------------------------------------------------------------------------------- /test/test_ocp_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_ocp_integration.py -------------------------------------------------------------------------------- /test/test_ocp_shared_helm_imagestreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_ocp_shared_helm_imagestreams.py -------------------------------------------------------------------------------- /test/test_ocp_shared_helm_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sclorg/httpd-container/HEAD/test/test_ocp_shared_helm_template.py --------------------------------------------------------------------------------