mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-06 02:34:03 +00:00
GlobalForwardingRules
This commit is contained in:
parent
b3a1c585cd
commit
9b929addec
@ -589,7 +589,7 @@ func (gce *GCECloud) CreateUrlMap(backend *compute.BackendService, name string)
|
|||||||
return gce.GetUrlMap(name)
|
return gce.GetUrlMap(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateUrlMap applies the given urlmap as an update, and returns the new urlmap.
|
// UpdateUrlMap applies the given UrlMap as an update, and returns the new UrlMap.
|
||||||
func (gce *GCECloud) UpdateUrlMap(urlMap *compute.UrlMap) (*compute.UrlMap, error) {
|
func (gce *GCECloud) UpdateUrlMap(urlMap *compute.UrlMap) (*compute.UrlMap, error) {
|
||||||
op, err := gce.service.UrlMaps.Update(gce.projectID, urlMap.Name, urlMap).Do()
|
op, err := gce.service.UrlMaps.Update(gce.projectID, urlMap.Name, urlMap).Do()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -613,12 +613,7 @@ func (gce *GCECloud) DeleteUrlMap(name string) error {
|
|||||||
return gce.waitForGlobalOp(op)
|
return gce.waitForGlobalOp(op)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TargetProxy management
|
// TargetHttpProxy management
|
||||||
|
|
||||||
// GetTargetHttpProxy returns the TargetHttpProxy by name.
|
|
||||||
func (gce *GCECloud) GetTargetHttpProxy(name string) (*compute.TargetHttpProxy, error) {
|
|
||||||
return gce.service.TargetHttpProxies.Get(gce.projectID, name).Do()
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetTargetHttpProxy returns the UrlMap by name.
|
// GetTargetHttpProxy returns the UrlMap by name.
|
||||||
func (gce *GCECloud) GetTargetHttpProxy(name string) (*compute.TargetHttpProxy, error) {
|
func (gce *GCECloud) GetTargetHttpProxy(name string) (*compute.TargetHttpProxy, error) {
|
||||||
@ -641,8 +636,8 @@ func (gce *GCECloud) CreateTargetHttpProxy(urlMap *compute.UrlMap, name string)
|
|||||||
return gce.GetTargetHttpProxy(name)
|
return gce.GetTargetHttpProxy(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetUrlMapForProxy sets the given urlmap for the given target proxy.
|
// SetUrlMapForTargetHttpProxy sets the given UrlMap for the given TargetHttpProxy.
|
||||||
func (gce *GCECloud) SetUrlMapForProxy(proxy *compute.TargetHttpProxy, urlMap *compute.UrlMap) error {
|
func (gce *GCECloud) SetUrlMapForTargetHttpProxy(proxy *compute.TargetHttpProxy, urlMap *compute.UrlMap) error {
|
||||||
op, err := gce.service.TargetHttpProxies.SetUrlMap(gce.projectID, proxy.Name, &compute.UrlMapReference{urlMap.SelfLink}).Do()
|
op, err := gce.service.TargetHttpProxies.SetUrlMap(gce.projectID, proxy.Name, &compute.UrlMapReference{urlMap.SelfLink}).Do()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -650,8 +645,8 @@ func (gce *GCECloud) SetUrlMapForProxy(proxy *compute.TargetHttpProxy, urlMap *c
|
|||||||
return gce.waitForGlobalOp(op)
|
return gce.waitForGlobalOp(op)
|
||||||
}
|
}
|
||||||
|
|
||||||
// DeleteProxy deletes the target proxy by name.
|
// DeleteTargetHttpProxy deletes the TargetHttpProxy by name.
|
||||||
func (gce *GCECloud) DeleteProxy(name string) error {
|
func (gce *GCECloud) DeleteTargetHttpProxy(name string) error {
|
||||||
op, err := gce.service.TargetHttpProxies.Delete(gce.projectID, name).Do()
|
op, err := gce.service.TargetHttpProxies.Delete(gce.projectID, name).Do()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if isHTTPErrorCode(err, http.StatusNotFound) {
|
if isHTTPErrorCode(err, http.StatusNotFound) {
|
||||||
@ -662,6 +657,52 @@ func (gce *GCECloud) DeleteProxy(name string) error {
|
|||||||
return gce.waitForGlobalOp(op)
|
return gce.waitForGlobalOp(op)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GlobalForwardingRule management
|
||||||
|
|
||||||
|
// CreateGlobalForwardingRule creates and returns a GlobalForwardingRule that points to the given TargetHttpProxy.
|
||||||
|
func (gce *GCECloud) CreateGlobalForwardingRule(proxy *compute.TargetHttpProxy, name string, portRange string) (*compute.ForwardingRule, error) {
|
||||||
|
rule := &compute.ForwardingRule{
|
||||||
|
Name: name,
|
||||||
|
Target: proxy.SelfLink,
|
||||||
|
PortRange: portRange,
|
||||||
|
IPProtocol: "TCP",
|
||||||
|
}
|
||||||
|
op, err := gce.service.GlobalForwardingRules.Insert(gce.projectID, rule).Do()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if err = gce.waitForGlobalOp(op); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return gce.GetGlobalForwardingRule(name)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetProxyForGlobalForwardingRule links the given TargetHttpProxy with the given GlobalForwardingRule.
|
||||||
|
func (gce *GCECloud) SetProxyForGlobalForwardingRule(fw *compute.ForwardingRule, proxy *compute.TargetHttpProxy) error {
|
||||||
|
op, err := gce.service.GlobalForwardingRules.SetTarget(gce.projectID, fw.Name, &compute.TargetReference{proxy.SelfLink}).Do()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return gce.waitForGlobalOp(op)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeleteGlobalForwardingRule deletes the GlobalForwardingRule by name.
|
||||||
|
func (gce *GCECloud) DeleteGlobalForwardingRule(name string) error {
|
||||||
|
op, err := gce.service.GlobalForwardingRules.Delete(gce.projectID, name).Do()
|
||||||
|
if err != nil {
|
||||||
|
if isHTTPErrorCode(err, http.StatusNotFound) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return gce.waitForGlobalOp(op)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetGlobalForwardingRule returns the GlobalForwardingRule by name.
|
||||||
|
func (gce *GCECloud) GetGlobalForwardingRule(name string) (*compute.ForwardingRule, error) {
|
||||||
|
return gce.service.GlobalForwardingRules.Get(gce.projectID, name).Do()
|
||||||
|
}
|
||||||
|
|
||||||
// Take a GCE instance 'hostname' and break it down to something that can be fed
|
// Take a GCE instance 'hostname' and break it down to something that can be fed
|
||||||
// to the GCE API client library. Basically this means reducing 'kubernetes-
|
// to the GCE API client library. Basically this means reducing 'kubernetes-
|
||||||
// minion-2.c.my-proj.internal' to 'kubernetes-minion-2' if necessary.
|
// minion-2.c.my-proj.internal' to 'kubernetes-minion-2' if necessary.
|
||||||
|
Loading…
Reference in New Issue
Block a user