httpbin是一個用於測試的開源應用,常用於Web調試。部署該應用後,您可以方便地查看HTTP請求的Method、Header和授權等資訊。本文介紹如何部署httpbin應用。
前提條件
操作步驟
在資料面叢集中部署httpbin應用。
使用以下內容,建立httpbin-application.yaml。
使用kubectl串連到ACK叢集,執行以下命令,部署httpbin應用。
kubectl apply -f httpbin-application.yaml
配置httpbin應用的流量規則。
使用以下內容,建立網關規則。具體操作,請參見管理網關規則。
apiVersion: networking.istio.io/v1beta1 kind: Gateway metadata: name: httpbin namespace: default spec: selector: istio: ingressgateway servers: - hosts: - '*' port: name: test number: 80 protocol: HTTP
使用以下內容,建立虛擬服務。具體操作,請參見管理虛擬服務。
apiVersion: networking.istio.io/v1beta1 kind: VirtualService metadata: name: httpbin-vs namespace: default spec: gateways: - httpbin hosts: - '*' http: - name: test route: - destination: host: httpbin.default.svc.cluster.local port: number: 8000
進行訪問測試。
請將下文命令中的
${ASM網關IP}
替換為實際的網關地址。關於如何擷取網關地址,請參見擷取入口網關地址。執行以下命令,訪問httpbin的
/status/200
。curl http://${ASM網關IP}/status/200 -v
返回
200 OK
。執行以下命令,訪問httpbin的
/status/418
。curl http://${ASM網關IP}/status/418 -v
返回
418 Unknown
。執行以下命令,訪問httpbin的
/status/403
。curl http://${ASM網關IP}/status/403 -v
返回
403 Forbidden
。執行以下命令,訪問httpbin的
/headers
。curl http://${ASM網關IP}/headers -H test-header:test-value -v
Response會返回請求中攜帶的Header。
相關操作
您也可以通過在資料面叢集部署sleep服務,並通過sleep服務去訪問httpbin服務來驗證httpbin服務已經部署成功。
使用以下內容,建立sleep.yaml。
################################################################################################## # Sleep Service樣本。 ################################################################################################## apiVersion: v1 kind: ServiceAccount metadata: name: sleep --- apiVersion: v1 kind: Service metadata: name: sleep labels: app: sleep service: sleep spec: ports: - port: 80 name: http selector: app: sleep --- apiVersion: apps/v1 kind: Deployment metadata: name: sleep spec: replicas: 1 selector: matchLabels: app: sleep template: metadata: labels: app: sleep spec: terminationGracePeriodSeconds: 0 serviceAccountName: sleep containers: - name: sleep image: registry.cn-hangzhou.aliyuncs.com/acs/curl:8.1.2 command: ["/bin/sleep", "infinity"] imagePullPolicy: IfNotPresent volumeMounts: - mountPath: /etc/sleep/tls name: secret-volume volumes: - name: secret-volume secret: secretName: sleep-secret optional: true ---
執行以下命令,建立sleep應用。
kubectl apply -f sleep.yaml -n default
執行以下命令,進入sleep Pod的
sh
終端。kubectl exec -it deploy/sleep -- sh
執行以下命令,向httpbin服務發送請求。
curl -I http://httpbin:8000/headers
預期輸出:
HTTP/1.1 200 OK server: envoy date: Tue, 26 Dec 2023 07:23:49 GMT content-type: application/json content-length: 353 access-control-allow-origin: * access-control-allow-credentials: true x-envoy-upstream-service-time: 1
返回200 OK,表明訪問成功。httpbin服務已經正常部署。