 | Keycloak, etc. | README-oidc |
With the update subcommand, it is possible to add file(s) to the configuration
map as per the following usage:
$ httpd_configmap_generator update --help Options: -i, --input=<s> Input config map file -o, --output=<s> Output config map file -f, --force Force configuration if configured already -d, --debug Enable debugging -a, --add-file=<s> Add file to config map -h, --help Show this message
The --add-file option can be specified multiple times, one per file to add
to a configuration map.
Supported file specification for the --add-file option are:
--add-file=file-path --add-file=source-file-path,target-file-path --add-file=source-file-path,target-file-path,file-permission --add-file=file-url,target-file-path,file-permission
Where:
mode:owner:groupExamples:
The file ownership and permissions will be based on the files specified.
$ httpd_configmap_generator update \ --input=/tmp/original-auth-configmap.yaml \ --add-file=/etc/openldap/cacerts/primary-directory-cert.pem \ --add-file=/etc/openldap/cacerts/seconday-directory-cert.pem \ --output=/tmp/updated-auth-configmap.yaml
$ httpd_configmap_generator update \ --input=/tmp/original-auth-configmap.yaml \ --add-file=/tmp/uploaded-cert1,/etc/openldap/cacerts/primary-directory-cert.pem \ --add-file=/tmp/uploaded-cert2,/etc/openldap/cacerts/seconday-directory-cert.pem \ --output=/tmp/updated-auth-configmap.yaml
The file ownership and permissions will be based on the source files specified,
in this case the ownership and permissiong of the /tmp/uploaded-cert1
and /tmp/uploaded-cert2 files will be used.
$ httpd_configmap_generator update \ --input=/tmp/original-auth-configmap.yaml \ --add-file=/tmp/secondary-keytab,/etc/http2.keytab,600:apache:root \ --output=/tmp/updated-auth-configmap.yaml
$ httpd_configmap_generator update \ --input=/tmp/original-auth-configmap.yaml \ --add-file=http://aab-keycloak:8080/auth/realms/testrealm/protocol/saml/description,/etc/httpd/saml2/idp-metadata.xml,644:root:root \ --output=/tmp/updated-auth-configmap.yaml
When downloading a file by URL, a target file path and file ownership/mode must be specified.
With the export subcommand, it is possible to export a file from the configuration
map as per the following usage:
$ httpd_configmap_generator export --help Options: -i, --input=<s> Input config map file -l, --file=<s> Config map file to export -o, --output=<s> The output file being exported -f, --force Force configuration if configured already -d, --debug Enable debugging -h, --help Show this message
Example:
Extract the sssd.conf file out of the auth configuration map:
$ httpd_configmap_generator export \ --input=/tmp/external-ipa.yaml \ --file=/etc/sssd/sssd.conf \ --output=/tmp/sssd.conf
Container for configuring external authentication for the httpd auth pod. It is based on the auth httpd container and generates the httpd auth-config map needed to enable external authentication.
$ git clone https://github.com/ManageIQ/httpd_configmap_generator.git
$ cd httpd_configmap_generator $ docker build . -t manageiq/httpd_configmap_generator:latest
$ docker run --privileged manageiq/httpd_configmap_generator:latest &
Getting the httpd_configmap_generator container id:
$ CONFIGMAP_GENERATOR_ID="`docker ps -l -q`"
While the httpd_configmap_generator tool can be run in the container by first getting into a bash shell:
$ docker exec -it $CONFIGMAP_GENERATOR_ID /bin/bash -i
The tool can also be executed directly as follows:
Example for generating a configuration map for IPA:
$ docker exec $CONFIGMAP_GENERATOR_ID httpd_configmap_generator ipa \ --host=appliance.example.com \ --ipa-server=ipaserver.example.com \ --ipa-domain=example.com \ --ipa-realm=EXAMPLE.COM \ --ipa-principal=admin \ --ipa-password=smartvm1 \ -o /tmp/external-ipa.yaml
--host above must be the DNS of the application exposing the httpd auth pod,
i.e. ${APPLICATION_DOMAIN}
Copying the new auth configmap back locally:
$ docker cp $CONFIGMAP_GENERATOR_ID:/tmp/external-ipa.yaml ./external-ipa.yaml
The new configmap can then be applied to the auth httpd pod and then redeployed to take effect:
$ oc replace configmaps httpd-auth-configs --filename ./external-ipa.yaml
Stopping the httpd_configmap_generator container
When completed with httpd_configmap_generator, the container can simply be stopped and/or removed:
$ docker stop $CONFIGMAP_GENERATOR_ID
$ docker rmi --force manageiq/httpd_configmap_generator:latest
The httpd-configmap-generator service account must be added to the httpd-scc-sysadmin SCC before the Httpd Configmap Generator can run.
As Admin
Create the httpd-scc-sysadmin SCC:
$ oc create -f templates/httpd-scc-sysadmin.yaml
Include the httpd-configmap-generator service account with the new SCC:
$ oc adm policy add-scc-to-user httpd-scc-sysadmin system:serviceaccount:<your-namespace>:httpd-configmap-generator
Verify that the httpd-configmap-generator service account is now included in the httpd-scc-sysadmin SCC:
$ oc describe scc httpd-scc-sysadmin | grep Users Users: system:serviceaccount:<your-namespace>:httpd-configmap-generator
As basic user
$ oc create -f templates/httpd-configmap-generator-template.yaml $ oc get templates NAME DESCRIPTION PARAMETERS OBJECTS httpd-configmap-generator Httpd Configmap Generator 6 (all set) 3
Deploy the Httpd Configmap Generator
$ oc new-app --template=httpd-configmap-generator
Check the readiness of the Httpd Configmap Generator
$ oc get pods NAME READY STATUS RESTARTS AGE httpd-configmap-generator-1-txc34 1/1 Running 0 1h
Getting the POD Name
For working with the httpd_configmap_generator script in the httpd-configmap-generator pod, it is necessary to get the pod name reference below:
$ CONFIGMAP_GENERATOR_POD=`oc get pods | grep "httpd-configmap-generator" | cut -f1 -d" "`
$ oc exec $CONFIGMAP_GENERATOR_POD -- bash -c 'httpd_configmap_generator ipa ...
Example configuration:
$ oc exec $CONFIGMAP_GENERATOR_POD -- bash -c 'httpd_configmap_generator ipa \ --host=appliance.example.com \ --ipa-server=ipaserver.example.com \ --ipa-domain=example.com \ --ipa-realm=EXAMPLE.COM \ --ipa-principal=admin \ --ipa-password=smartvm1 \ -o /tmp/external-ipa.yaml'
--host above must be the DNS of the application exposing the httpd auth pod,
i.e. ${APPLICATION_DOMAIN}
Copying the new auth configmap back locally:
$ oc cp $CONFIGMAP_GENERATOR_POD:/tmp/external-ipa.yaml ./external-ipa.yaml
The new configmap can then be applied to the auth httpd pod and then redeployed to take effect:
$ oc replace configmaps httpd-auth-configs --filename ./external-ipa.yaml
To generate a new auth configuration map it is recommended to redeploy the httpd_configmap_generator pod first to get a clean environment before running the httpd_configmap_generator tool.
When done generating an auth-configmap, the httpd_configmap_generator pod can simply be scaled down:
$ oc scale dc httpd-configmap-generator --replicas=0
or deleted if no longer needed:
$ oc delete all -l app=httpd-configmap-generator $ oc delete pods -l app=httpd-configmap-generator
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
不支持 push
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务