@@ -3,18 +3,25 @@ package kubegraph
3
3
import (
4
4
"github.com/gonum/graph"
5
5
6
+ kapi "github.com/GoogleCloudPlatform/kubernetes/pkg/api"
6
7
"github.com/GoogleCloudPlatform/kubernetes/pkg/labels"
8
+ "github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
7
9
8
10
osgraph "github.com/openshift/origin/pkg/api/graph"
9
11
kubegraph "github.com/openshift/origin/pkg/api/kubegraph/nodes"
10
12
)
11
13
12
14
const (
13
- // ExposedThroughServiceEdgeKind is an edge that goes from a podtemplatespec or a pod to service.
14
- // The head should make the service's selector
15
+ // ExposedThroughServiceEdgeKind goes from a PodTemplateSpec or a Pod to Service. The head should make the service's selector.
15
16
ExposedThroughServiceEdgeKind = "ExposedThroughService"
16
17
// ManagedByRCEdgeKind goes from Pod to ReplicationController when the Pod satisfies the ReplicationController's label selector
17
18
ManagedByRCEdgeKind = "ManagedByRC"
19
+ // MountedSecretEdgeKind goes from PodSpec to Secret indicating that is or will be a request to mount a volume with the Secret.
20
+ MountedSecretEdgeKind = "MountedSecret"
21
+ // MountableSecretEdgeKind goes from ServiceAccount to Secret indicating that the SA allows the Secret to be mounted
22
+ MountableSecretEdgeKind = "MountableSecret"
23
+ // ReferencedServiceAccountEdgeKind goes from PodSpec to ServiceAccount indicating that Pod is or will be running as the SA.
24
+ ReferencedServiceAccountEdgeKind = "ReferencedServiceAccount"
18
25
)
19
26
20
27
// AddExposedPodTemplateSpecEdges ensures that a directed edge exists between a service and all the PodTemplateSpecs
@@ -94,3 +101,89 @@ func AddAllManagedByRCPodEdges(g osgraph.MutableUniqueGraph) {
94
101
}
95
102
}
96
103
}
104
+
105
+ func AddMountedSecretEdges (g osgraph.Graph , podSpec * kubegraph.PodSpecNode ) {
106
+ //pod specs are always contained. We'll get the toplevel container so that we can pull a namespace from it
107
+ containerNode := osgraph .GetTopLevelContainerNode (g , podSpec )
108
+ containerObj := g .GraphDescriber .Object (containerNode )
109
+
110
+ meta , err := kapi .ObjectMetaFor (containerObj .(runtime.Object ))
111
+ if err != nil {
112
+ // this should never happen. it means that a podSpec is owned by a top level container that is not a runtime.Object
113
+ panic (err )
114
+ }
115
+
116
+ for _ , volume := range podSpec .Volumes {
117
+ source := volume .VolumeSource
118
+ if source .Secret == nil {
119
+ continue
120
+ }
121
+
122
+ // pod secrets must be in the same namespace
123
+ syntheticSecret := & kapi.Secret {}
124
+ syntheticSecret .Namespace = meta .Namespace
125
+ syntheticSecret .Name = source .Secret .SecretName
126
+
127
+ secretNode := kubegraph .FindOrCreateSyntheticSecretNode (g , syntheticSecret )
128
+ g .AddEdge (podSpec , secretNode , MountedSecretEdgeKind )
129
+ }
130
+ }
131
+
132
+ func AddAllMountedSecretEdges (g osgraph.Graph ) {
133
+ for _ , node := range g .NodeList () {
134
+ if podSpecNode , ok := node .(* kubegraph.PodSpecNode ); ok {
135
+ AddMountedSecretEdges (g , podSpecNode )
136
+ }
137
+ }
138
+ }
139
+
140
+ func AddMountableSecretEdges (g osgraph.Graph , saNode * kubegraph.ServiceAccountNode ) {
141
+ for _ , mountableSecret := range saNode .ServiceAccount .Secrets {
142
+ syntheticSecret := & kapi.Secret {}
143
+ syntheticSecret .Namespace = saNode .ServiceAccount .Namespace
144
+ syntheticSecret .Name = mountableSecret .Name
145
+
146
+ secretNode := kubegraph .FindOrCreateSyntheticSecretNode (g , syntheticSecret )
147
+ g .AddEdge (saNode , secretNode , MountableSecretEdgeKind )
148
+ }
149
+ }
150
+
151
+ func AddAllMountableSecretEdges (g osgraph.Graph ) {
152
+ for _ , node := range g .NodeList () {
153
+ if saNode , ok := node .(* kubegraph.ServiceAccountNode ); ok {
154
+ AddMountableSecretEdges (g , saNode )
155
+ }
156
+ }
157
+ }
158
+
159
+ func AddRequestedServiceAccountEdges (g osgraph.Graph , podSpecNode * kubegraph.PodSpecNode ) {
160
+ //pod specs are always contained. We'll get the toplevel container so that we can pull a namespace from it
161
+ containerNode := osgraph .GetTopLevelContainerNode (g , podSpecNode )
162
+ containerObj := g .GraphDescriber .Object (containerNode )
163
+
164
+ meta , err := kapi .ObjectMetaFor (containerObj .(runtime.Object ))
165
+ if err != nil {
166
+ panic (err )
167
+ }
168
+
169
+ // if no SA name is present, admission will set 'default'
170
+ name := "default"
171
+ if len (podSpecNode .ServiceAccountName ) > 0 {
172
+ name = podSpecNode .ServiceAccountName
173
+ }
174
+
175
+ syntheticSA := & kapi.ServiceAccount {}
176
+ syntheticSA .Namespace = meta .Namespace
177
+ syntheticSA .Name = name
178
+
179
+ saNode := kubegraph .FindOrCreateSyntheticServiceAccountNode (g , syntheticSA )
180
+ g .AddEdge (podSpecNode , saNode , ReferencedServiceAccountEdgeKind )
181
+ }
182
+
183
+ func AddAllRequestedServiceAccountEdges (g osgraph.Graph ) {
184
+ for _ , node := range g .NodeList () {
185
+ if podSpecNode , ok := node .(* kubegraph.PodSpecNode ); ok {
186
+ AddRequestedServiceAccountEdges (g , podSpecNode )
187
+ }
188
+ }
189
+ }
0 commit comments