是否可以根据路径中的文件类型将入口控制器流量路由到其他服务/部署?例如,如果路径为:
domain.com/directory/hello.html -> (Frontend Service)
domain.com/directory/hello.php -> (Backend Service)
这看起来合适吗,这可能吗,或者有更好的方法实现吗?
我的入口控制器看起来像:
kind: Ingress
apiVersion: extensions/v1beta1
metadata:
name: vote-ingress
namespace: default
selfLink: /apis/extensions/v1beta1/namespaces/default/ingresses/vote-ingress
uid: 597158e6-a0ce-11e9-b3b1-00155d599803
resourceVersion: '268064'
generation: 1
creationTimestamp: '2019-07-07T15:46:13Z'
spec:
rules:
- host: localhost
http:
paths:
- path: /*.php
backend:
serviceName: website-backend
servicePort: 80
- path: /
backend:
serviceName: website-frontend
servicePort: 80
status:
loadBalancer:
ingress:
- hostname: localhost
答案 0 :(得分:1)
是否可以根据路径中的文件类型将入口控制器流量路由到其他服务/部署?
否。您需要将您的请求路由到NGINX
,这会将对*.php
的请求发送到PHP_FPM
。您可以将其作为一个Pod中的单独容器或作为服务。 How To Deploy a PHP Application with Kubernetes on Ubuntu 16.04
在此示例中,您将在Pod上运行两个容器NIGNX
和PHP_FPM
。
PHP-FPM将处理动态PHP处理,而NGINX将充当Web服务器。
您将需要使用自定义nginx.conf
配置,我认为最简单的方法是使用ConfigMap。
您的ConfigMap可能如下所示:
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config
data:
config : |
server {
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
Nginx将捕获所有*.php
请求并将其通过localhost:9000发送到PHP-FPM容器。
您可以使用以下方法将ConfigMap包含在POD
中:
apiVersion: v1
kind: Pod
metadata:
name: nginx
spec:
containers:
- name: nginx-container
image: nginx:1.7.9
volumeMounts:
- name: config-volume
mountPath: /etc/nginx/nginx.conf
subPath: nginx.conf
volumes:
- name: config-volume
configMap:
name: nginx-config
restartPolicy: Never
答案 1 :(得分:0)
您可以通过文件扩展名(通过Regex)将流量路由到其他服务。我有具有相同配置的工作头盔图。部分示例:
kind: Ingress
metadata:
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /$1
nginx.ingress.kubernetes.io/use-regex: "true"
spec:
rules:
http:
paths:
- path: '/(.*)'
backend:
serviceName: website-backend
servicePort: 80
- path: '/(.+\.(jpg|svg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html|htm|ttf|woff|woff2))'
backend:
serviceName: website-static
servicePort: 80