apiVersion: apps/v1 kind: Deployment metadata: name: apacheproxy labels: app: apacheproxy spec: replicas: 1 selector: matchLabels: app: apacheproxy template: metadata: labels: app: apacheproxy spec: containers: - name: apacheproxy image: httpd:2.4 ports: - containerPort: 30007 name: http volumeMounts: - name: config mountPath: ./usr/local/apache2/conf #mountPath: /config #readOnly: true volumes: - name: config configMap: name: apacheconfig items: - key: httpd.conf path: httpd.conf --- apiVersion: v1 kind: Service metadata: name: apacheproxy labels: app: apacheproxy spec: type: NodePort ports: - port: 30007 targetPort: 30007 nodePort: 30007 protocol: TCP name: http selector: app: apacheproxy --- apiVersion: v1 data: httpd.conf: |2+ ServerRoot "/usr/local/apache2" Listen 30007 LoadModule mpm_event_module modules/mod_mpm_event.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule authn_core_module modules/mod_authn_core.so LoadModule authz_host_module modules/mod_authz_host.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule authz_core_module modules/mod_authz_core.so LoadModule access_compat_module modules/mod_access_compat.so LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule reqtimeout_module modules/mod_reqtimeout.so LoadModule filter_module modules/mod_filter.so LoadModule log_config_module modules/mod_log_config.so LoadModule env_module modules/mod_env.so LoadModule headers_module modules/mod_headers.so LoadModule setenvif_module modules/mod_setenvif.so LoadModule version_module modules/mod_version.so LoadModule unixd_module modules/mod_unixd.so LoadModule status_module modules/mod_status.so LoadModule autoindex_module modules/mod_autoindex.so LoadModule dir_module modules/mod_dir.so LoadModule alias_module modules/mod_alias.so User www-data Group www-data ServerAdmin you@example.com AllowOverride none Require all denied DirectoryIndex index.html Require all denied ErrorLog /proc/self/fd/2 LogLevel warn LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio CustomLog /proc/self/fd/1 common ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/" AllowOverride None Options None Require all granted RequestHeader unset Proxy early Include conf/extra/proxy-html.conf SSLRandomSeed startup builtin SSLRandomSeed connect builtin LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so ProxyPass / http://beetroot.default.svc.cluster.local:8080/ ProxyPassReverse / http://beetroot.default.svc.cluster.local:8080/ kind: ConfigMap metadata: name: apacheconfig