k8s部署nginx访问Tomcat

1.nginx打包镜像

bash 复制代码
#1、编写DockerFile

mkdir /opt/my_nginx_dockerfile

cd /opt/my_nginx_dockerfile
cat >default.conf<<'EOF' 
server {
    listen       80;
    listen  [::]:80;
    server_name  localhost;

    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    location /tomcat/ {
        proxy_pass http://tomcat-web-service;
        proxy_set_header   Host    $host;
        proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Real-IP $remote_addr;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
EOF



cat  >/opt/my_nginx_dockerfile/Dockerfile << 'EOF'
FROM nginx
WORKDIR /etc/nginx/conf.d
RUN echo "nginx v1 version" >/usr/share/nginx/html/index.html
ADD default.conf /etc/nginx/conf.d
EOF


cd /opt/my_nginx_dockerfile
#2、编译镜像

docker build -t 192.168.1:30012/k8s/my_nginx:v1 .

#3、登陆镜像

docker login -u admin -p Harbor12345 192.168.1:30012

#4、推送至仓库

docker push 192.168.1:30012/k8s/my_nginx:v1

2.Tomcat打包镜像

bash 复制代码
#编写DockerFile

mkdir -p /opt/my_tomcat_dockerfile
cat  >/opt/my_tomcat_dockerfile/Dockerfile << 'EOF'
FROM tomcat:latest
RUN mkdir webapps/ROOT/tomcat -p && echo "My Tomcat v1 version">webapps/ROOT/tomcat/index.html
EOF
cd /opt/my_tomcat_dockerfile

#编译镜像

docker build -t 192.168.1:30012/k8s/my_tomcat:v1 .

#登陆镜像

docker login -u admin -p Harbor12345 192.168.1:30012

#推送至仓库

docker push 192.168.1:30012/k8s/my_tomcat:v1

3.部署nginx

bash 复制代码
cat >nginx-proxy.yml<<'EOF'
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deployment
  labels:
    app: nginx
spec:
  replicas: 1
  selector:
    matchLabels:
      app: nginx
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image: 192.168.1:30012/k8s/my_nginx:v1
        ports:
        - containerPort: 80
---
apiVersion: v1
kind: Service
metadata:
  name: nginx-web-service
  labels:
    app: nginx-web-service
spec:
  type: NodePort
  selector:
    app: nginx
  ports:
  - protocol: TCP
    name: http
    port: 80
    targetPort: 80
    nodePort: 30086
EOF


kubectl apply -f nginx-proxy.yml

4.部署Tomcat

bash 复制代码
cat >tomcat-proxy.yml<<'EOF'
apiVersion: apps/v1
kind: Deployment
metadata:
 name: tomcat-deployment
 labels:
   app: tomcat
spec:
 replicas: 1
 selector:
   matchLabels:
     app: tomcat
 template:
   metadata:
     labels:
       app: tomcat
   spec:
     containers:
     - name: tomcat
       image: 192.168.1:30012/k8s/my_tomcat:v1
       ports:
       - containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
 name: tomcat-web-service
 labels:
   app: tomcat-web-service
spec:
 type: NodePort
 selector:
   app: tomcat
 ports:
   - protocol: TCP
     name: http
     port: 80
     targetPort: 8080
     nodePort: 30087
EOF

kubectl apply -f tomcat-proxy.yml

#测试

curl http://192.168.1:30086/tomcat/

相关推荐
梁bk33 分钟前
[Nginx]反向代理和负载均衡
运维·nginx·负载均衡
绝不偷吃8 小时前
FastDFS分布式储存
linux·nginx
没有名字的小羊10 小时前
8.Docker镜像讲解
运维·docker·容器·tomcat
java1234_小锋10 小时前
解释一下NGINX的反向代理和正向代理的区别?
运维·nginx
木鱼时刻11 小时前
容器与 Kubernetes 基本概念与架构
容器·架构·kubernetes
PanZonghui19 小时前
Centos项目部署之Nginx 的安装与卸载
linux·nginx
chuanauc21 小时前
Kubernets K8s 学习
java·学习·kubernetes
charlee441 天前
nginx部署发布Vite项目
nginx·性能优化·https·部署·vite
ye901 天前
银河麒麟V10服务器版 + openGuass + JDK +Tomcat
java·开发语言·tomcat
CRMEB定制开发1 天前
【实战】CRMEB Pro 企业版安装教程(附 Nginx 反向代理配置 + 常见问题解决)
nginx·商城系统·微信商城·crmeb