Detailed explanation of go-admin deployment to istio platform

藏色散人
Release: 2021-02-01 10:56:13
forward
2769 people have browsed it

The following column will introduce to you the deployment of go-admin to the istio platform from thegolang tutorialcolumn. I hope it will be helpful to friends in need!

Detailed explanation of go-admin deployment to istio platform

To deploy istio environment, refer to istio official website

Create an independent namespace go-admin and automatically inject sidecar

kubectl create namespace go-admin kubectl label namespace go-admin istio-injection=enabled
Copy after login

Create configuration configmap

kubectl create configmap settings-admin --from-file=config/settings.yml -n go-admin
Copy after login

Adjust pv and pvc according to your own needs

kubectl apply -f storage.yml -n go-admin#storage.yml--- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: go-admin namespace: go-admin spec: accessModes: - ReadWriteMany resources: requests: storage: "1Mi" volumeName: storageClassName: nfs-csi
Copy after login

Deploy the back-end service v1 version dev branch

Configuration

kubectl apply -f deploy.yml -n go-admin# deploy.yml--- apiVersion: v1 kind: Service metadata: name: go-admin namespace: go-admin labels: app: go-admin service: go-admin spec: ports: - port: 8000 name: http protocol: TCP selector: app: go-admin --- apiVersion: apps/v1 kind: Deployment metadata: name: go-admin-v1 namespace: go-admin labels: app: go-admin version: v1 spec: replicas: 1 selector: matchLabels: app: go-admin version: v1 template: metadata: labels: app: go-admin version: v1 spec: containers: - name: go-admin image: registry.cn-shanghai.aliyuncs.com/go-admin-team/go-admin:v1.2.2 imagePullPolicy: IfNotPresent ports: - containerPort: 8000 volumeMounts: - name: go-admin mountPath: /temp - name: go-admin mountPath: /static - name: go-admin-config mountPath: /config/ readOnly: true volumes: - name: go-admin persistentVolumeClaim: claimName: go-admin - name: go-admin-config configMap: name: settings-admin ---
Copy after login

Create the front-end nginx configuration configmap

kubectl create configmap nginx-frontend --from-file=default.conf -n go-admin#default.confserver { listen 80; listen [::]:80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location / { root /usr/share/nginx/html; index index.html index.htm; }}
Copy after login

Deploy the front-end service v1 version dev branch

kubectl apply -f deploy.yml# deploy.yml--- apiVersion: v1 kind: Service metadata: name: go-admin-ui namespace: go-admin labels: app: go-admin-ui service: go-admim-ui spec: ports: - port: 80 name: http protocol: TCP selector: app: go-admin-ui --- apiVersion: apps/v1 kind: Deployment metadata: name: go-admin-ui-v1 namespace: go-admin labels: app: go-admin-ui version: v1 spec: replicas: 1 selector: matchLabels: app: go-admin-ui version: v1 template: metadata: labels: app: go-admin-ui version: v1 spec: containers: - name: go-admin-ui image: registry.cn-shanghai.aliyuncs.com/go-admin-team/go-admin-ui:v1.2.2 imagePullPolicy: IfNotPresent ports: - containerPort: 80 volumeMounts: - name: frontendconf mountPath: /etc/nginx/conf.d/default.conf subPath: default.conf readOnly: true volumes: - name: frontendconf configMap: name: nginx-frontend ---
Copy after login

Create dr

kubectl apply -f destination-go-admin.yaml -n go-admin#destination-go-admin.yamlapiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: go-admin-ui namespace: go-admin spec: host: go-admin-ui subsets: - name: v1 labels: version: v1 --- apiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: go-admin namespace: go-admin spec: host: go-admin subsets: - name: v1 labels: version: v1
Copy after login

Create gateway and vs (change the domain name to the actual domain name)

kubectl apply -f go-admin-gateway.yml -n go-admin#go-admin-gateway.yml--- apiVersion: networking.istio.io/v1alpha3 kind: Gateway metadata: name: go-admin-gateway namespace: go-admin spec: selector: istio: ingressgateway # use istio default controller servers: - port: number: 80 name: http protocol: HTTP hosts: - "go-admin.xxxxxx.com"--- apiVersion: networking.istio.io/v1alpha3 kind: VirtualService metadata: name: go-admin-ui namespace: go-admin spec: hosts: - "*" gateways: - go-admin-gateway http: - match: - uri: prefix: /api - uri: prefix: /login route: - destination: host: go-admin subset: v1 port: number: 8000 - match: - uri: prefix: / route: - destination: host: go-admin-ui subset: v1 port: number: 80
Copy after login

The above is the detailed content of Detailed explanation of go-admin deployment to istio platform. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:learnku.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!