In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/02 Report--
K8s starts nginx service
What needs to be started this time is a static file server implemented through nginx. Create Namespace script create_shjujubu_namespace.yaml
MT4 tutorial topic http://www.gendan5.com/operation.html
ApiVersion: v1
Kind: Namespace
Metadata:
Name: shujubu
Labels:
Name: shujubu
Execute the file to create the shujubu namespace:
Kubectl create-f create_shjujubu_namespace.yaml
one
List of required images:
Nginx 1.17 62c261073ecf 3 months ago 109MB
one
Define the pod file nginx-pod.yaml
ApiVersion: v1
Kind: Pod
Metadata:
Name: sjb-nginx
Namespace: shujubu
Labels:
Name: sjb-nginx
Spec:
Containers:
-name: nginx
Image: ccr.ccs.tencentyun.com/shujubu/nginx:1.17
ImagePullPolicy: IfNotPresent
Ports:
-containerPort: 80
VolumeMounts:
-mountPath: / etc/nginx/nginx.conf
Name: config
-mountPath: / etc/nginx/conf.d/default.conf
Name: default
-mountPath: / var/log/nginx/
Name: log
-mountPath: / usr/share/nginx/shzr/area
Name: shzr
-mountPath: / usr/share/nginx/zgbs/mujun
Name: mujun
-mountPath: / usr/share/nginx/zgbs/area
Name: zgbs restartPolicy: Never volumes:
-name: config
HostPath:
Path: / home/users/qix/sjb_bs_source/nginx/nginx.conf
-name: default
HostPath:
Path: / home/users/qix/sjb_bs_source/nginx/conf.d/default.conf
-name: log
HostPath:
Path: / home/users/qix/sjb_bs_source/nginx/log/
-name: shzr
HostPath:
Path: / home/users/qix/sjb_bs_source/shzr/area/
-name: mujun
HostPath:
Path: / home/users/qix/sjb_bs_source/zgbs/mujun/
-name: zgbs
HostPath:
Path: / home/users/qix/sjb_bs_source/zgbs/area/
Only one container is defined in the pod above, and the configuration file, log file, and resource file we want to access for nginx are mounted in the container. Define the service file nginx-np.yaml
ApiVersion: v1
Kind: Service
Metadata:
Name: nginx
Spec:
Selector:
Name: sjb-nginx
Type: NodePort
Ports:
-protocol: TCP
Port: 10008
TargetPort: 80
NodePort: 30008
Note that the configuration in selector in service is consistent with that in labels in pod. And attach some of the configurations in nginx.conf
User root
Worker_processes 1; events {
Worker_connections 1024
}
Http {
Include mime.types
Default_type application/octet-stream
Sendfile on
Keepalive_timeout 65; gzip on
Gzip_min_length 1024K; # Compression greater than 1m
Gzip_comp_level 5; # Compression level 1-10, the higher the number, the better the compression
Gzip_types text/plain application/x-javascript text/css application/xml application/json text/javascript application/x-httpd-php image/jpeg image/gif image/png; # compressed file type server {
Listen 80
Server_name 192.168.111.36:80
Location / {
Root / usr/share/nginx/html
Index index.html
} error_page 500 502 503 504 / 50x.html
Location = / 50x.html {
Root / usr/share/nginx/html
}
Location ^ ~ / shzr/area/ {
Root / usr/share/nginx/
Autoindex on
}
Location ^ ~ / zgbs/mujun/ {
Root / usr/share/nginx/
Autoindex on
}
Location ^ ~ / zgbs/area/ {
Root / usr/share/nginx/
Autoindex on
}
}
}
Start the pod command:
Kubectl create-f nginx-pod.yaml-n shujubu
one
Start the service command:
Kubectl create-f nginx-np.yaml-n shujubu
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.