安裝後設定Astra Control Center
視您的環境而定、安裝Astra Control Center之後可能需要額外的組態。
移除資源限制
某些環境使用資源配額和限制範圍物件、以防止命名空間中的資源消耗叢集上的所有可用CPU和記憶體。Astra Control Center並未設定上限、因此不符合這些資源。如果您的環境是以這種方式設定、則需要從您打算安裝Astra Control Center的命名空間中移除這些資源。
您可以使用下列步驟擷取及移除這些配額和限制。在這些範例中、命令輸出會在命令之後立即顯示。
-
取得中的資源配額
netapp-acc
(或自訂命名)命名空間:kubectl get quota -n [netapp-acc or custom namespace]
回應:
NAME AGE REQUEST LIMIT pods-high 16s requests.cpu: 0/20, requests.memory: 0/100Gi limits.cpu: 0/200, limits.memory: 0/1000Gi pods-low 15s requests.cpu: 0/1, requests.memory: 0/1Gi limits.cpu: 0/2, limits.memory: 0/2Gi pods-medium 16s requests.cpu: 0/10, requests.memory: 0/20Gi limits.cpu: 0/20, limits.memory: 0/200Gi
-
依名稱刪除所有資源配額:
kubectl delete resourcequota pods-high -n [netapp-acc or custom namespace]
kubectl delete resourcequota pods-low -n [netapp-acc or custom namespace]
kubectl delete resourcequota pods-medium -n [netapp-acc or custom namespace]
-
取得中的限制範圍
netapp-acc
(或自訂命名)命名空間:kubectl get limits -n [netapp-acc or custom namespace]
回應:
NAME CREATED AT cpu-limit-range 2022-06-27T19:01:23Z
-
依名稱刪除限制範圍:
kubectl delete limitrange cpu-limit-range -n [netapp-acc or custom namespace]
啟用命名空間之間的網路通訊
有些環境使用網路原則架構來限制命名空間之間的流量。Astra Control Center運算子和Astra Control Center位於不同的命名空間中。這些不同命名空間中的服務必須能夠彼此通訊。若要啟用此通訊、請遵循下列步驟。
-
刪除Astra Control Center命名空間中的任何網路原則資源:
kubectl get networkpolicy -n [netapp-acc or custom namespace]
-
對於上述命令傳回的每個網路原則物件、請使用下列命令加以刪除。以傳回物件的名稱取代 [object_name :
kubectl delete networkpolicy [OBJECT_NAME] -n [netapp-acc or custom namespace]
-
套用下列資源檔案來設定
acc-avp-network-policy
允許 Astra 外掛程式服務向 Astra Control Center 服務提出要求的物件。將方括弧<>中的資訊取代為您環境中的資訊:apiVersion: networking.k8s.io/v1 kind: NetworkPolicy metadata: name: acc-avp-network-policy namespace: <ACC_NAMESPACE_NAME> # REPLACE THIS WITH THE ASTRA CONTROL CENTER NAMESPACE NAME spec: podSelector: {} policyTypes: - Ingress ingress: - from: - namespaceSelector: matchLabels: kubernetes.io/metadata.name: <PLUGIN_NAMESPACE_NAME> # REPLACE THIS WITH THE ASTRA PLUGIN NAMESPACE NAME
-
套用下列資源檔案來設定
acc-operator-network-policy
此物件可讓Astra Control Center營運者與Astra Control Center服務進行通訊。將方括弧<>中的資訊取代為您環境中的資訊:apiVersion: networking.k8s.io/v1 kind: NetworkPolicy metadata: name: acc-operator-network-policy namespace: <ACC_NAMESPACE_NAME> # REPLACE THIS WITH THE ASTRA CONTROL CENTER NAMESPACE NAME spec: podSelector: {} policyTypes: - Ingress ingress: - from: - namespaceSelector: matchLabels: kubernetes.io/metadata.name: <NETAPP-ACC-OPERATOR> # REPLACE THIS WITH THE OPERATOR NAMESPACE NAME
新增自訂TLS憑證
Astra Control Center預設使用自我簽署的TLS憑證來處理入站控制器流量(僅適用於特定組態)、以及使用網頁瀏覽器進行Web UI驗證。您可以移除現有的自我簽署TLS憑證、並以由憑證授權單位(CA)簽署的TLS憑證取代。
預設的自我簽署憑證可用於兩種類型的連線:
取代預設TLS憑證會取代用於驗證這些連線的憑證。 |
-
Kubernetes叢集已安裝Astra Control Center
-
管理存取叢集上要執行的命令Shell
kubectl
命令 -
來自CA的私密金鑰和憑證檔案
移除自我簽署的憑證
移除現有的自我簽署TLS憑證。
-
使用SSH、以管理使用者身分登入裝載Astra Control Center的Kubernetes叢集。
-
使用下列取代命令尋找與目前憑證相關的TLS密碼
<ACC-deployment-namespace>
使用Astra Control Center部署命名空間:kubectl get certificate -n <ACC-deployment-namespace>
-
使用下列命令刪除目前安裝的機密與憑證:
kubectl delete cert cert-manager-certificates -n <ACC-deployment-namespace> kubectl delete secret secure-testing-cert -n <ACC-deployment-namespace>
使用命令列新增憑證
新增由CA簽署的TLS憑證。
-
使用下列命令以CA的私密金鑰和憑證檔案建立新的TLS秘密,並以適當的資訊取代括弧<>中的引數:
kubectl create secret tls <secret-name> --key <private-key-filename> --cert <certificate-filename> -n <ACC-deployment-namespace>
-
使用下列命令和範例編輯叢集自訂資源定義(CRD)檔案、然後變更
spec.selfSigned
價值spec.ca.secretName
若要參考您先前建立的TLS秘密:kubectl edit clusterissuers.cert-manager.io/cert-manager-certificates -n <ACC-deployment-namespace> .... #spec: # selfSigned: {} spec: ca: secretName: <secret-name>
-
使用下列命令和輸出範例來驗證變更是否正確、以及叢集是否已準備好驗證憑證、取代
<ACC-deployment-namespace>
使用Astra Control Center部署命名空間:kubectl describe clusterissuers.cert-manager.io/cert-manager-certificates -n <ACC-deployment-namespace> .... Status: Conditions: Last Transition Time: 2021-07-01T23:50:27Z Message: Signing CA verified Reason: KeyPairVerified Status: True Type: Ready Events: <none>
-
建立
certificate.yaml
使用下列範例將方括弧<>中的預留位置值取代為適當資訊的檔案:apiVersion: cert-manager.io/v1 kind: Certificate metadata: name: <certificate-name> namespace: <ACC-deployment-namespace> spec: secretName: <certificate-secret-name> duration: 2160h # 90d renewBefore: 360h # 15d dnsNames: - <astra.dnsname.example.com> #Replace with the correct Astra Control Center DNS address issuerRef: kind: ClusterIssuer name: cert-manager-certificates
-
使用下列命令建立憑證:
kubectl apply -f certificate.yaml
-
使用下列命令和範例輸出來驗證憑證是否已正確建立、以及是否已使用您在建立期間所指定的引數(例如名稱、持續時間、續約期限及DNS名稱)。
kubectl describe certificate -n <ACC-deployment-namespace> .... Spec: Dns Names: astra.example.com Duration: 125h0m0s Issuer Ref: Kind: ClusterIssuer Name: cert-manager-certificates Renew Before: 61h0m0s Secret Name: <certificate-secret-name> Status: Conditions: Last Transition Time: 2021-07-02T00:45:41Z Message: Certificate is up to date and has not expired Reason: Ready Status: True Type: Ready Not After: 2021-07-07T05:45:41Z Not Before: 2021-07-02T00:45:41Z Renewal Time: 2021-07-04T16:45:41Z Revision: 1 Events: <none>
-
編輯「入口CRD TLS」選項、使用下列命令和範例指向新的憑證密碼、並以適當的資訊取代方括弧<>中的預留位置值:
kubectl edit ingressroutes.traefik.containo.us -n <ACC-deployment-namespace> .... # tls: # options: # name: default # secretName: secure-testing-cert # store: # name: default tls: options: name: default secretName: <certificate-secret-name> store: name: default
-
使用網頁瀏覽器瀏覽至Astra Control Center的部署IP位址。
-
確認憑證詳細資料與您安裝的憑證詳細資料相符。
-
匯出憑證並將結果匯入網頁瀏覽器中的憑證管理程式。