mirror of
https://github.com/paralus/paralus.git
synced 2026-05-08 17:36:56 +00:00
42 lines
1.6 KiB
Go
42 lines
1.6 KiB
Go
package cluster
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"strings"
|
|
|
|
infrav3 "github.com/RafayLabs/rcloud-base/proto/types/infrapb/v3"
|
|
)
|
|
|
|
const (
|
|
BEGIN_PROXY_DATA = "-----BEGIN PROXY DATA-----"
|
|
END_PROXY_DATA = "-----END PROXY DATA-----"
|
|
NO_PROXY_RAFAY_DATA = "localhost,127.0.0.1,127.0.0.2,k8master.service.consul,ingress-nginx-controller-admission.rafay-system.svc,rafay-drift.rafay-system.svc,secretstore-webhook.rafay-system.svc"
|
|
)
|
|
|
|
func UpdateProxyData(cert string, proxyConfig infrav3.ProxyConfig, clusterCidr map[string]string) string {
|
|
b := new(bytes.Buffer)
|
|
fmt.Fprintf(b, "\n")
|
|
fmt.Fprintf(b, BEGIN_PROXY_DATA+"\n")
|
|
fmt.Fprintf(b, "export %s=%s\n", "no_proxy", NO_PROXY_RAFAY_DATA+","+clusterCidr["PodNetworkCidr"]+","+clusterCidr["ServiceCidr"]+","+proxyConfig.NoProxy)
|
|
fmt.Fprintf(b, "export %s=%s\n", "NO_PROXY", NO_PROXY_RAFAY_DATA+","+clusterCidr["PodNetworkCidr"]+","+clusterCidr["ServiceCidr"]+","+proxyConfig.NoProxy)
|
|
if proxyConfig.HttpProxy != "" {
|
|
fmt.Fprintf(b, "export %s=%s\n", "http_proxy", proxyConfig.HttpProxy)
|
|
fmt.Fprintf(b, "export %s=%s\n", "HTTP_PROXY", proxyConfig.HttpProxy)
|
|
}
|
|
if proxyConfig.HttpsProxy != "" {
|
|
fmt.Fprintf(b, "export %s=%s\n", "https_proxy", proxyConfig.HttpsProxy)
|
|
fmt.Fprintf(b, "export %s=%s\n", "HTTPS_PROXY", proxyConfig.HttpsProxy)
|
|
}
|
|
fmt.Fprintf(b, END_PROXY_DATA+"\n")
|
|
|
|
if strings.Contains(cert, BEGIN_PROXY_DATA) {
|
|
cert = strings.Split(cert, BEGIN_PROXY_DATA)[0]
|
|
}
|
|
return cert + b.String()
|
|
}
|
|
|
|
func GetNoProxyDataString(noProxyConfig string, clusterCidr map[string]string) string {
|
|
return NO_PROXY_RAFAY_DATA + "," + clusterCidr["PodNetworkCidr"] + "," + clusterCidr["ServiceCidr"] + "," + noProxyConfig
|
|
}
|