-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresource.go
More file actions
53 lines (44 loc) · 1.5 KB
/
resource.go
File metadata and controls
53 lines (44 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright 2020 Envoyproxy Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package example
import (
"log"
"maps"
"github.com/envoyproxy/go-control-plane/pkg/cache/types"
"github.com/envoyproxy/go-control-plane/pkg/cache/v3"
"github.com/envoyproxy/go-control-plane/pkg/resource/v3"
)
const (
ClusterName = "example_proxy_cluster"
RouteName = "local_route"
ListenerName = "listener_0"
ListenerPort = 10000
UpstreamHost = "www.envoyproxy.io"
UpstreamPort = 80
)
func MergeResourceMaps(a, b map[string][]types.Resource) map[string][]types.Resource {
ret := maps.Clone(b)
for k, v := range a {
ret[k] = append(ret[k], v...)
}
return ret
}
func GenerateSnapshot(rm map[string][]types.Resource) *cache.Snapshot {
snap, _ := cache.NewSnapshot("1", rm)
refs := cache.GetAllResourceReferences(snap.Resources)
log.Printf("References: %#v\n", refs[resource.EndpointType])
res := snap.GetResources(resource.EndpointType)
log.Printf("Resources: %#v\n", res)
return snap
}