Просмотр исходного кода

chart URL shows https ingress host

sunguroku 5 лет назад
Родитель
Сommit
a776ec66a5

+ 2 - 2
dashboard/src/main/home/cluster-dashboard/expanded-chart/ExpandedChart.tsx

@@ -475,8 +475,8 @@ export default class ExpandedChart extends Component<PropsType, StateType> {
         return
       }
       
-      if (res.data?.status?.loadBalancer?.ingress) {
-        this.setState({url: `http://${res.data?.status?.loadBalancer?.ingress[0]?.hostname}` })
+      if (res.data?.spec?.rules) {
+        this.setState({url: `https://${res.data?.spec?.rules[0]?.host}` })
       }
     });