diff --git a/cmd/netpolicy/cmd/command_test.go b/cmd/netpolicy/cmd/command_test.go index 3f752b6d..3ade0a33 100644 --- a/cmd/netpolicy/cmd/command_test.go +++ b/cmd/netpolicy/cmd/command_test.go @@ -384,13 +384,13 @@ func TestCommands(t *testing.T) { }, expectedOutput: "Connectivity diff:\n" + "diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + "diff-type: added, source: default/redis-cart[Deployment], destination: default/unicorn[Deployment], dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + "diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + "diff-type: added, source: default/unicorn[Deployment], destination: default/redis-cart[Deployment], dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added", + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added", exact: true, isErr: false, }, @@ -409,13 +409,13 @@ func TestCommands(t *testing.T) { }, expectedOutput: "Connectivity diff:\n" + "diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + "diff-type: added, source: default/redis-cart[Deployment], destination: default/unicorn[Deployment], dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + "diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added\n" + "diff-type: added, source: default/unicorn[Deployment], destination: default/redis-cart[Deployment], dir1:" + - " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added", + " No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added", exact: true, isErr: false, hasFile: true, @@ -516,7 +516,7 @@ func TestCommands(t *testing.T) { filepath.Join(getTestsDir(), "onlineboutique_with_pods_severe_error")}, expectedOutput: "Connectivity diff:\n" + "diff-type: changed, source: default/frontend-99684f7f8[ReplicaSet], " + - "destination: default/adservice-77d5cd745d[ReplicaSet], dir1: TCP 9555, dir2: TCP 8080", + "destination: default/adservice-77d5cd745d[ReplicaSet], dir1: TCP 9555, dir2: TCP 8080", exact: true, isErr: false, }, diff --git a/cmd/netpolicy/cmd/diff.go b/cmd/netpolicy/cmd/diff.go index bce6f665..db7e43ac 100644 --- a/cmd/netpolicy/cmd/diff.go +++ b/cmd/netpolicy/cmd/diff.go @@ -32,6 +32,11 @@ var ( outFormat string ) +const ( + dir1Arg = "dir1" + dir2Arg = "dir2" +) + func runDiffCommand() error { var connsDiff diff.ConnectivityDiff var err error @@ -55,7 +60,7 @@ func runDiffCommand() error { } func getDiffOptions(l *logger.DefaultLogger) []diff.DiffAnalyzerOption { - res := []diff.DiffAnalyzerOption{diff.WithLogger(l), diff.WithOutputFormat(outFormat)} + res := []diff.DiffAnalyzerOption{diff.WithLogger(l), diff.WithOutputFormat(outFormat), diff.WithArgNames(dir1Arg, dir2Arg)} if stopOnFirstError { res = append(res, diff.WithStopOnError()) } @@ -93,8 +98,8 @@ func newCommandDiff() *cobra.Command { } // define any flags and configuration settings. - c.Flags().StringVarP(&dir1, "dir1", "", "", "Original Resources path to be compared") - c.Flags().StringVarP(&dir2, "dir2", "", "", "New Resources path to compare with original resources path") + c.Flags().StringVarP(&dir1, dir1Arg, "", "", "Original Resources path to be compared") + c.Flags().StringVarP(&dir2, dir2Arg, "", "", "New Resources path to compare with original resources path") supportedDiffFormats := strings.Join(diff.ValidDiffFormats, ",") c.Flags().StringVarP(&outFormat, "output", "o", common.DefaultFormat, getOutputFormatDescription(supportedDiffFormats)) // out file diff --git a/pkg/netpol/diff/connectivity_diff.go b/pkg/netpol/diff/connectivity_diff.go index 600f8d19..2cda19fa 100644 --- a/pkg/netpol/diff/connectivity_diff.go +++ b/pkg/netpol/diff/connectivity_diff.go @@ -9,17 +9,17 @@ import ( // ConnectivityDiff captures the set of differences in terms of connectivity between two input k8s resource sets type ConnectivityDiff interface { - // RemovedConnections is a list of differences where the specified conn only exists in dir1 + // RemovedConnections is a list of differences where the specified conn only exists in ref1 RemovedConnections() []SrcDstDiff - // AddedConnections is a list of differences where the specified conn only exists in dir2 + // AddedConnections is a list of differences where the specified conn only exists in ref2 AddedConnections() []SrcDstDiff - // ChangedConnections is a list of differences where the specified conn exists in dir1 and dir2 but not identical + // ChangedConnections is a list of differences where the specified conn exists in ref1 and ref2 but not identical // connection properties ChangedConnections() []SrcDstDiff - // UnchangedConnections is a list of connections that exists in dir1 and dir2, and are identical + // UnchangedConnections is a list of connections that exists in ref1 and ref2, and are identical UnchangedConnections() []SrcDstDiff // IsEmpty returns true if there is no diff in connectivity, i.e. removed, added and changed connections are empty @@ -32,17 +32,17 @@ type SrcDstDiff interface { Src() Peer // Dst returns the destination peer Dst() Peer - // Dir1Connectivity returns the AllowedConnectivity from src to dst in dir1 - Dir1Connectivity() AllowedConnectivity - // Dir2Connectivity returns the AllowedConnectivity from src to dst in dir2 - Dir2Connectivity() AllowedConnectivity - // IsSrcNewOrRemoved returns true if the src peer exists only in dir2 (if DiffType is Added) or if - // the src peer exists only in dir1 (if DiffType is Removed) + // Ref1Connectivity returns the AllowedConnectivity from src to dst in ref1 + Ref1Connectivity() AllowedConnectivity + // Ref2Connectivity returns the AllowedConnectivity from src to dst in ref2 + Ref2Connectivity() AllowedConnectivity + // IsSrcNewOrRemoved returns true if the src peer exists only in ref2 (if DiffType is Added) or if + // the src peer exists only in ref1 (if DiffType is Removed) IsSrcNewOrRemoved() bool - // IsDstNewOrRemoved returns true if the dst peer exists only in dir2 (if DiffType is Added) or if - // the dst peer exists only in dir1 (if DiffType is Removed) + // IsDstNewOrRemoved returns true if the dst peer exists only in ref2 (if DiffType is Added) or if + // the dst peer exists only in ref1 (if DiffType is Removed) IsDstNewOrRemoved() bool - // DiffType returns the diff type of dir2 w.r.t dir1, which can be ChangedType/RemovedType/AddedType/NonChangedType + // DiffType returns the diff type of ref2 w.r.t ref1, which can be ChangedType/RemovedType/AddedType/UnchangedType DiffType() DiffTypeStr } diff --git a/pkg/netpol/diff/diff.go b/pkg/netpol/diff/diff.go index d193bfd1..02cc3f69 100644 --- a/pkg/netpol/diff/diff.go +++ b/pkg/netpol/diff/diff.go @@ -7,6 +7,7 @@ package diff import ( "errors" + "fmt" "os" v1 "k8s.io/api/core/v1" @@ -29,20 +30,22 @@ type DiffAnalyzer struct { stopOnError bool errors []DiffError outputFormat string + ref1Name string + ref2Name string } // ConnDiffFromResourceInfos returns the connectivity diffs from two lists of resource.Info objects, // representing two versions of manifest sets to compare func (da *DiffAnalyzer) ConnDiffFromResourceInfos(infos1, infos2 []*resource.Info) (ConnectivityDiff, error) { // connectivity analysis for first dir - // TODO: should add input arg dirPath to this API func? so that log msgs can specify the dir, rather then just "dir1"/"dir2" - conns1, workloads1, shouldStop, cDiff, errVal := da.getConnlistAnalysis(infos1, true, false, "") + // TODO: should add input arg dirPath to this API func? so that log msgs can specify the dir, rather then just "ref1"/"ref2" + conns1, workloads1, shouldStop, cDiff, errVal := da.getConnlistAnalysis(infos1, true, "") if shouldStop { return cDiff, errVal } // connectivity analysis for second dir - conns2, workloads2, shouldStop, cDiff, errVal := da.getConnlistAnalysis(infos2, false, true, "") + conns2, workloads2, shouldStop, cDiff, errVal := da.getConnlistAnalysis(infos2, false, "") if shouldStop { return cDiff, errVal } @@ -65,7 +68,7 @@ func (da *DiffAnalyzer) ConnDiffFromDirPaths(dirPath1, dirPath2 string) (Connect if len(errs1) == 0 { dirPath = dirPath2 } - da.logger.Errorf(err, "Error getting resourceInfos from dir paths dir1/dir2 ") + da.logger.Errorf(err, "Error getting resourceInfos from dir paths %s/%s ", da.ref1Name, da.ref2Name) da.errors = append(da.errors, parser.FailedReadingFile(dirPath, err)) return nil, err // return as fatal error if both infos-lists are empty, or if stopOnError is on, // or if at least one input dir does not exist @@ -74,12 +77,12 @@ func (da *DiffAnalyzer) ConnDiffFromDirPaths(dirPath1, dirPath2 string) (Connect // split err if it's an aggregated error to a list of separate errors errReadingFile := "error reading file" for _, err := range errs1 { - da.logger.Errorf(err, atDir1Prefix+errReadingFile) // print to log the error from builder + da.logger.Errorf(err, da.errPrefixSpecifyRefName(true)+errReadingFile) // print to log the error from builder da.errors = append(da.errors, parser.FailedReadingFile(dirPath1, err)) // add the error from builder to accumulated errors } for _, err := range errs2 { - da.logger.Errorf(err, atDir2Prefix+errReadingFile) // print to log the error from builder - da.errors = append(da.errors, parser.FailedReadingFile(dirPath2, err)) // add the error from builder to accumulated errors + da.logger.Errorf(err, da.errPrefixSpecifyRefName(false)+errReadingFile) // print to log the error from builder + da.errors = append(da.errors, parser.FailedReadingFile(dirPath2, err)) // add the error from builder to accumulated errors } } return da.ConnDiffFromResourceInfos(infos1, infos2) @@ -161,6 +164,15 @@ func WithStopOnError() DiffAnalyzerOption { } } +// WithArgNames is a functional option that sets the names to be used for the two sets of analyzed resources +// (default is ref1,ref2) in the output reports and log messages. +func WithArgNames(ref1Name, ref2Name string) DiffAnalyzerOption { + return func(d *DiffAnalyzer) { + d.ref1Name = ref1Name + d.ref2Name = ref2Name + } +} + // NewDiffAnalyzer creates a new instance of DiffAnalyzer, and applies the provided functional options. func NewDiffAnalyzer(options ...DiffAnalyzerOption) *DiffAnalyzer { // object with default behavior options @@ -169,6 +181,8 @@ func NewDiffAnalyzer(options ...DiffAnalyzerOption) *DiffAnalyzer { stopOnError: false, errors: []DiffError{}, outputFormat: common.DefaultFormat, + ref1Name: "ref1", + ref2Name: "ref2", } for _, o := range options { o(da) @@ -203,7 +217,7 @@ func (da *DiffAnalyzer) hasFatalError() error { } // return a []ConnlistAnalyzerOption with mute errs/warns, so that logging of err/wanr is not duplicated, and -// added to log only by getConnlistAnalysis function, which adds the context of dir1/dir2 +// added to log only by getConnlistAnalysis function, which adds the context of ref1/ref2 func (da *DiffAnalyzer) determineConnlistAnalyzerOptions() []connlist.ConnlistAnalyzerOption { if da.stopOnError { return []connlist.ConnlistAnalyzerOption{connlist.WithMuteErrsAndWarns(), connlist.WithLogger(da.logger), connlist.WithStopOnError()} @@ -220,8 +234,7 @@ func (da *DiffAnalyzer) determineConnlistAnalyzerOptions() []connlist.ConnlistAn // the main function, if the analysis should stop. func (da *DiffAnalyzer) getConnlistAnalysis( infos []*resource.Info, - dir1 bool, - dir2 bool, + isRef1 bool, dirPath string) ( []connlist.Peer2PeerConnection, []connlist.Peer, @@ -233,9 +246,10 @@ func (da *DiffAnalyzer) getConnlistAnalysis( conns, workloads, err := connlistaAnalyzer.ConnlistFromResourceInfos(infos) // append all fatal/severe errors and warnings returned by connlistaAnalyzer + errPrefix := da.errPrefixSpecifyRefName(isRef1) for _, e := range connlistaAnalyzer.Errors() { - // wrap err/warn with new err type that includes context of dir1/dir2 - daErr := newConnectivityAnalysisError(e.Error(), dir1, dir2, dirPath, e.IsSevere(), e.IsFatal()) + // wrap err/warn with new err type that includes context of ref1/ref2 + daErr := newConnectivityAnalysisError(e.Error(), errPrefix, dirPath, e.IsSevere(), e.IsFatal()) da.errors = append(da.errors, daErr) logErrOrWarning(daErr, da.logger) } @@ -244,7 +258,7 @@ func (da *DiffAnalyzer) getConnlistAnalysis( // check it exists, if not, append a new fatal err to the da.errors array if da.hasFatalError() == nil { // append the fatal error (indicates an issue in connlist analyzer, that did not append this err as expected) - da.errors = append(da.errors, newConnectivityAnalysisError(err, dir1, dir2, dirPath, false, true)) + da.errors = append(da.errors, newConnectivityAnalysisError(err, errPrefix, dirPath, false, true)) } } @@ -264,6 +278,17 @@ func (da *DiffAnalyzer) getConnlistAnalysis( return conns, workloads, shouldStop, cDiff, errVal } +func (da *DiffAnalyzer) errPrefixSpecifyRefName(isRef1 bool) string { + if isRef1 { + return getErrPrefix(da.ref1Name) + } + return getErrPrefix(da.ref2Name) +} + +func getErrPrefix(location string) string { + return fmt.Sprintf("at %s: ", location) +} + func logErrOrWarning(d DiffError, l logger.Logger) { if d.IsSevere() || d.IsFatal() { l.Errorf(d.Error(), "") @@ -351,7 +376,7 @@ func (c *connsPair) Dst() Peer { return c.firstConn.Dst() } -func (c *connsPair) Dir1Connectivity() AllowedConnectivity { +func (c *connsPair) Ref1Connectivity() AllowedConnectivity { if c.diffType == AddedType { return &allowedConnectivity{ allProtocolsAndPorts: false, @@ -364,7 +389,7 @@ func (c *connsPair) Dir1Connectivity() AllowedConnectivity { } } -func (c *connsPair) Dir2Connectivity() AllowedConnectivity { +func (c *connsPair) Ref2Connectivity() AllowedConnectivity { if c.diffType == RemovedType { return &allowedConnectivity{ allProtocolsAndPorts: false, @@ -689,7 +714,7 @@ func (da *DiffAnalyzer) ConnectivityDiffToString(connectivityDiff ConnectivityDi return "", nil } da.logger.Infof("Found connections diffs") - diffFormatter, err := getFormatter(da.outputFormat) + diffFormatter, err := getFormatter(da.outputFormat, da.ref1Name, da.ref2Name) if err != nil { da.errors = append(da.errors, newResultFormattingError(err)) return "", err @@ -703,21 +728,21 @@ func (da *DiffAnalyzer) ConnectivityDiffToString(connectivityDiff ConnectivityDi } // returns the relevant formatter for the analyzer's outputFormat -func getFormatter(format string) (diffFormatter, error) { +func getFormatter(format, ref1Name, ref2Name string) (diffFormatter, error) { if err := ValidateDiffOutputFormat(format); err != nil { return nil, err } switch format { case common.TextFormat: - return &diffFormatText{}, nil + return &diffFormatText{ref1: ref1Name, ref2: ref2Name}, nil case common.CSVFormat: - return &diffFormatCSV{}, nil + return &diffFormatCSV{ref1: ref1Name, ref2: ref2Name}, nil case common.MDFormat: - return &diffFormatMD{}, nil + return &diffFormatMD{ref1: ref1Name, ref2: ref2Name}, nil case common.DOTFormat: - return &diffFormatDOT{}, nil + return &diffFormatDOT{ref1: ref1Name, ref2: ref2Name}, nil default: - return &diffFormatText{}, nil + return &diffFormatText{ref1: ref1Name, ref2: ref2Name}, nil } } diff --git a/pkg/netpol/diff/diff_errors.go b/pkg/netpol/diff/diff_errors.go index a1f8006d..bb1b796d 100644 --- a/pkg/netpol/diff/diff_errors.go +++ b/pkg/netpol/diff/diff_errors.go @@ -26,10 +26,9 @@ type handlingIPpeersError struct { } type connectivityAnalysisError struct { - origErr error - dir1 bool - dir2 bool - dirPath string + origErr error + errPrefix string + dirPath string } /////////////////////////// @@ -64,20 +63,13 @@ func (e *handlingIPpeersError) Error() string { return e.origErr.Error() } -const ( - atDir1Prefix = "at dir1: " - atDir2Prefix = "at dir2: " -) - func (e *connectivityAnalysisError) Error() string { var prefix string switch { case e.dirPath != "": - prefix = "at " + e.dirPath + ": " - case e.dir1: - prefix = atDir1Prefix - case e.dir2: - prefix = atDir2Prefix + prefix = getErrPrefix(e.dirPath) + case e.errPrefix != "": // prefix of ref1/ref2 names + prefix = e.errPrefix } return prefix + e.origErr.Error() } @@ -91,7 +83,7 @@ func newHandlingIPpeersError(err error) *diffGeneratingError { return &diffGeneratingError{err: &handlingIPpeersError{err}, fatal: true, severe: false} } -func newConnectivityAnalysisError(err error, dir1, dir2 bool, dirPath string, isSevere, isFatal bool) *diffGeneratingError { +func newConnectivityAnalysisError(err error, errPrefix, dirPath string, isSevere, isFatal bool) *diffGeneratingError { return &diffGeneratingError{err: &connectivityAnalysisError{ - origErr: err, dir1: dir1, dir2: dir2, dirPath: dirPath}, fatal: isFatal, severe: isSevere} + origErr: err, errPrefix: errPrefix, dirPath: dirPath}, fatal: isFatal, severe: isSevere} } diff --git a/pkg/netpol/diff/diff_formatter.go b/pkg/netpol/diff/diff_formatter.go index 467363e7..323ad493 100644 --- a/pkg/netpol/diff/diff_formatter.go +++ b/pkg/netpol/diff/diff_formatter.go @@ -26,8 +26,8 @@ type singleDiffFields struct { diffType string src string dst string - dir1Conn string - dir2Conn string + ref1Conn string + ref2Conn string workloadDiffInfo string } @@ -44,8 +44,8 @@ func formDiffFieldsDataOfDiffConns(diffConns []SrcDstDiff) (netpolsDiff, ingress diffType: string(d.DiffType()), src: srcStr, dst: dstStr, - dir1Conn: firstDirConn, - dir2Conn: secondDirConn, + ref1Conn: firstDirConn, + ref2Conn: secondDirConn, workloadDiffInfo: getDiffInfo(d), } if isSrcIngress { @@ -64,17 +64,17 @@ func getConnPeersStrings(c SrcDstDiff) (srcStr, dstStr string, isSrcIngress bool } // getDirsConnsStrings returns the string forms of the connections in a single diff connsPair -func getDirsConnsStrings(c SrcDstDiff) (dir1Str, dir2Str string) { - dir1AllowedConns := c.Dir1Connectivity() - dir2AllowedConns := c.Dir2Connectivity() +func getDirsConnsStrings(c SrcDstDiff) (ref1Str, ref2Str string) { + ref1AllowedConns := c.Ref1Connectivity() + ref2AllowedConns := c.Ref2Connectivity() switch c.DiffType() { case ChangedType, UnchangedType: - return common.ConnStrFromConnProperties(dir1AllowedConns.AllProtocolsAndPorts(), dir1AllowedConns.ProtocolsAndPorts()), - common.ConnStrFromConnProperties(dir2AllowedConns.AllProtocolsAndPorts(), dir2AllowedConns.ProtocolsAndPorts()) + return common.ConnStrFromConnProperties(ref1AllowedConns.AllProtocolsAndPorts(), ref1AllowedConns.ProtocolsAndPorts()), + common.ConnStrFromConnProperties(ref2AllowedConns.AllProtocolsAndPorts(), ref2AllowedConns.ProtocolsAndPorts()) case AddedType: - return noConns, common.ConnStrFromConnProperties(dir2AllowedConns.AllProtocolsAndPorts(), dir2AllowedConns.ProtocolsAndPorts()) + return noConns, common.ConnStrFromConnProperties(ref2AllowedConns.AllProtocolsAndPorts(), ref2AllowedConns.ProtocolsAndPorts()) case RemovedType: - return common.ConnStrFromConnProperties(dir1AllowedConns.AllProtocolsAndPorts(), dir1AllowedConns.ProtocolsAndPorts()), noConns + return common.ConnStrFromConnProperties(ref1AllowedConns.AllProtocolsAndPorts(), ref1AllowedConns.ProtocolsAndPorts()), noConns default: return "", "" // should not get here ever } diff --git a/pkg/netpol/diff/diff_formatter_csv.go b/pkg/netpol/diff/diff_formatter_csv.go index d3ff602c..2e587dd2 100644 --- a/pkg/netpol/diff/diff_formatter_csv.go +++ b/pkg/netpol/diff/diff_formatter_csv.go @@ -9,9 +9,13 @@ import ( // diffFormatCSV: implements the diffFormatter interface for csv output format type diffFormatCSV struct { + ref1 string + ref2 string } -var csvHeader = []string{"diff-type", "source", "destination", "dir1", "dir2", "workloads-diff-info"} +func (cs *diffFormatCSV) getCSVHeader() []string { + return []string{"diff-type", "source", "destination", cs.ref1, cs.ref2, "workloads-diff-info"} +} // writeDiffOutput writes the diff output in the csv format func (cs *diffFormatCSV) writeDiffOutput(connsDiff ConnectivityDiff) (string, error) { @@ -19,7 +23,7 @@ func (cs *diffFormatCSV) writeDiffOutput(connsDiff ConnectivityDiff) (string, er // writing csv rows into a buffer buf := new(bytes.Buffer) writer := csv.NewWriter(buf) - if err := writer.Write(csvHeader); err != nil { + if err := writer.Write(cs.getCSVHeader()); err != nil { return "", err } for _, diffData := range changesSortedByCategory { @@ -34,5 +38,5 @@ func (cs *diffFormatCSV) writeDiffOutput(connsDiff ConnectivityDiff) (string, er // singleDiffLine forms a single diff line in the csv format func (cs *diffFormatCSV) singleDiffLine(d *singleDiffFields) string { - return fmt.Sprintf("%s;%s;%s;%s;%s;%s", d.diffType, d.src, d.dst, d.dir1Conn, d.dir2Conn, d.workloadDiffInfo) + return fmt.Sprintf("%s;%s;%s;%s;%s;%s", d.diffType, d.src, d.dst, d.ref1Conn, d.ref2Conn, d.workloadDiffInfo) } diff --git a/pkg/netpol/diff/diff_formatter_dot.go b/pkg/netpol/diff/diff_formatter_dot.go index cbfad840..12863c0f 100644 --- a/pkg/netpol/diff/diff_formatter_dot.go +++ b/pkg/netpol/diff/diff_formatter_dot.go @@ -10,6 +10,8 @@ import ( // diffFormatDOT: implements the diffFormatter interface for dot output format type diffFormatDOT struct { + ref1 string + ref2 string } // writeDiffOutput writes the diff output in the dot format @@ -17,22 +19,22 @@ func (df *diffFormatDOT) writeDiffOutput(connsDiff ConnectivityDiff) (string, er var edgeLines, peersLines, ingressAnalyzerEdges []string peersVisited := make(map[string]bool, 0) // set of peers // non changed - ncPeers, nonChangedEdges, nonChangedIngressEdges := getEdgesAndPeersLinesByCategory(connsDiff.UnchangedConnections(), peersVisited) + ncPeers, nonChangedEdges, nonChangedIngressEdges := df.getEdgesAndPeersLinesByCategory(connsDiff.UnchangedConnections(), peersVisited) peersLines = append(peersLines, ncPeers...) edgeLines = append(edgeLines, nonChangedEdges...) ingressAnalyzerEdges = append(ingressAnalyzerEdges, nonChangedIngressEdges...) // changed - cPeers, changedEedges, changedIngressEdges := getEdgesAndPeersLinesByCategory(connsDiff.ChangedConnections(), peersVisited) + cPeers, changedEedges, changedIngressEdges := df.getEdgesAndPeersLinesByCategory(connsDiff.ChangedConnections(), peersVisited) peersLines = append(peersLines, cPeers...) edgeLines = append(edgeLines, changedEedges...) ingressAnalyzerEdges = append(ingressAnalyzerEdges, changedIngressEdges...) // added - nPeers, newEdges, newIngressEdges := getEdgesAndPeersLinesByCategory(connsDiff.AddedConnections(), peersVisited) + nPeers, newEdges, newIngressEdges := df.getEdgesAndPeersLinesByCategory(connsDiff.AddedConnections(), peersVisited) peersLines = append(peersLines, nPeers...) edgeLines = append(edgeLines, newEdges...) ingressAnalyzerEdges = append(ingressAnalyzerEdges, newIngressEdges...) // removed - lPeers, lostEdges, lostIngressEdges := getEdgesAndPeersLinesByCategory(connsDiff.RemovedConnections(), peersVisited) + lPeers, lostEdges, lostIngressEdges := df.getEdgesAndPeersLinesByCategory(connsDiff.RemovedConnections(), peersVisited) peersLines = append(peersLines, lPeers...) edgeLines = append(edgeLines, lostEdges...) ingressAnalyzerEdges = append(ingressAnalyzerEdges, lostIngressEdges...) @@ -54,7 +56,8 @@ func (df *diffFormatDOT) writeDiffOutput(connsDiff ConnectivityDiff) (string, er // getEdgesAndPeersLinesByCategory returns the dot peers, edges and ingress edges lines of the given connsPairs // (all connsPairs are in same category) -func getEdgesAndPeersLinesByCategory(connsPairs []SrcDstDiff, peersSet map[string]bool) (peersLines, connsEdges, ingressEdges []string) { +func (df *diffFormatDOT) getEdgesAndPeersLinesByCategory(connsPairs []SrcDstDiff, peersSet map[string]bool, +) (peersLines, connsEdges, ingressEdges []string) { peersLines = make([]string, 0) connsEdges = make([]string, 0) ingressEdges = make([]string, 0) @@ -71,9 +74,9 @@ func getEdgesAndPeersLinesByCategory(connsPairs []SrcDstDiff, peersSet map[strin } // add connections lines if isIngress { - ingressEdges = append(ingressEdges, addEdgesLines(connsPair)) + ingressEdges = append(ingressEdges, df.addEdgesLines(connsPair)) } else { - connsEdges = append(connsEdges, addEdgesLines(connsPair)) + connsEdges = append(connsEdges, df.addEdgesLines(connsPair)) } } return peersLines, connsEdges, ingressEdges @@ -109,14 +112,14 @@ const ( ) // addEdgesLines forms the appropriate edge line of the given conns pair -func addEdgesLines(connsPair SrcDstDiff) string { +func (df *diffFormatDOT) addEdgesLines(connsPair SrcDstDiff) string { src, dst, _ := getConnPeersStrings(connsPair) firstConn, secondConn := getDirsConnsStrings(connsPair) switch connsPair.DiffType() { case UnchangedType: return getEdgeLine(src, dst, firstConn, nonChangedConnColor) case ChangedType: - changedEdgeLabel := secondConn + " (old: " + firstConn + ")" + changedEdgeLabel := fmt.Sprintf("%s (%s: %s)", secondConn, df.ref1, firstConn) return getEdgeLine(src, dst, changedEdgeLabel, changedConnColor) case RemovedType: return getEdgeLine(src, dst, firstConn, removedConnColor) diff --git a/pkg/netpol/diff/diff_formatter_md.go b/pkg/netpol/diff/diff_formatter_md.go index 5e82996a..e1042fdd 100644 --- a/pkg/netpol/diff/diff_formatter_md.go +++ b/pkg/netpol/diff/diff_formatter_md.go @@ -7,15 +7,19 @@ import ( // diffFormatMD: implements the diffFormatter interface for md output format type diffFormatMD struct { + ref1 string + ref2 string } -var mdHeader = "| diff-type | source | destination | dir1 | dir2 | workloads-diff-info |\n" + - "|-----------|--------|-------------|------|------|---------------------|" +func (md *diffFormatMD) getMDHeader() string { + return fmt.Sprintf("| diff-type | source | destination | %s | %s | workloads-diff-info |\n", md.ref1, md.ref2) + + "|-----------|--------|-------------|------|------|---------------------|" +} // returns md string format of connections diff from connectivityDiff object func (md *diffFormatMD) writeDiffOutput(connsDiff ConnectivityDiff) (string, error) { res := make([]string, 0) - res = append(res, mdHeader) + res = append(res, md.getMDHeader()) res = append(res, writeDiffLinesOrderedByCategory(connsDiff, md)...) return strings.Join(res, newLine), nil } @@ -23,5 +27,5 @@ func (md *diffFormatMD) writeDiffOutput(connsDiff ConnectivityDiff) (string, err // singleDiffLine forms a single diff line in the md format func (md *diffFormatMD) singleDiffLine(d *singleDiffFields) string { return fmt.Sprintf("| %s | %s | %s | %s | %s | %s |", - d.diffType, d.src, d.dst, d.dir1Conn, d.dir2Conn, d.workloadDiffInfo) + d.diffType, d.src, d.dst, d.ref1Conn, d.ref2Conn, d.workloadDiffInfo) } diff --git a/pkg/netpol/diff/diff_formatter_text.go b/pkg/netpol/diff/diff_formatter_text.go index 3340e368..64e33b39 100644 --- a/pkg/netpol/diff/diff_formatter_text.go +++ b/pkg/netpol/diff/diff_formatter_text.go @@ -7,6 +7,8 @@ import ( // diffFormatText: implements the diffFormatter interface for txt output format type diffFormatText struct { + ref1 string + ref2 string } const ( @@ -24,8 +26,8 @@ func (t *diffFormatText) writeDiffOutput(connsDiff ConnectivityDiff) (string, er // singleDiffLine forms a single diff line in the txt format func (t *diffFormatText) singleDiffLine(d *singleDiffFields) string { - diffLine := fmt.Sprintf("diff-type: %s, source: %s, destination: %s, dir1: %s, dir2: %s", d.diffType, - d.src, d.dst, d.dir1Conn, d.dir2Conn) + diffLine := fmt.Sprintf("diff-type: %s, source: %s, destination: %s, %s: %s, %s: %s", d.diffType, + d.src, d.dst, t.ref1, d.ref1Conn, t.ref2, d.ref2Conn) if d.workloadDiffInfo != "" { return diffLine + ", workloads-diff-info: " + d.workloadDiffInfo } diff --git a/pkg/netpol/diff/diff_test.go b/pkg/netpol/diff/diff_test.go index 203610b5..6f7eb124 100644 --- a/pkg/netpol/diff/diff_test.go +++ b/pkg/netpol/diff/diff_test.go @@ -59,7 +59,7 @@ func TestDiffAnalyzeFatalErrors(t *testing.T) { t.Run(tt.name, func(t *testing.T) { t.Parallel() for _, apiFunc := range diffTestedAPIS { - pTest, diffRes, err := getAnalysisResFromAPI(apiFunc, tt.dir1, tt.dir2, common.DefaultFormat, tt.name) + pTest, diffRes, err := getAnalysisResFromAPI(apiFunc, tt.ref1, tt.ref2, common.DefaultFormat, tt.name) require.Empty(t, diffRes, "test: %q, apiFunc: %q", tt.name, apiFunc) testutils.CheckErrorContainment(t, pTest.testInfo, tt.errorStrContains, err.Error()) require.Equal(t, 1, len(pTest.analyzer.errors)) @@ -78,51 +78,51 @@ func TestDiffAnalyzerSevereErrorsAndWarnings(t *testing.T) { t.Parallel() cases := []struct { name string - dir1 string - dir2 string + ref1 string + ref2 string containedErrOrWarns []string emptyRes bool onlyDirPathsAPI bool }{ { name: "first_input_dir_has_no_k8s_resources_should_return_severe_error", - dir1: filepath.Join("bad_yamls", "not_a_k8s_resource.yaml"), - dir2: "ipblockstest", // no warnings, nor any severe/fatal errors + ref1: filepath.Join("bad_yamls", "not_a_k8s_resource.yaml"), + ref2: "ipblockstest", // no warnings, nor any severe/fatal errors containedErrOrWarns: []string{ "unable to decode", // "at dir 1" currently printed to log, but not attached to err itself - "at dir1: no relevant Kubernetes workload resources found", - "at dir1: no relevant Kubernetes network policy resources found", + "at ref1: no relevant Kubernetes workload resources found", + "at ref1: no relevant Kubernetes network policy resources found", }, onlyDirPathsAPI: true, - emptyRes: false, // expecting diff result because dir2 has resources + emptyRes: false, // expecting diff result because ref2 has resources }, { // same test as the one above, this time with both apis - thus "unable to decode" not included, // as issued by the builder name: "first_input_dir_has_no_k8s_resources_should_return_severe_error", - dir1: filepath.Join("bad_yamls", "not_a_k8s_resource.yaml"), - dir2: "ipblockstest", // no warnings, nor any severe/fatal errors + ref1: filepath.Join("bad_yamls", "not_a_k8s_resource.yaml"), + ref2: "ipblockstest", // no warnings, nor any severe/fatal errors containedErrOrWarns: []string{ - "at dir1: no relevant Kubernetes workload resources found", - "at dir1: no relevant Kubernetes network policy resources found", + "at ref1: no relevant Kubernetes workload resources found", + "at ref1: no relevant Kubernetes network policy resources found", }, - emptyRes: false, // expecting diff result because dir2 has resources + emptyRes: false, // expecting diff result because ref2 has resources }, { name: "first_input_dir_has_no_netpols_should_get_no_relevant_k8s_policies_found", - dir1: "k8s_ingress_test", - dir2: "k8s_ingress_test_new", + ref1: "k8s_ingress_test", + ref2: "k8s_ingress_test_new", containedErrOrWarns: []string{ - "at dir1: no relevant Kubernetes network policy resources found", + "at ref1: no relevant Kubernetes network policy resources found", }, emptyRes: false, // expecting diff result, both dirs have resources }, { name: "in_second_input_dir_network_policies_block_ingress_conns_to_a_workload_should_get_warning_msg", - dir1: "acs-security-demos", - dir2: "acs-security-demos-new", + ref1: "acs-security-demos", + ref2: "acs-security-demos-new", containedErrOrWarns: []string{ - "at dir2: Route resource frontend/asset-cache specified workload frontend/asset-cache[Deployment] as a backend", + "at ref2: Route resource frontend/asset-cache specified workload frontend/asset-cache[Deployment] as a backend", }, emptyRes: false, // expecting diff result, both dirs have resources }, @@ -132,8 +132,8 @@ func TestDiffAnalyzerSevereErrorsAndWarnings(t *testing.T) { // when running without stopOnError we expect to see 6 severe errors (3 for each dir flag) // but when running with stopOnError we expect to see only 1 , and then stops name: "both_input_dirs_contain_malformed_yaml_files_should_return_severe_errors", - dir1: "dirty", - dir2: "dirty", + ref1: "dirty", + ref2: "dirty", firstErrStrContains: "YAML document is malformed", expectedErrNumWithoutStopOnErr: 6, expectedErrNumWithStopOnErr: 1, @@ -148,7 +148,7 @@ func TestDiffAnalyzerSevereErrorsAndWarnings(t *testing.T) { continue } - pTest, diffRes, err := getAnalysisResFromAPI(apiFunc, tt.dir1, tt.dir2, common.DefaultFormat, tt.name) + pTest, diffRes, err := getAnalysisResFromAPI(apiFunc, tt.ref1, tt.ref2, common.DefaultFormat, tt.name) if tt.emptyRes { require.Empty(t, diffRes, pTest.testInfo) } else { @@ -186,8 +186,8 @@ func TestErrorsConnDiffFromDirPathOnly(t *testing.T) { t.Parallel() cases := []struct { name string - dir1 string - dir2 string + ref1 string + ref2 string containedErrOrWarns []string emptyRes bool onlyDirPathsAPI bool @@ -195,8 +195,8 @@ func TestErrorsConnDiffFromDirPathOnly(t *testing.T) { }{ { name: "both_input_dirs_do_not_exist", - dir1: "some_dir", - dir2: "some_other_dir", + ref1: "some_dir", + ref2: "some_other_dir", containedErrOrWarns: []string{ // [the path "tests/some_dir" does not exist, the path "tests/some_other_dir" does not exist] "[the path ", "some_dir", "does not exist", "some_other_dir", @@ -206,8 +206,8 @@ func TestErrorsConnDiffFromDirPathOnly(t *testing.T) { }, { name: "first_dir_does_not_exist_and_second_dir_has_json_that_cannot_be_decoded", - dir1: "some_dir", - dir2: "acs-security-demos", + ref1: "some_dir", + ref2: "acs-security-demos", containedErrOrWarns: []string{ // [the path "tests/some_other_dir" does not exist, unable to decode "tests\\acs-security-demos\\connlist_output.json": // json: cannot unmarshal array into Go value of type unstructured.detector] @@ -217,12 +217,12 @@ func TestErrorsConnDiffFromDirPathOnly(t *testing.T) { isFatal: true, }, { - name: "dir_has_json_that_cannot_be_decoded_and_dir1_dir2_are_the_same", - dir1: "acs-security-demos", - dir2: "acs-security-demos", + name: "dir_has_json_that_cannot_be_decoded_and_dir1_ref2_are_the_same", + ref1: "acs-security-demos", + ref2: "acs-security-demos", containedErrOrWarns: []string{ - // at dir1: error reading file: unable to decode ... - // at dir2: error reading file: unable to decode ... + // at ref1: error reading file: unable to decode ... + // at ref2: error reading file: unable to decode ... // "at dir" is only attached to the log msg and not to the returned err obj "unable to decode", "connlist_output.json", "error reading file", }, @@ -234,7 +234,7 @@ func TestErrorsConnDiffFromDirPathOnly(t *testing.T) { tt := tt t.Run(tt.name, func(t *testing.T) { t.Parallel() - pTest, diffRes, err := getAnalysisResFromAPI(DirPathFunc, tt.dir1, tt.dir2, common.DefaultFormat, tt.name) + pTest, diffRes, err := getAnalysisResFromAPI(DirPathFunc, tt.ref1, tt.ref2, common.DefaultFormat, tt.name) if tt.emptyRes { require.Empty(t, diffRes, pTest.testInfo) } else { @@ -266,15 +266,15 @@ func TestDiffOutputFatalErrors(t *testing.T) { t.Parallel() cases := []struct { name string - dir1 string - dir2 string + ref1 string + ref2 string format string errorStrContains string }{ { name: "giving_unsupported_output_format_option_should_return_fatal_error", - dir1: "onlineboutique_workloads", - dir2: "onlineboutique_workloads_changed_netpols", + ref1: "onlineboutique_workloads", + ref2: "onlineboutique_workloads_changed_netpols", format: "png", errorStrContains: "png output format is not supported.", }, @@ -284,7 +284,7 @@ func TestDiffOutputFatalErrors(t *testing.T) { t.Run(tt.name, func(t *testing.T) { t.Parallel() for _, apiFunc := range diffTestedAPIS { - pTest, connsDiff, err := getAnalysisResFromAPI(apiFunc, tt.dir1, tt.dir2, tt.format, tt.name) + pTest, connsDiff, err := getAnalysisResFromAPI(apiFunc, tt.ref1, tt.ref2, tt.format, tt.name) require.Nil(t, err, pTest.testInfo) require.NotEmpty(t, connsDiff, pTest.testInfo) output, err := pTest.analyzer.ConnectivityDiffToString(connsDiff) @@ -295,6 +295,24 @@ func TestDiffOutputFatalErrors(t *testing.T) { } } +// TODO: change to be one of the set from good path tests +func TestDiffOutputWithArgNamesOption(t *testing.T) { + ref1 := "onlineboutique_workloads" + ref2 := "onlineboutique_workloads_changed_netpols" + for _, format := range ValidDiffFormats { + analyzer := NewDiffAnalyzer(WithOutputFormat(format), WithArgNames("old", "new")) + diffRes, err := analyzer.ConnDiffFromDirPaths(filepath.Join(testutils.GetTestsDir(), ref1), + filepath.Join(testutils.GetTestsDir(), ref2)) + require.Nil(t, err) + require.NotEmpty(t, diffRes) + output, err := analyzer.ConnectivityDiffToString(diffRes) + require.Nil(t, err) + testName := "TsetOutputWithArgNamesOption." + format + testutils.CheckActualVsExpectedOutputMatch(t, testName, ref2, + testName, output, testName) + } +} + type preparedTest struct { testName string testInfo string @@ -304,8 +322,8 @@ type preparedTest struct { analyzer *DiffAnalyzer } -func getTestName(dir1, dir2 string) string { - return "diff_between_" + dir2 + "_and_" + dir1 +func getTestName(ref1, ref2 string) string { + return "diff_between_" + ref2 + "_and_" + ref1 } func prepareTest(firstDir, secondDir, format, apiName, testNameStr string) *preparedTest { @@ -599,41 +617,41 @@ var goodPathTests = []struct { var commonBadPathTestsFatalErr = []struct { name string - dir1 string - dir2 string + ref1 string + ref2 string errorStrContains string }{ { name: "first_input_dir_has_netpol_with_invalid_cidr_should_return_fatal_error_of_invalid_CIDR_address", - dir1: filepath.Join("bad_netpols", "subdir1"), - dir2: "ipblockstest", + ref1: filepath.Join("bad_netpols", "subdir1"), + ref2: "ipblockstest", errorStrContains: "network policy default/shippingservice-netpol CIDR error: invalid CIDR address: A", }, { name: "second_input_dir_has_netpol_with_bad_label_key_should_return_fatal_selector_error", - dir1: "ipblockstest", - dir2: filepath.Join("bad_netpols", "subdir2"), + ref1: "ipblockstest", + ref2: filepath.Join("bad_netpols", "subdir2"), errorStrContains: "network policy default/shippingservice-netpol selector error: key: Invalid value: \"app@b\": " + "name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric" + " character (e.g. 'MyName', or 'my.name', or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')", }, { name: "first_input_dir_has_netpol_with_invalid_rule_peer_should_return_fatal_rule_NetworkPolicyPeer_error", - dir1: filepath.Join("bad_netpols", "subdir3"), - dir2: "ipblockstest", + ref1: filepath.Join("bad_netpols", "subdir3"), + ref2: "ipblockstest", errorStrContains: "network policy default/shippingservice-netpol rule NetworkPolicyPeer error: " + "cannot have both IPBlock and PodSelector/NamespaceSelector set", }, { name: "second_input_dir_has_netpol_with_empty_rule_peer_should_return_fatal_rule_NetworkPolicyPeer_error", - dir1: "ipblockstest", - dir2: filepath.Join("bad_netpols", "subdir4"), + ref1: "ipblockstest", + ref2: filepath.Join("bad_netpols", "subdir4"), errorStrContains: "network policy default/shippingservice-netpol rule NetworkPolicyPeer error: cannot have empty rule peer", }, { name: "second_input_dir_has_netpol_with_named_port_on_ipblock_peer_should_return_fatal_named_port_error", - dir1: "ipblockstest", - dir2: filepath.Join("bad_netpols", "subdir6"), + ref1: "ipblockstest", + ref2: filepath.Join("bad_netpols", "subdir6"), errorStrContains: "network policy default/shippingservice-netpol named port error: cannot convert named port for an IP destination", }, /*{ @@ -644,8 +662,8 @@ var commonBadPathTestsFatalErr = []struct { },*/ { name: "first_input_dir_has_illegal_podlist_pods_with_same_owner_ref_name_has_different_labels_should_return_fatal_error", - dir1: "semanticDiff-same-topologies-illegal-podlist", - dir2: "semanticDiff-same-topologies-old1", + ref1: "semanticDiff-same-topologies-illegal-podlist", + ref2: "semanticDiff-same-topologies-old1", errorStrContains: "Input Pod resources are not supported for connectivity analysis." + " Found Pods of the same owner demo/cog-agents but with different set of labels.", }, diff --git a/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.csv b/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.csv index 6eae7838..ccb21a34 100644 --- a/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.csv +++ b/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.csv @@ -1,4 +1,4 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info added,payments/gateway[Deployment],payments/visa-processor-v2[Deployment],No Connections,TCP 8080,workload payments/visa-processor-v2[Deployment] added added,{ingress-controller},frontend/blog[Deployment],No Connections,TCP 8080,workload frontend/blog[Deployment] added added,{ingress-controller},zeroday/zeroday[Deployment],No Connections,TCP 8080,workload zeroday/zeroday[Deployment] added diff --git a/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.md b/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.md index f046449b..da790ec5 100644 --- a/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.md +++ b/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | added | payments/gateway[Deployment] | payments/visa-processor-v2[Deployment] | No Connections | TCP 8080 | workload payments/visa-processor-v2[Deployment] added | | added | {ingress-controller} | frontend/blog[Deployment] | No Connections | TCP 8080 | workload frontend/blog[Deployment] added | diff --git a/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.txt b/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.txt index 5d13533e..acb9ae03 100644 --- a/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.txt +++ b/tests/acs-security-demos-added-workloads/diff_output_from_acs-security-demos.txt @@ -1,4 +1,4 @@ Connectivity diff: -diff-type: added, source: payments/gateway[Deployment], destination: payments/visa-processor-v2[Deployment], dir1: No Connections, dir2: TCP 8080, workloads-diff-info: workload payments/visa-processor-v2[Deployment] added -diff-type: added, source: {ingress-controller}, destination: frontend/blog[Deployment], dir1: No Connections, dir2: TCP 8080, workloads-diff-info: workload frontend/blog[Deployment] added -diff-type: added, source: {ingress-controller}, destination: zeroday/zeroday[Deployment], dir1: No Connections, dir2: TCP 8080, workloads-diff-info: workload zeroday/zeroday[Deployment] added \ No newline at end of file +diff-type: added, source: payments/gateway[Deployment], destination: payments/visa-processor-v2[Deployment], ref1: No Connections, ref2: TCP 8080, workloads-diff-info: workload payments/visa-processor-v2[Deployment] added +diff-type: added, source: {ingress-controller}, destination: frontend/blog[Deployment], ref1: No Connections, ref2: TCP 8080, workloads-diff-info: workload frontend/blog[Deployment] added +diff-type: added, source: {ingress-controller}, destination: zeroday/zeroday[Deployment], ref1: No Connections, ref2: TCP 8080, workloads-diff-info: workload zeroday/zeroday[Deployment] added \ No newline at end of file diff --git a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.csv b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.csv index b57398a8..7eb886a2 100644 --- a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.csv +++ b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.csv @@ -1,4 +1,4 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info changed,backend/reports[Deployment],backend/catalog[Deployment],TCP 8080,TCP 9080, added,0.0.0.0-255.255.255.255,external/unicorn[Deployment],No Connections,All Connections,workload external/unicorn[Deployment] added added,backend/checkout[Deployment],external/unicorn[Deployment],No Connections,UDP 5353,workload external/unicorn[Deployment] added diff --git a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.dot b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.dot index 8b38b392..9f545c41 100644 --- a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.dot +++ b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.dot @@ -20,7 +20,7 @@ digraph { "backend/checkout[Deployment]" -> "payments/gateway[Deployment]" [label="TCP 8080" color="grey" fontcolor="grey"] "backend/recommendation[Deployment]" -> "backend/catalog[Deployment]" [label="TCP 8080" color="grey" fontcolor="grey"] "backend/recommendation[Deployment]" -> "external/unicorn[Deployment]" [label="UDP 5353" color="#008000" fontcolor="#008000"] - "backend/reports[Deployment]" -> "backend/catalog[Deployment]" [label="TCP 9080 (old: TCP 8080)" color="magenta" fontcolor="magenta"] + "backend/reports[Deployment]" -> "backend/catalog[Deployment]" [label="TCP 9080 (ref1: TCP 8080)" color="magenta" fontcolor="magenta"] "backend/reports[Deployment]" -> "backend/recommendation[Deployment]" [label="TCP 8080" color="grey" fontcolor="grey"] "backend/reports[Deployment]" -> "external/unicorn[Deployment]" [label="UDP 5353" color="#008000" fontcolor="#008000"] "external/unicorn[Deployment]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="#008000" fontcolor="#008000"] diff --git a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.md b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.md index e5fd4fba..da4f43f4 100644 --- a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.md +++ b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | changed | backend/reports[Deployment] | backend/catalog[Deployment] | TCP 8080 | TCP 9080 | | | added | 0.0.0.0-255.255.255.255 | external/unicorn[Deployment] | No Connections | All Connections | workload external/unicorn[Deployment] added | diff --git a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.txt b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.txt index c74dbdac..116389ea 100644 --- a/tests/acs-security-demos-new/diff_output_from_acs-security-demos.txt +++ b/tests/acs-security-demos-new/diff_output_from_acs-security-demos.txt @@ -1,13 +1,13 @@ Connectivity diff: -diff-type: changed, source: backend/reports[Deployment], destination: backend/catalog[Deployment], dir1: TCP 8080, dir2: TCP 9080 -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: external/unicorn[Deployment], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: backend/checkout[Deployment], destination: external/unicorn[Deployment], dir1: No Connections, dir2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: backend/recommendation[Deployment], destination: external/unicorn[Deployment], dir1: No Connections, dir2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: backend/reports[Deployment], destination: external/unicorn[Deployment], dir1: No Connections, dir2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: external/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: external/unicorn[Deployment], destination: frontend/webapp[Deployment], dir1: No Connections, dir2: TCP 8080, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: frontend/webapp[Deployment], destination: external/unicorn[Deployment], dir1: No Connections, dir2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: added, source: payments/gateway[Deployment], destination: external/unicorn[Deployment], dir1: No Connections, dir2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added -diff-type: removed, source: frontend/webapp[Deployment], destination: backend/shipping[Deployment], dir1: TCP 8080, dir2: No Connections -diff-type: removed, source: payments/gateway[Deployment], destination: payments/mastercard-processor[Deployment], dir1: TCP 8080, dir2: No Connections, workloads-diff-info: workload payments/mastercard-processor[Deployment] removed -diff-type: removed, source: {ingress-controller}, destination: frontend/asset-cache[Deployment], dir1: TCP 8080, dir2: No Connections \ No newline at end of file +diff-type: changed, source: backend/reports[Deployment], destination: backend/catalog[Deployment], ref1: TCP 8080, ref2: TCP 9080 +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: external/unicorn[Deployment], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: backend/checkout[Deployment], destination: external/unicorn[Deployment], ref1: No Connections, ref2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: backend/recommendation[Deployment], destination: external/unicorn[Deployment], ref1: No Connections, ref2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: backend/reports[Deployment], destination: external/unicorn[Deployment], ref1: No Connections, ref2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: external/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: external/unicorn[Deployment], destination: frontend/webapp[Deployment], ref1: No Connections, ref2: TCP 8080, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: frontend/webapp[Deployment], destination: external/unicorn[Deployment], ref1: No Connections, ref2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: added, source: payments/gateway[Deployment], destination: external/unicorn[Deployment], ref1: No Connections, ref2: UDP 5353, workloads-diff-info: workload external/unicorn[Deployment] added +diff-type: removed, source: frontend/webapp[Deployment], destination: backend/shipping[Deployment], ref1: TCP 8080, ref2: No Connections +diff-type: removed, source: payments/gateway[Deployment], destination: payments/mastercard-processor[Deployment], ref1: TCP 8080, ref2: No Connections, workloads-diff-info: workload payments/mastercard-processor[Deployment] removed +diff-type: removed, source: {ingress-controller}, destination: frontend/asset-cache[Deployment], ref1: TCP 8080, ref2: No Connections \ No newline at end of file diff --git a/tests/acs-security-demos-no-routes/diff_output_from_acs-security-demos.txt b/tests/acs-security-demos-no-routes/diff_output_from_acs-security-demos.txt index 6b00a6c8..4356b2db 100644 --- a/tests/acs-security-demos-no-routes/diff_output_from_acs-security-demos.txt +++ b/tests/acs-security-demos-no-routes/diff_output_from_acs-security-demos.txt @@ -1,3 +1,3 @@ Connectivity diff: -diff-type: removed, source: {ingress-controller}, destination: frontend/asset-cache[Deployment], dir1: TCP 8080, dir2: No Connections -diff-type: removed, source: {ingress-controller}, destination: frontend/webapp[Deployment], dir1: TCP 8080, dir2: No Connections \ No newline at end of file +diff-type: removed, source: {ingress-controller}, destination: frontend/asset-cache[Deployment], ref1: TCP 8080, ref2: No Connections +diff-type: removed, source: {ingress-controller}, destination: frontend/webapp[Deployment], ref1: TCP 8080, ref2: No Connections \ No newline at end of file diff --git a/tests/deny_all_to_from_a_deployment_changed_netpol/diff_output_from_deny_all_to_from_a_deployment.txt b/tests/deny_all_to_from_a_deployment_changed_netpol/diff_output_from_deny_all_to_from_a_deployment.txt index f094cef4..859cdc36 100644 --- a/tests/deny_all_to_from_a_deployment_changed_netpol/diff_output_from_deny_all_to_from_a_deployment.txt +++ b/tests/deny_all_to_from_a_deployment_changed_netpol/diff_output_from_deny_all_to_from_a_deployment.txt @@ -1,2 +1,2 @@ Connectivity diff: -diff-type: added, source: default/deployment2[Deployment], destination: default/deployment1[Deployment], dir1: No Connections, dir2: All Connections \ No newline at end of file +diff-type: added, source: default/deployment2[Deployment], destination: default/deployment1[Deployment], ref1: No Connections, ref2: All Connections \ No newline at end of file diff --git a/tests/ipblockstest_2/diff_output_from_ipblockstest.txt b/tests/ipblockstest_2/diff_output_from_ipblockstest.txt index dd3f174e..3ad887bf 100644 --- a/tests/ipblockstest_2/diff_output_from_ipblockstest.txt +++ b/tests/ipblockstest_2/diff_output_from_ipblockstest.txt @@ -1,29 +1,29 @@ Connectivity diff: -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 \ No newline at end of file +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 \ No newline at end of file diff --git a/tests/ipblockstest_3/diff_output_from_ipblockstest.txt b/tests/ipblockstest_3/diff_output_from_ipblockstest.txt index dd3f174e..3ad887bf 100644 --- a/tests/ipblockstest_3/diff_output_from_ipblockstest.txt +++ b/tests/ipblockstest_3/diff_output_from_ipblockstest.txt @@ -1,29 +1,29 @@ Connectivity diff: -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: TCP 53 -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: TCP 53 \ No newline at end of file +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: TCP 53 +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: TCP 53 \ No newline at end of file diff --git a/tests/ipblockstest_4/diff_output_from_ipblockstest.txt b/tests/ipblockstest_4/diff_output_from_ipblockstest.txt index f5550fc6..c348caa2 100644 --- a/tests/ipblockstest_4/diff_output_from_ipblockstest.txt +++ b/tests/ipblockstest_4/diff_output_from_ipblockstest.txt @@ -1,4726 +1,4726 @@ Connectivity diff: -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: UDP 53, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], dir1: No Connections, dir2: All Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 0.0.0.0-49.49.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 100.0.1.0-100.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 101.0.1.0-101.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 102.0.1.0-102.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 103.0.1.0-103.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 104.0.1.0-104.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 105.0.1.0-105.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 106.0.1.0-106.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 107.1.0.0-107.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 108.0.32.0-108.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 109.0.16.0-109.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 110.0.1.0-110.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 111.0.16.0-111.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 112.0.16.0-112.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 113.0.16.0-113.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 114.0.16.0-114.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 115.0.16.0-115.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 116.0.16.0-116.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 117.0.16.0-117.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 118.0.16.0-118.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 119.0.16.0-119.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 120.0.16.0-120.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 121.0.16.0-121.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 122.0.16.0-122.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 123.0.16.0-123.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 124.0.16.0-124.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 125.0.16.0-125.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 126.0.2.0-126.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 127.0.1.0-127.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 128.0.4.0-128.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 129.0.4.0-129.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 130.0.1.0-130.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 131.0.1.0-131.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 132.0.1.0-132.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 133.0.1.0-133.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 134.0.1.0-134.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 135.0.1.0-135.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 136.0.1.0-136.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 137.0.1.0-137.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 138.0.1.0-138.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 139.0.4.0-139.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 140.0.0.4-140.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 141.0.0.4-141.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 142.0.0.4-142.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 143.0.0.4-143.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 144.0.0.2-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.1-49.50.0.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.101-49.50.0.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.103-49.50.0.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.105-49.50.0.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.107-49.50.0.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.109-49.50.0.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.11-49.50.0.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.111-49.50.0.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.113-49.50.0.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.115-49.50.0.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.117-49.50.0.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.119-49.50.0.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.121-49.50.0.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.123-49.50.0.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.125-49.50.0.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.127-49.50.0.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.129-49.50.0.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.13-49.50.0.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.131-49.50.0.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.133-49.50.0.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.135-49.50.0.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.137-49.50.0.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.139-49.50.0.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.141-49.50.0.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.143-49.50.0.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.145-49.50.0.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.147-49.50.0.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.149-49.50.0.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.15-49.50.0.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.151-49.50.0.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.153-49.50.0.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.155-49.50.0.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.157-49.50.0.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.159-49.50.0.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.161-49.50.0.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.163-49.50.0.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.165-49.50.0.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.167-49.50.0.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.169-49.50.0.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.17-49.50.0.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.171-49.50.0.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.173-49.50.0.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.175-49.50.0.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.177-49.50.0.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.179-49.50.0.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.181-49.50.0.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.183-49.50.0.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.185-49.50.0.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.187-49.50.0.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.189-49.50.0.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.19-49.50.0.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.191-49.50.0.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.193-49.50.0.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.195-49.50.0.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.197-49.50.0.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.199-49.50.0.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.201-49.50.0.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.203-49.50.0.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.205-49.50.0.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.207-49.50.0.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.209-49.50.0.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.21-49.50.0.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.211-49.50.0.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.213-49.50.0.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.215-49.50.0.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.217-49.50.0.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.219-49.50.0.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.221-49.50.0.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.223-49.50.0.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.225-49.50.0.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.227-49.50.0.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.229-49.50.0.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.23-49.50.0.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.231-49.50.0.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.233-49.50.0.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.235-49.50.0.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.237-49.50.0.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.239-49.50.0.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.241-49.50.0.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.243-49.50.0.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.245-49.50.0.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.247-49.50.0.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.249-49.50.0.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.25-49.50.0.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.251-49.50.0.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.253-49.50.0.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.255-49.50.0.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.27-49.50.0.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.29-49.50.0.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.3-49.50.0.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.31-49.50.0.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.33-49.50.0.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.35-49.50.0.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.37-49.50.0.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.39-49.50.0.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.41-49.50.0.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.43-49.50.0.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.45-49.50.0.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.47-49.50.0.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.49-49.50.0.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.5-49.50.0.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.51-49.50.0.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.53-49.50.0.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.55-49.50.0.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.57-49.50.0.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.59-49.50.0.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.61-49.50.0.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.63-49.50.0.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.65-49.50.0.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.67-49.50.0.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.69-49.50.0.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.7-49.50.0.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.71-49.50.0.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.73-49.50.0.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.75-49.50.0.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.77-49.50.0.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.79-49.50.0.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.81-49.50.0.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.83-49.50.0.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.85-49.50.0.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.87-49.50.0.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.89-49.50.0.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.9-49.50.0.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.91-49.50.0.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.93-49.50.0.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.95-49.50.0.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.97-49.50.0.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.99-49.50.0.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.1-49.50.1.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.101-49.50.1.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.103-49.50.1.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.105-49.50.1.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.107-49.50.1.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.109-49.50.1.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.11-49.50.1.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.111-49.50.1.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.113-49.50.1.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.115-49.50.1.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.117-49.50.1.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.119-49.50.1.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.121-49.50.1.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.123-49.50.1.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.125-49.50.1.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.127-49.50.1.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.129-49.50.1.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.13-49.50.1.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.131-49.50.1.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.133-49.50.1.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.135-49.50.1.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.137-49.50.1.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.139-49.50.1.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.141-49.50.1.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.143-49.50.1.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.145-49.50.1.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.147-49.50.1.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.149-49.50.1.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.15-49.50.1.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.151-49.50.1.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.153-49.50.1.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.155-49.50.1.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.157-49.50.1.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.159-49.50.1.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.161-49.50.1.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.163-49.50.1.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.165-49.50.1.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.167-49.50.1.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.169-49.50.1.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.17-49.50.1.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.171-49.50.1.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.173-49.50.1.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.175-49.50.1.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.177-49.50.1.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.179-49.50.1.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.181-49.50.1.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.183-49.50.1.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.185-49.50.1.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.187-49.50.1.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.189-49.50.1.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.19-49.50.1.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.191-49.50.1.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.193-49.50.1.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.195-49.50.1.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.197-49.50.1.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.199-49.50.1.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.201-49.50.1.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.203-49.50.1.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.205-49.50.1.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.207-49.50.1.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.209-49.50.1.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.21-49.50.1.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.211-49.50.1.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.213-49.50.1.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.215-49.50.1.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.217-49.50.1.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.219-49.50.1.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.221-49.50.1.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.223-49.50.1.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.225-49.50.1.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.227-49.50.1.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.229-49.50.1.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.23-49.50.1.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.231-49.50.1.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.233-49.50.1.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.235-49.50.1.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.237-49.50.1.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.239-49.50.1.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.241-49.50.1.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.243-49.50.1.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.245-49.50.1.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.247-49.50.1.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.249-49.50.1.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.25-49.50.1.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.251-49.50.1.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.253-49.50.1.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.255-49.50.1.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.27-49.50.1.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.29-49.50.1.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.3-49.50.1.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.31-49.50.1.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.33-49.50.1.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.35-49.50.1.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.37-49.50.1.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.39-49.50.1.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.41-49.50.1.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.43-49.50.1.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.45-49.50.1.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.47-49.50.1.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.49-49.50.1.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.5-49.50.1.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.51-49.50.1.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.53-49.50.1.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.55-49.50.1.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.57-49.50.1.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.59-49.50.1.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.61-49.50.1.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.63-49.50.1.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.65-49.50.1.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.67-49.50.1.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.69-49.50.1.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.7-49.50.1.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.71-49.50.1.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.73-49.50.1.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.75-49.50.1.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.77-49.50.1.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.79-49.50.1.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.81-49.50.1.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.83-49.50.1.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.85-49.50.1.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.87-49.50.1.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.89-49.50.1.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.9-49.50.1.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.91-49.50.1.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.93-49.50.1.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.95-49.50.1.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.97-49.50.1.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.99-49.50.1.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.1-49.50.2.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.101-49.50.2.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.103-49.50.2.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.105-49.50.2.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.107-49.50.2.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.109-49.50.2.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.11-49.50.2.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.111-49.50.2.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.113-49.50.2.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.115-49.50.2.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.117-49.50.2.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.119-49.50.2.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.121-49.50.2.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.123-49.50.2.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.125-49.50.2.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.127-49.50.2.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.129-49.50.2.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.13-49.50.2.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.131-49.50.2.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.133-49.50.2.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.135-49.50.2.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.137-49.50.2.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.139-49.50.2.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.141-49.50.2.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.143-49.50.2.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.145-49.50.2.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.147-49.50.2.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.149-49.50.2.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.15-49.50.2.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.151-49.50.2.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.153-49.50.2.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.155-49.50.2.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.157-49.50.2.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.159-49.50.2.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.161-49.50.2.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.163-49.50.2.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.165-49.50.2.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.167-49.50.2.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.169-49.50.2.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.17-49.50.2.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.171-49.50.2.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.173-49.50.2.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.175-49.50.2.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.177-49.50.2.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.179-49.50.2.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.181-49.50.2.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.183-49.50.2.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.185-49.50.2.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.187-49.50.2.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.189-49.50.2.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.19-49.50.2.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.191-49.50.2.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.193-49.50.2.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.195-49.50.2.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.197-49.50.2.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.199-49.50.2.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.201-49.50.2.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.203-49.50.2.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.205-49.50.2.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.207-49.50.2.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.209-49.50.2.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.21-49.50.2.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.211-49.50.2.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.213-49.50.2.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.215-49.50.2.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.217-49.50.2.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.219-49.50.2.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.221-49.50.2.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.223-49.50.2.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.225-49.50.2.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.227-49.50.2.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.229-49.50.2.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.23-49.50.2.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.231-49.50.2.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.233-49.50.2.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.235-49.50.2.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.237-49.50.2.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.239-49.50.2.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.241-49.50.2.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.243-49.50.2.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.245-49.50.2.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.247-49.50.2.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.249-49.50.2.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.25-49.50.2.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.251-49.50.2.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.253-49.50.2.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.255-49.50.2.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.27-49.50.2.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.29-49.50.2.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.3-49.50.2.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.31-49.50.2.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.33-49.50.2.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.35-49.50.2.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.37-49.50.2.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.39-49.50.2.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.41-49.50.2.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.43-49.50.2.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.45-49.50.2.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.47-49.50.2.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.49-49.50.2.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.5-49.50.2.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.51-49.50.2.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.53-49.50.2.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.55-49.50.2.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.57-49.50.2.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.59-49.50.2.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.61-49.50.2.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.63-49.50.2.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.65-49.50.2.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.67-49.50.2.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.69-49.50.2.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.7-49.50.2.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.71-49.50.2.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.73-49.50.2.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.75-49.50.2.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.77-49.50.2.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.79-49.50.2.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.81-49.50.2.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.83-49.50.2.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.85-49.50.2.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.87-49.50.2.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.89-49.50.2.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.9-49.50.2.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.91-49.50.2.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.93-49.50.2.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.95-49.50.2.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.97-49.50.2.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.99-49.50.2.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.1-49.50.3.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.101-49.50.3.101, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.103-49.50.3.103, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.105-49.50.3.105, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.107-49.50.3.107, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.109-49.50.3.109, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.11-49.50.3.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.111-49.50.3.111, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.113-49.50.3.113, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.115-49.50.3.115, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.117-49.50.3.117, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.119-49.50.3.119, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.121-49.50.3.121, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.123-49.50.3.123, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.125-49.50.3.125, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.127-49.50.3.127, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.129-49.50.3.129, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.13-49.50.3.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.131-49.50.3.131, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.133-49.50.3.133, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.135-49.50.3.135, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.137-49.50.3.137, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.139-49.50.3.139, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.141-49.50.3.141, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.143-49.50.3.143, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.145-49.50.3.145, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.147-49.50.3.147, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.149-49.50.3.149, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.15-49.50.3.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.151-49.50.3.151, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.153-49.50.3.153, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.155-49.50.3.155, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.157-49.50.3.157, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.159-49.50.3.159, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.161-49.50.3.161, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.163-49.50.3.163, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.165-49.50.3.165, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.167-49.50.3.167, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.169-49.50.3.169, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.17-49.50.3.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.171-49.50.3.171, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.173-49.50.3.173, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.175-49.50.3.175, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.177-49.50.3.177, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.179-49.50.3.179, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.181-49.50.3.181, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.183-49.50.3.183, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.185-49.50.3.185, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.187-49.50.3.187, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.189-49.50.3.189, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.19-49.50.3.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.191-49.50.3.191, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.193-49.50.3.193, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.195-49.50.3.195, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.197-49.50.3.197, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.199-49.50.3.199, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.201-49.50.3.201, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.203-49.50.3.203, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.205-49.50.3.205, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.207-49.50.3.207, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.209-49.50.3.209, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.21-49.50.3.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.211-49.50.3.211, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.213-49.50.3.213, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.215-49.50.3.215, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.217-49.50.3.217, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.219-49.50.3.219, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.221-49.50.3.221, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.223-49.50.3.223, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.225-49.50.3.225, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.227-49.50.3.227, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.229-49.50.3.229, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.23-49.50.3.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.231-49.50.3.231, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.233-49.50.3.233, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.235-49.50.3.235, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.237-49.50.3.237, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.239-49.50.3.239, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.241-49.50.3.241, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.243-49.50.3.243, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.245-49.50.3.245, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.247-49.50.3.247, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.249-49.50.3.249, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.25-49.50.3.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.251-49.50.3.251, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.253-49.50.3.253, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.255-49.50.3.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.27-49.50.3.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.29-49.50.3.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.3-49.50.3.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.31-49.50.3.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.33-49.50.3.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.35-49.50.3.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.37-49.50.3.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.39-49.50.3.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.41-49.50.3.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.43-49.50.3.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.45-49.50.3.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.47-49.50.3.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.49-49.50.3.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.5-49.50.3.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.51-49.50.3.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.53-49.50.3.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.55-49.50.3.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.57-49.50.3.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.59-49.50.3.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.61-49.50.3.61, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.63-49.50.3.63, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.65-49.50.3.65, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.67-49.50.3.67, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.69-49.50.3.69, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.7-49.50.3.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.71-49.50.3.71, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.73-49.50.3.73, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.75-49.50.3.75, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.77-49.50.3.77, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.79-49.50.3.79, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.81-49.50.3.81, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.83-49.50.3.83, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.85-49.50.3.85, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.87-49.50.3.87, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.89-49.50.3.89, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.9-49.50.3.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.91-49.50.3.91, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.93-49.50.3.93, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.95-49.50.3.95, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.97-49.50.3.97, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.99-49.50.3.99, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.1-49.50.4.1, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.11-49.50.4.11, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.13-49.50.4.13, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.15-49.50.4.15, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.17-49.50.4.17, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.19-49.50.4.19, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.21-49.50.4.21, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.23-49.50.4.23, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.25-49.50.4.25, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.27-49.50.4.27, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.29-49.50.4.29, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.3-49.50.4.3, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.31-49.50.4.31, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.33-49.50.4.33, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.35-49.50.4.35, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.37-49.50.4.37, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.39-49.50.4.39, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.41-49.50.4.41, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.43-49.50.4.43, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.45-49.50.4.45, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.47-49.50.4.47, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.49-49.50.4.49, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.5-49.50.4.5, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.51-49.50.4.51, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.53-49.50.4.53, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.55-49.50.4.55, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.57-49.50.4.57, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.59-49.50.4.59, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.61-49.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.7-49.50.4.7, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.9-49.50.4.9, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 51.0.0.16-51.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 52.0.0.16-52.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 53.0.0.16-53.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 54.0.0.32-54.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 55.0.0.32-55.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 56.0.0.32-56.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 57.0.0.32-57.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 58.0.0.16-58.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 59.0.0.16-59.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 60.0.0.32-60.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 61.0.0.32-61.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 62.0.0.8-62.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 63.0.0.8-63.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 64.0.0.8-64.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 65.0.2.0-65.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 66.0.2.0-66.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 67.0.2.0-67.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 68.0.2.0-68.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 69.0.1.0-69.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 70.0.2.0-70.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 71.0.2.0-71.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 72.0.2.0-72.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 73.0.2.0-73.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 74.0.2.0-74.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 75.0.1.0-75.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 76.0.2.0-76.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 77.0.2.0-77.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 78.0.2.0-78.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 79.0.1.0-79.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 80.0.1.0-80.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 81.0.1.0-81.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 82.0.1.0-82.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 83.0.1.0-83.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 84.0.1.0-84.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 85.0.1.0-85.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 86.0.1.0-86.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 87.0.1.0-87.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 88.0.1.0-88.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 89.0.1.0-89.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 90.0.1.0-90.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 91.0.1.0-91.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 92.0.1.0-92.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 93.0.1.0-93.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 94.0.1.0-94.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 95.0.1.0-95.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 96.0.1.0-96.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 97.0.1.0-97.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 98.0.1.0-98.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 99.0.1.0-99.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-agents[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/calico-node[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], dir1: All Connections, dir2: No Connections \ No newline at end of file +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 0.0.0.0-9.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 11.0.0.0-172.20.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.22.0.0-172.29.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: changed, source: 172.31.0.0-255.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: UDP 53, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.0.0.0-10.255.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.21.0.0-172.21.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 172.30.0.0-172.30.255.255, destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-agent[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents-analyzer[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-agents[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/calico-node[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/calico-node-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-keepalived-watcher[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: kube-system/ibm-kube-fluentd[DaemonSet], destination: kube-system/vpn-858f6d9777[ReplicaSet], ref1: No Connections, ref2: All Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/calico-node-tier[DaemonSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-keepalived-watcher[DaemonSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-kube-fluentd-with-tier[DaemonSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/ibm-storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 0.0.0.0-49.49.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 100.0.1.0-100.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 101.0.1.0-101.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 102.0.1.0-102.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 103.0.1.0-103.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 104.0.1.0-104.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 105.0.1.0-105.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 106.0.1.0-106.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 107.1.0.0-107.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 108.0.32.0-108.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 109.0.16.0-109.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 110.0.1.0-110.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 111.0.16.0-111.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 112.0.16.0-112.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 113.0.16.0-113.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 114.0.16.0-114.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 115.0.16.0-115.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 116.0.16.0-116.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 117.0.16.0-117.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 118.0.16.0-118.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 119.0.16.0-119.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 120.0.16.0-120.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 121.0.16.0-121.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 122.0.16.0-122.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 123.0.16.0-123.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 124.0.16.0-124.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 125.0.16.0-125.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 126.0.2.0-126.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 127.0.1.0-127.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 128.0.4.0-128.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 129.0.4.0-129.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 130.0.1.0-130.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 131.0.1.0-131.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 132.0.1.0-132.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 133.0.1.0-133.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 134.0.1.0-134.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 135.0.1.0-135.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 136.0.1.0-136.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 137.0.1.0-137.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 138.0.1.0-138.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 139.0.4.0-139.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 140.0.0.4-140.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 141.0.0.4-141.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 142.0.0.4-142.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 143.0.0.4-143.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 144.0.0.2-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.1-49.50.0.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.101-49.50.0.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.103-49.50.0.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.105-49.50.0.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.107-49.50.0.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.109-49.50.0.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.11-49.50.0.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.111-49.50.0.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.113-49.50.0.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.115-49.50.0.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.117-49.50.0.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.119-49.50.0.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.121-49.50.0.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.123-49.50.0.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.125-49.50.0.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.127-49.50.0.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.129-49.50.0.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.13-49.50.0.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.131-49.50.0.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.133-49.50.0.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.135-49.50.0.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.137-49.50.0.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.139-49.50.0.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.141-49.50.0.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.143-49.50.0.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.145-49.50.0.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.147-49.50.0.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.149-49.50.0.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.15-49.50.0.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.151-49.50.0.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.153-49.50.0.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.155-49.50.0.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.157-49.50.0.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.159-49.50.0.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.161-49.50.0.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.163-49.50.0.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.165-49.50.0.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.167-49.50.0.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.169-49.50.0.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.17-49.50.0.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.171-49.50.0.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.173-49.50.0.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.175-49.50.0.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.177-49.50.0.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.179-49.50.0.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.181-49.50.0.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.183-49.50.0.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.185-49.50.0.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.187-49.50.0.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.189-49.50.0.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.19-49.50.0.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.191-49.50.0.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.193-49.50.0.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.195-49.50.0.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.197-49.50.0.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.199-49.50.0.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.201-49.50.0.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.203-49.50.0.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.205-49.50.0.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.207-49.50.0.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.209-49.50.0.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.21-49.50.0.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.211-49.50.0.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.213-49.50.0.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.215-49.50.0.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.217-49.50.0.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.219-49.50.0.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.221-49.50.0.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.223-49.50.0.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.225-49.50.0.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.227-49.50.0.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.229-49.50.0.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.23-49.50.0.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.231-49.50.0.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.233-49.50.0.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.235-49.50.0.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.237-49.50.0.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.239-49.50.0.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.241-49.50.0.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.243-49.50.0.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.245-49.50.0.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.247-49.50.0.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.249-49.50.0.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.25-49.50.0.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.251-49.50.0.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.253-49.50.0.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.255-49.50.0.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.27-49.50.0.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.29-49.50.0.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.3-49.50.0.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.31-49.50.0.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.33-49.50.0.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.35-49.50.0.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.37-49.50.0.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.39-49.50.0.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.41-49.50.0.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.43-49.50.0.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.45-49.50.0.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.47-49.50.0.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.49-49.50.0.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.5-49.50.0.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.51-49.50.0.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.53-49.50.0.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.55-49.50.0.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.57-49.50.0.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.59-49.50.0.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.61-49.50.0.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.63-49.50.0.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.65-49.50.0.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.67-49.50.0.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.69-49.50.0.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.7-49.50.0.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.71-49.50.0.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.73-49.50.0.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.75-49.50.0.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.77-49.50.0.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.79-49.50.0.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.81-49.50.0.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.83-49.50.0.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.85-49.50.0.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.87-49.50.0.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.89-49.50.0.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.9-49.50.0.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.91-49.50.0.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.93-49.50.0.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.95-49.50.0.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.97-49.50.0.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.0.99-49.50.0.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.1-49.50.1.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.101-49.50.1.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.103-49.50.1.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.105-49.50.1.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.107-49.50.1.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.109-49.50.1.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.11-49.50.1.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.111-49.50.1.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.113-49.50.1.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.115-49.50.1.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.117-49.50.1.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.119-49.50.1.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.121-49.50.1.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.123-49.50.1.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.125-49.50.1.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.127-49.50.1.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.129-49.50.1.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.13-49.50.1.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.131-49.50.1.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.133-49.50.1.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.135-49.50.1.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.137-49.50.1.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.139-49.50.1.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.141-49.50.1.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.143-49.50.1.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.145-49.50.1.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.147-49.50.1.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.149-49.50.1.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.15-49.50.1.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.151-49.50.1.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.153-49.50.1.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.155-49.50.1.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.157-49.50.1.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.159-49.50.1.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.161-49.50.1.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.163-49.50.1.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.165-49.50.1.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.167-49.50.1.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.169-49.50.1.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.17-49.50.1.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.171-49.50.1.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.173-49.50.1.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.175-49.50.1.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.177-49.50.1.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.179-49.50.1.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.181-49.50.1.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.183-49.50.1.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.185-49.50.1.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.187-49.50.1.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.189-49.50.1.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.19-49.50.1.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.191-49.50.1.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.193-49.50.1.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.195-49.50.1.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.197-49.50.1.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.199-49.50.1.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.201-49.50.1.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.203-49.50.1.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.205-49.50.1.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.207-49.50.1.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.209-49.50.1.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.21-49.50.1.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.211-49.50.1.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.213-49.50.1.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.215-49.50.1.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.217-49.50.1.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.219-49.50.1.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.221-49.50.1.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.223-49.50.1.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.225-49.50.1.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.227-49.50.1.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.229-49.50.1.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.23-49.50.1.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.231-49.50.1.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.233-49.50.1.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.235-49.50.1.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.237-49.50.1.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.239-49.50.1.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.241-49.50.1.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.243-49.50.1.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.245-49.50.1.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.247-49.50.1.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.249-49.50.1.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.25-49.50.1.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.251-49.50.1.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.253-49.50.1.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.255-49.50.1.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.27-49.50.1.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.29-49.50.1.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.3-49.50.1.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.31-49.50.1.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.33-49.50.1.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.35-49.50.1.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.37-49.50.1.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.39-49.50.1.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.41-49.50.1.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.43-49.50.1.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.45-49.50.1.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.47-49.50.1.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.49-49.50.1.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.5-49.50.1.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.51-49.50.1.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.53-49.50.1.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.55-49.50.1.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.57-49.50.1.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.59-49.50.1.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.61-49.50.1.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.63-49.50.1.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.65-49.50.1.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.67-49.50.1.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.69-49.50.1.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.7-49.50.1.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.71-49.50.1.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.73-49.50.1.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.75-49.50.1.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.77-49.50.1.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.79-49.50.1.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.81-49.50.1.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.83-49.50.1.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.85-49.50.1.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.87-49.50.1.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.89-49.50.1.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.9-49.50.1.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.91-49.50.1.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.93-49.50.1.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.95-49.50.1.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.97-49.50.1.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.1.99-49.50.1.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.1-49.50.2.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.101-49.50.2.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.103-49.50.2.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.105-49.50.2.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.107-49.50.2.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.109-49.50.2.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.11-49.50.2.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.111-49.50.2.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.113-49.50.2.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.115-49.50.2.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.117-49.50.2.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.119-49.50.2.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.121-49.50.2.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.123-49.50.2.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.125-49.50.2.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.127-49.50.2.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.129-49.50.2.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.13-49.50.2.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.131-49.50.2.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.133-49.50.2.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.135-49.50.2.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.137-49.50.2.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.139-49.50.2.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.141-49.50.2.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.143-49.50.2.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.145-49.50.2.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.147-49.50.2.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.149-49.50.2.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.15-49.50.2.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.151-49.50.2.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.153-49.50.2.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.155-49.50.2.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.157-49.50.2.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.159-49.50.2.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.161-49.50.2.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.163-49.50.2.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.165-49.50.2.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.167-49.50.2.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.169-49.50.2.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.17-49.50.2.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.171-49.50.2.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.173-49.50.2.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.175-49.50.2.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.177-49.50.2.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.179-49.50.2.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.181-49.50.2.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.183-49.50.2.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.185-49.50.2.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.187-49.50.2.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.189-49.50.2.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.19-49.50.2.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.191-49.50.2.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.193-49.50.2.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.195-49.50.2.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.197-49.50.2.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.199-49.50.2.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.201-49.50.2.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.203-49.50.2.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.205-49.50.2.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.207-49.50.2.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.209-49.50.2.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.21-49.50.2.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.211-49.50.2.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.213-49.50.2.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.215-49.50.2.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.217-49.50.2.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.219-49.50.2.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.221-49.50.2.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.223-49.50.2.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.225-49.50.2.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.227-49.50.2.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.229-49.50.2.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.23-49.50.2.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.231-49.50.2.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.233-49.50.2.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.235-49.50.2.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.237-49.50.2.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.239-49.50.2.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.241-49.50.2.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.243-49.50.2.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.245-49.50.2.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.247-49.50.2.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.249-49.50.2.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.25-49.50.2.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.251-49.50.2.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.253-49.50.2.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.255-49.50.2.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.27-49.50.2.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.29-49.50.2.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.3-49.50.2.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.31-49.50.2.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.33-49.50.2.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.35-49.50.2.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.37-49.50.2.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.39-49.50.2.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.41-49.50.2.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.43-49.50.2.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.45-49.50.2.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.47-49.50.2.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.49-49.50.2.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.5-49.50.2.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.51-49.50.2.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.53-49.50.2.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.55-49.50.2.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.57-49.50.2.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.59-49.50.2.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.61-49.50.2.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.63-49.50.2.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.65-49.50.2.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.67-49.50.2.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.69-49.50.2.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.7-49.50.2.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.71-49.50.2.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.73-49.50.2.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.75-49.50.2.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.77-49.50.2.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.79-49.50.2.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.81-49.50.2.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.83-49.50.2.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.85-49.50.2.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.87-49.50.2.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.89-49.50.2.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.9-49.50.2.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.91-49.50.2.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.93-49.50.2.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.95-49.50.2.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.97-49.50.2.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.2.99-49.50.2.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.1-49.50.3.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.101-49.50.3.101, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.103-49.50.3.103, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.105-49.50.3.105, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.107-49.50.3.107, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.109-49.50.3.109, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.11-49.50.3.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.111-49.50.3.111, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.113-49.50.3.113, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.115-49.50.3.115, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.117-49.50.3.117, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.119-49.50.3.119, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.121-49.50.3.121, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.123-49.50.3.123, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.125-49.50.3.125, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.127-49.50.3.127, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.129-49.50.3.129, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.13-49.50.3.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.131-49.50.3.131, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.133-49.50.3.133, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.135-49.50.3.135, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.137-49.50.3.137, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.139-49.50.3.139, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.141-49.50.3.141, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.143-49.50.3.143, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.145-49.50.3.145, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.147-49.50.3.147, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.149-49.50.3.149, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.15-49.50.3.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.151-49.50.3.151, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.153-49.50.3.153, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.155-49.50.3.155, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.157-49.50.3.157, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.159-49.50.3.159, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.161-49.50.3.161, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.163-49.50.3.163, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.165-49.50.3.165, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.167-49.50.3.167, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.169-49.50.3.169, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.17-49.50.3.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.171-49.50.3.171, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.173-49.50.3.173, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.175-49.50.3.175, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.177-49.50.3.177, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.179-49.50.3.179, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.181-49.50.3.181, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.183-49.50.3.183, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.185-49.50.3.185, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.187-49.50.3.187, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.189-49.50.3.189, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.19-49.50.3.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.191-49.50.3.191, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.193-49.50.3.193, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.195-49.50.3.195, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.197-49.50.3.197, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.199-49.50.3.199, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.201-49.50.3.201, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.203-49.50.3.203, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.205-49.50.3.205, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.207-49.50.3.207, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.209-49.50.3.209, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.21-49.50.3.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.211-49.50.3.211, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.213-49.50.3.213, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.215-49.50.3.215, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.217-49.50.3.217, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.219-49.50.3.219, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.221-49.50.3.221, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.223-49.50.3.223, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.225-49.50.3.225, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.227-49.50.3.227, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.229-49.50.3.229, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.23-49.50.3.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.231-49.50.3.231, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.233-49.50.3.233, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.235-49.50.3.235, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.237-49.50.3.237, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.239-49.50.3.239, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.241-49.50.3.241, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.243-49.50.3.243, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.245-49.50.3.245, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.247-49.50.3.247, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.249-49.50.3.249, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.25-49.50.3.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.251-49.50.3.251, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.253-49.50.3.253, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.255-49.50.3.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.27-49.50.3.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.29-49.50.3.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.3-49.50.3.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.31-49.50.3.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.33-49.50.3.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.35-49.50.3.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.37-49.50.3.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.39-49.50.3.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.41-49.50.3.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.43-49.50.3.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.45-49.50.3.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.47-49.50.3.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.49-49.50.3.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.5-49.50.3.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.51-49.50.3.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.53-49.50.3.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.55-49.50.3.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.57-49.50.3.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.59-49.50.3.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.61-49.50.3.61, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.63-49.50.3.63, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.65-49.50.3.65, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.67-49.50.3.67, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.69-49.50.3.69, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.7-49.50.3.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.71-49.50.3.71, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.73-49.50.3.73, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.75-49.50.3.75, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.77-49.50.3.77, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.79-49.50.3.79, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.81-49.50.3.81, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.83-49.50.3.83, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.85-49.50.3.85, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.87-49.50.3.87, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.89-49.50.3.89, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.9-49.50.3.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.91-49.50.3.91, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.93-49.50.3.93, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.95-49.50.3.95, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.97-49.50.3.97, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.3.99-49.50.3.99, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.1-49.50.4.1, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.11-49.50.4.11, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.13-49.50.4.13, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.15-49.50.4.15, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.17-49.50.4.17, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.19-49.50.4.19, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.21-49.50.4.21, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.23-49.50.4.23, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.25-49.50.4.25, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.27-49.50.4.27, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.29-49.50.4.29, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.3-49.50.4.3, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.31-49.50.4.31, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.33-49.50.4.33, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.35-49.50.4.35, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.37-49.50.4.37, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.39-49.50.4.39, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.41-49.50.4.41, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.43-49.50.4.43, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.45-49.50.4.45, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.47-49.50.4.47, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.49-49.50.4.49, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.5-49.50.4.5, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.51-49.50.4.51, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.53-49.50.4.53, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.55-49.50.4.55, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.57-49.50.4.57, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.59-49.50.4.59, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.61-49.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.7-49.50.4.7, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 49.50.4.9-49.50.4.9, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 51.0.0.16-51.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 52.0.0.16-52.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 53.0.0.16-53.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 54.0.0.32-54.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 55.0.0.32-55.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 56.0.0.32-56.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 57.0.0.32-57.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 58.0.0.16-58.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 59.0.0.16-59.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 60.0.0.32-60.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 61.0.0.32-61.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 62.0.0.8-62.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 63.0.0.8-63.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 64.0.0.8-64.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 65.0.2.0-65.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 66.0.2.0-66.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 67.0.2.0-67.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 68.0.2.0-68.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 69.0.1.0-69.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 70.0.2.0-70.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 71.0.2.0-71.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 72.0.2.0-72.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 73.0.2.0-73.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 74.0.2.0-74.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 75.0.1.0-75.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 76.0.2.0-76.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 77.0.2.0-77.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 78.0.2.0-78.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 79.0.1.0-79.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 80.0.1.0-80.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 81.0.1.0-81.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 82.0.1.0-82.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 83.0.1.0-83.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 84.0.1.0-84.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 85.0.1.0-85.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 86.0.1.0-86.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 87.0.1.0-87.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 88.0.1.0-88.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 89.0.1.0-89.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 90.0.1.0-90.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 91.0.1.0-91.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 92.0.1.0-92.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 93.0.1.0-93.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 94.0.1.0-94.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 95.0.1.0-95.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 96.0.1.0-96.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 97.0.1.0-97.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 98.0.1.0-98.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: 99.0.1.0-99.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-agents-agent[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-agents-analyzer[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-agents[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: default/cognetive-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-10-5c9dd7c9c[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: ibm-system/ibm-cloud-provider-ip-169-60-164-14-6d448884df[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/calico-node[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/heapster-7df8cb8c66[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/ibm-keepalived-watcher-for-demo[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system/ibm-kube-fluentd[DaemonSet], ref1: All Connections, ref2: No Connections \ No newline at end of file diff --git a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.csv b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.csv index 9bdd2504..8fd82870 100644 --- a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.csv +++ b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.csv @@ -1,4 +1,4 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info changed,default/reviews-v1-545db77b95[ReplicaSet],default/productpage-v1-6b746f74dc[ReplicaSet],All Connections,TCP 9080, changed,default/reviews-v1-545db77b95[ReplicaSet],default/ratings-v1-b6994bb9[ReplicaSet],All Connections,TCP 9080, changed,default/reviews-v2-7bf8c9648f[ReplicaSet],default/productpage-v1-6b746f74dc[ReplicaSet],All Connections,TCP 9080, diff --git a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.dot b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.dot index e6880553..1ce7b4b6 100644 --- a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.dot +++ b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.dot @@ -35,20 +35,20 @@ digraph { "default/ratings-v1-b6994bb9[ReplicaSet]" -> "default/reviews-v3-84779c7bbc[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v1-545db77b95[ReplicaSet]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/details-v1-79f774bdb9[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] - "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/productpage-v1-6b746f74dc[ReplicaSet]" [label="TCP 9080 (old: All Connections)" color="magenta" fontcolor="magenta"] - "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/ratings-v1-b6994bb9[ReplicaSet]" [label="TCP 9080 (old: All Connections)" color="magenta" fontcolor="magenta"] + "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/productpage-v1-6b746f74dc[ReplicaSet]" [label="TCP 9080 (ref1: All Connections)" color="magenta" fontcolor="magenta"] + "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/ratings-v1-b6994bb9[ReplicaSet]" [label="TCP 9080 (ref1: All Connections)" color="magenta" fontcolor="magenta"] "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/reviews-v2-7bf8c9648f[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v1-545db77b95[ReplicaSet]" -> "default/reviews-v3-84779c7bbc[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/details-v1-79f774bdb9[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] - "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/productpage-v1-6b746f74dc[ReplicaSet]" [label="TCP 9080 (old: All Connections)" color="magenta" fontcolor="magenta"] - "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/ratings-v1-b6994bb9[ReplicaSet]" [label="TCP 9080 (old: All Connections)" color="magenta" fontcolor="magenta"] + "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/productpage-v1-6b746f74dc[ReplicaSet]" [label="TCP 9080 (ref1: All Connections)" color="magenta" fontcolor="magenta"] + "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/ratings-v1-b6994bb9[ReplicaSet]" [label="TCP 9080 (ref1: All Connections)" color="magenta" fontcolor="magenta"] "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/reviews-v1-545db77b95[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v2-7bf8c9648f[ReplicaSet]" -> "default/reviews-v3-84779c7bbc[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/details-v1-79f774bdb9[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] - "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/productpage-v1-6b746f74dc[ReplicaSet]" [label="TCP 9080 (old: All Connections)" color="magenta" fontcolor="magenta"] - "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/ratings-v1-b6994bb9[ReplicaSet]" [label="TCP 9080 (old: All Connections)" color="magenta" fontcolor="magenta"] + "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/productpage-v1-6b746f74dc[ReplicaSet]" [label="TCP 9080 (ref1: All Connections)" color="magenta" fontcolor="magenta"] + "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/ratings-v1-b6994bb9[ReplicaSet]" [label="TCP 9080 (ref1: All Connections)" color="magenta" fontcolor="magenta"] "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/reviews-v1-545db77b95[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/reviews-v3-84779c7bbc[ReplicaSet]" -> "default/reviews-v2-7bf8c9648f[ReplicaSet]" [label="All Connections" color="red2" fontcolor="red2"] "default/unicorn[Deployment]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="#008000" fontcolor="#008000"] diff --git a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.md b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.md index 22702624..fcc5287e 100644 --- a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.md +++ b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | changed | default/reviews-v1-545db77b95[ReplicaSet] | default/productpage-v1-6b746f74dc[ReplicaSet] | All Connections | TCP 9080 | | | changed | default/reviews-v1-545db77b95[ReplicaSet] | default/ratings-v1-b6994bb9[ReplicaSet] | All Connections | TCP 9080 | | diff --git a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.txt b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.txt index 81b5afd0..18d1573a 100644 --- a/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.txt +++ b/tests/k8s_ingress_test_new/diff_output_from_k8s_ingress_test.txt @@ -1,47 +1,47 @@ Connectivity diff: -diff-type: changed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], dir1: All Connections, dir2: TCP 9080 -diff-type: changed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], dir1: All Connections, dir2: TCP 9080 -diff-type: changed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], dir1: All Connections, dir2: TCP 9080 -diff-type: changed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], dir1: All Connections, dir2: TCP 9080 -diff-type: changed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], dir1: All Connections, dir2: TCP 9080 -diff-type: changed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], dir1: All Connections, dir2: TCP 9080 -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: added, source: default/unicorn[Deployment], destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: No Connections, dir2: TCP 9080, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/productpage-v1-6b746f74dc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/ratings-v1-b6994bb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/reviews-v1-545db77b95[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/reviews-v2-7bf8c9648f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/reviews-v3-84779c7bbc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], dir1: All Connections, dir2: No Connections -diff-type: added, source: {ingress-controller}, destination: default/unicorn[Deployment], dir1: No Connections, dir2: TCP 8080, workloads-diff-info: workload default/unicorn[Deployment] added \ No newline at end of file +diff-type: changed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], ref1: All Connections, ref2: TCP 9080 +diff-type: changed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], ref1: All Connections, ref2: TCP 9080 +diff-type: changed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], ref1: All Connections, ref2: TCP 9080 +diff-type: changed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], ref1: All Connections, ref2: TCP 9080 +diff-type: changed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], ref1: All Connections, ref2: TCP 9080 +diff-type: changed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], ref1: All Connections, ref2: TCP 9080 +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: added, source: default/unicorn[Deployment], destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: No Connections, ref2: TCP 9080, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/productpage-v1-6b746f74dc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/ratings-v1-b6994bb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/reviews-v1-545db77b95[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/reviews-v2-7bf8c9648f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/reviews-v3-84779c7bbc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/details-v1-79f774bdb9[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/ratings-v1-b6994bb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productpage-v1-6b746f74dc[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/productpage-v1-6b746f74dc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/ratings-v1-b6994bb9[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v1-545db77b95[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v2-7bf8c9648f[ReplicaSet], destination: default/reviews-v3-84779c7bbc[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/details-v1-79f774bdb9[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/reviews-v1-545db77b95[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/reviews-v3-84779c7bbc[ReplicaSet], destination: default/reviews-v2-7bf8c9648f[ReplicaSet], ref1: All Connections, ref2: No Connections +diff-type: added, source: {ingress-controller}, destination: default/unicorn[Deployment], ref1: No Connections, ref2: TCP 8080, workloads-diff-info: workload default/unicorn[Deployment] added \ No newline at end of file diff --git a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.csv b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.csv index 654271b1..037ff78e 100644 --- a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.csv +++ b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.csv @@ -1,2 +1,2 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info changed,{ingress-controller},ingressworld/ingress-world-multiple-ports[Deployment],"TCP 8050,8090","TCP 8000,8090", diff --git a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.dot b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.dot index 027a2c57..b6cc834c 100644 --- a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.dot +++ b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.dot @@ -4,7 +4,7 @@ digraph { "{ingress-controller}" [label="{ingress-controller}" color="blue" fontcolor="blue"] "0.0.0.0-255.255.255.255" -> "ingressworld/ingress-world-multiple-ports[Deployment]" [label="All Connections" color="grey" fontcolor="grey"] "ingressworld/ingress-world-multiple-ports[Deployment]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="grey" fontcolor="grey"] - "{ingress-controller}" -> "ingressworld/ingress-world-multiple-ports[Deployment]" [label="TCP 8000,8090 (old: TCP 8050,8090)" color="magenta" fontcolor="magenta"] + "{ingress-controller}" -> "ingressworld/ingress-world-multiple-ports[Deployment]" [label="TCP 8000,8090 (ref1: TCP 8050,8090)" color="magenta" fontcolor="magenta"] nodesep=0.5 subgraph cluster_legend { label="Legend" diff --git a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.md b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.md index 278caf28..ac40006f 100644 --- a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.md +++ b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.md @@ -1,3 +1,3 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | changed | {ingress-controller} | ingressworld/ingress-world-multiple-ports[Deployment] | TCP 8050,8090 | TCP 8000,8090 | | \ No newline at end of file diff --git a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.txt b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.txt index b5530a43..23433a6d 100644 --- a/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.txt +++ b/tests/multiple_ingress_objects_with_different_ports_new/diff_output_from_multiple_ingress_objects_with_different_ports.txt @@ -1,2 +1,2 @@ Connectivity diff: -diff-type: changed, source: {ingress-controller}, destination: ingressworld/ingress-world-multiple-ports[Deployment], dir1: TCP 8050,8090, dir2: TCP 8000,8090 \ No newline at end of file +diff-type: changed, source: {ingress-controller}, destination: ingressworld/ingress-world-multiple-ports[Deployment], ref1: TCP 8050,8090, ref2: TCP 8000,8090 \ No newline at end of file diff --git a/tests/multiple_topology_resources_2/diff_output_from_multiple_topology_resources_1.txt b/tests/multiple_topology_resources_2/diff_output_from_multiple_topology_resources_1.txt index 4af6c1cd..90a4ec6d 100644 --- a/tests/multiple_topology_resources_2/diff_output_from_multiple_topology_resources_1.txt +++ b/tests/multiple_topology_resources_2/diff_output_from_multiple_topology_resources_1.txt @@ -1,3 +1,3 @@ Connectivity diff: -diff-type: changed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], dir1: TCP 8080, dir2: All Connections -diff-type: changed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], dir1: All Connections, dir2: TCP 8080,9090,UDP 8080 \ No newline at end of file +diff-type: changed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], ref1: TCP 8080, ref2: All Connections +diff-type: changed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], ref1: All Connections, ref2: TCP 8080,9090,UDP 8080 \ No newline at end of file diff --git a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.csv b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.csv index 7810f19b..bf9ad2fe 100644 --- a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.csv +++ b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.csv @@ -1,3 +1,3 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info changed,default/frontend[Deployment],default/backend[Deployment],TCP 9090,"TCP 9090,UDP 53", added,0.0.0.0-255.255.255.255,default/backend[Deployment],No Connections,TCP 9090, diff --git a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.dot b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.dot index b7cb5f1b..23894820 100644 --- a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.dot +++ b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.dot @@ -5,7 +5,7 @@ digraph { "0.0.0.0-255.255.255.255" -> "default/backend[Deployment]" [label="TCP 9090" color="#008000" fontcolor="#008000"] "0.0.0.0-255.255.255.255" -> "default/frontend[Deployment]" [label="TCP 8080" color="grey" fontcolor="grey"] "default/frontend[Deployment]" -> "0.0.0.0-255.255.255.255" [label="UDP 53" color="grey" fontcolor="grey"] - "default/frontend[Deployment]" -> "default/backend[Deployment]" [label="TCP 9090,UDP 53 (old: TCP 9090)" color="magenta" fontcolor="magenta"] + "default/frontend[Deployment]" -> "default/backend[Deployment]" [label="TCP 9090,UDP 53 (ref1: TCP 9090)" color="magenta" fontcolor="magenta"] nodesep=0.5 subgraph cluster_legend { label="Legend" diff --git a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.md b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.md index 50ffb40b..49818268 100644 --- a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.md +++ b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | changed | default/frontend[Deployment] | default/backend[Deployment] | TCP 9090 | TCP 9090,UDP 53 | | | added | 0.0.0.0-255.255.255.255 | default/backend[Deployment] | No Connections | TCP 9090 | | \ No newline at end of file diff --git a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.txt b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.txt index 0e6a905f..230f0593 100644 --- a/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.txt +++ b/tests/netpol-diff-example-minimal/diff_output_from_netpol-analysis-example-minimal.txt @@ -1,3 +1,3 @@ Connectivity diff: -diff-type: changed, source: default/frontend[Deployment], destination: default/backend[Deployment], dir1: TCP 9090, dir2: TCP 9090,UDP 53 -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/backend[Deployment], dir1: No Connections, dir2: TCP 9090 \ No newline at end of file +diff-type: changed, source: default/frontend[Deployment], destination: default/backend[Deployment], ref1: TCP 9090, ref2: TCP 9090,UDP 53 +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/backend[Deployment], ref1: No Connections, ref2: TCP 9090 \ No newline at end of file diff --git a/tests/new_online_boutique_synthesis/diff_output_from_new_online_boutique.txt b/tests/new_online_boutique_synthesis/diff_output_from_new_online_boutique.txt index bb7b676e..a075f2bb 100644 --- a/tests/new_online_boutique_synthesis/diff_output_from_new_online_boutique.txt +++ b/tests/new_online_boutique_synthesis/diff_output_from_new_online_boutique.txt @@ -1,23 +1,23 @@ Connectivity diff: -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/adservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/adservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/cartservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/cartservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/checkoutservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/checkoutservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/currencyservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/currencyservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/emailservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/emailservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/frontend[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/frontend[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/loadgenerator[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/paymentservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/paymentservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productcatalogservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/productcatalogservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/recommendationservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/recommendationservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/shippingservice[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/shippingservice[Deployment], destination: default/loadgenerator[Deployment], dir1: All Connections, dir2: No Connections \ No newline at end of file +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/adservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/adservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/cartservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/cartservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/checkoutservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/checkoutservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/currencyservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/currencyservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/emailservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/emailservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/frontend[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/frontend[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/loadgenerator[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/paymentservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/paymentservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productcatalogservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/productcatalogservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/recommendationservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/recommendationservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/shippingservice[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/shippingservice[Deployment], destination: default/loadgenerator[Deployment], ref1: All Connections, ref2: No Connections \ No newline at end of file diff --git a/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.csv b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.csv new file mode 100644 index 00000000..2fbc28c3 --- /dev/null +++ b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.csv @@ -0,0 +1,9 @@ +diff-type,source,destination,old,new,workloads-diff-info +changed,default/checkoutservice[Deployment],default/cartservice[Deployment],TCP 7070,TCP 8000, +changed,default/checkoutservice[Deployment],default/emailservice[Deployment],TCP 8080,"TCP 8080,9555", +added,default/cartservice[Deployment],default/emailservice[Deployment],No Connections,TCP 9555, +added,default/checkoutservice[Deployment],default/adservice[Deployment],No Connections,TCP 9555, +removed,128.0.0.0-255.255.255.255,default/redis-cart[Deployment],All Connections,No Connections, +removed,default/checkoutservice[Deployment],default/currencyservice[Deployment],TCP 7000,No Connections, +removed,default/frontend[Deployment],default/adservice[Deployment],TCP 9555,No Connections, +removed,default/redis-cart[Deployment],0.0.0.0-255.255.255.255,All Connections,No Connections, diff --git a/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.dot b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.dot new file mode 100644 index 00000000..5630ef39 --- /dev/null +++ b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.dot @@ -0,0 +1,63 @@ +digraph { + "0.0.0.0-127.255.255.255" [label="0.0.0.0-127.255.255.255" color="blue" fontcolor="blue"] + "0.0.0.0-255.255.255.255" [label="0.0.0.0-255.255.255.255" color="blue" fontcolor="blue"] + "128.0.0.0-255.255.255.255" [label="128.0.0.0-255.255.255.255" color="blue" fontcolor="blue"] + "default/adservice[Deployment]" [label="default/adservice[Deployment]" color="blue" fontcolor="blue"] + "default/cartservice[Deployment]" [label="default/cartservice[Deployment]" color="blue" fontcolor="blue"] + "default/checkoutservice[Deployment]" [label="default/checkoutservice[Deployment]" color="blue" fontcolor="blue"] + "default/currencyservice[Deployment]" [label="default/currencyservice[Deployment]" color="blue" fontcolor="blue"] + "default/emailservice[Deployment]" [label="default/emailservice[Deployment]" color="blue" fontcolor="blue"] + "default/frontend[Deployment]" [label="default/frontend[Deployment]" color="blue" fontcolor="blue"] + "default/loadgenerator[Deployment]" [label="default/loadgenerator[Deployment]" color="blue" fontcolor="blue"] + "default/paymentservice[Deployment]" [label="default/paymentservice[Deployment]" color="blue" fontcolor="blue"] + "default/productcatalogservice[Deployment]" [label="default/productcatalogservice[Deployment]" color="blue" fontcolor="blue"] + "default/recommendationservice[Deployment]" [label="default/recommendationservice[Deployment]" color="blue" fontcolor="blue"] + "default/redis-cart[Deployment]" [label="default/redis-cart[Deployment]" color="blue" fontcolor="blue"] + "default/shippingservice[Deployment]" [label="default/shippingservice[Deployment]" color="blue" fontcolor="blue"] + "0.0.0.0-127.255.255.255" -> "default/redis-cart[Deployment]" [label="All Connections" color="grey" fontcolor="grey"] + "128.0.0.0-255.255.255.255" -> "default/redis-cart[Deployment]" [label="All Connections" color="red2" fontcolor="red2"] + "default/cartservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 9555" color="#008000" fontcolor="#008000"] + "default/checkoutservice[Deployment]" -> "default/adservice[Deployment]" [label="TCP 9555" color="#008000" fontcolor="#008000"] + "default/checkoutservice[Deployment]" -> "default/cartservice[Deployment]" [label="TCP 8000 (old: TCP 7070)" color="magenta" fontcolor="magenta"] + "default/checkoutservice[Deployment]" -> "default/currencyservice[Deployment]" [label="TCP 7000" color="red2" fontcolor="red2"] + "default/checkoutservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 8080,9555 (old: TCP 8080)" color="magenta" fontcolor="magenta"] + "default/checkoutservice[Deployment]" -> "default/paymentservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] + "default/checkoutservice[Deployment]" -> "default/productcatalogservice[Deployment]" [label="TCP 3550" color="grey" fontcolor="grey"] + "default/checkoutservice[Deployment]" -> "default/shippingservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] + "default/frontend[Deployment]" -> "default/adservice[Deployment]" [label="TCP 9555" color="red2" fontcolor="red2"] + "default/frontend[Deployment]" -> "default/cartservice[Deployment]" [label="TCP 7070" color="grey" fontcolor="grey"] + "default/frontend[Deployment]" -> "default/checkoutservice[Deployment]" [label="TCP 5050" color="grey" fontcolor="grey"] + "default/frontend[Deployment]" -> "default/currencyservice[Deployment]" [label="TCP 7000" color="grey" fontcolor="grey"] + "default/frontend[Deployment]" -> "default/productcatalogservice[Deployment]" [label="TCP 3550" color="grey" fontcolor="grey"] + "default/frontend[Deployment]" -> "default/recommendationservice[Deployment]" [label="TCP 8080" color="grey" fontcolor="grey"] + "default/frontend[Deployment]" -> "default/shippingservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] + "default/loadgenerator[Deployment]" -> "default/frontend[Deployment]" [label="TCP 8080" color="grey" fontcolor="grey"] + "default/recommendationservice[Deployment]" -> "default/productcatalogservice[Deployment]" [label="TCP 3550" color="grey" fontcolor="grey"] + "default/redis-cart[Deployment]" -> "0.0.0.0-255.255.255.255" [label="All Connections" color="red2" fontcolor="red2"] + nodesep=0.5 + subgraph cluster_legend { + label="Legend" + fontsize = 10 + margin=0 + a [style=invis height=0 width=0] + b [style=invis height=0 width=0] + c [style=invis height=0 width=0] + d [style=invis height=0 width=0] + e [style=invis height=0 width=0] + f [style=invis height=0 width=0] + g [style=invis height=0 width=0] + h [style=invis height=0 width=0] + {rank=source a b c d} + {rank=same e f g h} + a -> b [label="added connection", color="#008000" fontcolor="#008000" fontsize = 10 arrowsize=0.2] + c -> d [label="removed connection", color="red2" fontcolor="red2" fontsize = 10 arrowsize=0.2] + e -> f [label="changed connection", color="magenta" fontcolor="magenta" fontsize = 10 arrowsize=0.2] + g -> h [label="unchanged connection", color="grey" fontcolor="grey" fontsize = 10 arrowsize=0.2] + np [label="new peer" color="#008000" fontcolor="#008000" fontsize = 10] + lp [label="lost peer" color="red" fontcolor="red" fontsize = 10] + pp [label="persistent peer" color="blue" fontcolor="blue" fontsize = 10] + {rank=sink np lp pp} + np->lp [style=invis] + lp->pp [style=invis] + } +} \ No newline at end of file diff --git a/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.md b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.md new file mode 100644 index 00000000..47dbf082 --- /dev/null +++ b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.md @@ -0,0 +1,10 @@ +| diff-type | source | destination | old | new | workloads-diff-info | +|-----------|--------|-------------|------|------|---------------------| +| changed | default/checkoutservice[Deployment] | default/cartservice[Deployment] | TCP 7070 | TCP 8000 | | +| changed | default/checkoutservice[Deployment] | default/emailservice[Deployment] | TCP 8080 | TCP 8080,9555 | | +| added | default/cartservice[Deployment] | default/emailservice[Deployment] | No Connections | TCP 9555 | | +| added | default/checkoutservice[Deployment] | default/adservice[Deployment] | No Connections | TCP 9555 | | +| removed | 128.0.0.0-255.255.255.255 | default/redis-cart[Deployment] | All Connections | No Connections | | +| removed | default/checkoutservice[Deployment] | default/currencyservice[Deployment] | TCP 7000 | No Connections | | +| removed | default/frontend[Deployment] | default/adservice[Deployment] | TCP 9555 | No Connections | | +| removed | default/redis-cart[Deployment] | 0.0.0.0-255.255.255.255 | All Connections | No Connections | | \ No newline at end of file diff --git a/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.txt b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.txt new file mode 100644 index 00000000..5b117069 --- /dev/null +++ b/tests/onlineboutique_workloads_changed_netpols/TsetOutputWithArgNamesOption.txt @@ -0,0 +1,9 @@ +Connectivity diff: +diff-type: changed, source: default/checkoutservice[Deployment], destination: default/cartservice[Deployment], old: TCP 7070, new: TCP 8000 +diff-type: changed, source: default/checkoutservice[Deployment], destination: default/emailservice[Deployment], old: TCP 8080, new: TCP 8080,9555 +diff-type: added, source: default/cartservice[Deployment], destination: default/emailservice[Deployment], old: No Connections, new: TCP 9555 +diff-type: added, source: default/checkoutservice[Deployment], destination: default/adservice[Deployment], old: No Connections, new: TCP 9555 +diff-type: removed, source: 128.0.0.0-255.255.255.255, destination: default/redis-cart[Deployment], old: All Connections, new: No Connections +diff-type: removed, source: default/checkoutservice[Deployment], destination: default/currencyservice[Deployment], old: TCP 7000, new: No Connections +diff-type: removed, source: default/frontend[Deployment], destination: default/adservice[Deployment], old: TCP 9555, new: No Connections +diff-type: removed, source: default/redis-cart[Deployment], destination: 0.0.0.0-255.255.255.255, old: All Connections, new: No Connections \ No newline at end of file diff --git a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.csv b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.csv index 5e8905ab..8be55316 100644 --- a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.csv +++ b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.csv @@ -1,4 +1,4 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info changed,default/checkoutservice[Deployment],default/cartservice[Deployment],TCP 7070,TCP 8000, changed,default/checkoutservice[Deployment],default/emailservice[Deployment],TCP 8080,"TCP 8080,9555", added,default/cartservice[Deployment],default/emailservice[Deployment],No Connections,TCP 9555, diff --git a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.dot b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.dot index 5630ef39..8efa9555 100644 --- a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.dot +++ b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.dot @@ -18,9 +18,9 @@ digraph { "128.0.0.0-255.255.255.255" -> "default/redis-cart[Deployment]" [label="All Connections" color="red2" fontcolor="red2"] "default/cartservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 9555" color="#008000" fontcolor="#008000"] "default/checkoutservice[Deployment]" -> "default/adservice[Deployment]" [label="TCP 9555" color="#008000" fontcolor="#008000"] - "default/checkoutservice[Deployment]" -> "default/cartservice[Deployment]" [label="TCP 8000 (old: TCP 7070)" color="magenta" fontcolor="magenta"] + "default/checkoutservice[Deployment]" -> "default/cartservice[Deployment]" [label="TCP 8000 (ref1: TCP 7070)" color="magenta" fontcolor="magenta"] "default/checkoutservice[Deployment]" -> "default/currencyservice[Deployment]" [label="TCP 7000" color="red2" fontcolor="red2"] - "default/checkoutservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 8080,9555 (old: TCP 8080)" color="magenta" fontcolor="magenta"] + "default/checkoutservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 8080,9555 (ref1: TCP 8080)" color="magenta" fontcolor="magenta"] "default/checkoutservice[Deployment]" -> "default/paymentservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] "default/checkoutservice[Deployment]" -> "default/productcatalogservice[Deployment]" [label="TCP 3550" color="grey" fontcolor="grey"] "default/checkoutservice[Deployment]" -> "default/shippingservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] diff --git a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.md b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.md index 0b2ea78c..effdc26f 100644 --- a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.md +++ b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | changed | default/checkoutservice[Deployment] | default/cartservice[Deployment] | TCP 7070 | TCP 8000 | | | changed | default/checkoutservice[Deployment] | default/emailservice[Deployment] | TCP 8080 | TCP 8080,9555 | | diff --git a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.txt b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.txt index 45485e09..a27ec8d5 100644 --- a/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.txt +++ b/tests/onlineboutique_workloads_changed_netpols/diff_output_from_onlineboutique_workloads.txt @@ -1,9 +1,9 @@ Connectivity diff: -diff-type: changed, source: default/checkoutservice[Deployment], destination: default/cartservice[Deployment], dir1: TCP 7070, dir2: TCP 8000 -diff-type: changed, source: default/checkoutservice[Deployment], destination: default/emailservice[Deployment], dir1: TCP 8080, dir2: TCP 8080,9555 -diff-type: added, source: default/cartservice[Deployment], destination: default/emailservice[Deployment], dir1: No Connections, dir2: TCP 9555 -diff-type: added, source: default/checkoutservice[Deployment], destination: default/adservice[Deployment], dir1: No Connections, dir2: TCP 9555 -diff-type: removed, source: 128.0.0.0-255.255.255.255, destination: default/redis-cart[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/checkoutservice[Deployment], destination: default/currencyservice[Deployment], dir1: TCP 7000, dir2: No Connections -diff-type: removed, source: default/frontend[Deployment], destination: default/adservice[Deployment], dir1: TCP 9555, dir2: No Connections -diff-type: removed, source: default/redis-cart[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections \ No newline at end of file +diff-type: changed, source: default/checkoutservice[Deployment], destination: default/cartservice[Deployment], ref1: TCP 7070, ref2: TCP 8000 +diff-type: changed, source: default/checkoutservice[Deployment], destination: default/emailservice[Deployment], ref1: TCP 8080, ref2: TCP 8080,9555 +diff-type: added, source: default/cartservice[Deployment], destination: default/emailservice[Deployment], ref1: No Connections, ref2: TCP 9555 +diff-type: added, source: default/checkoutservice[Deployment], destination: default/adservice[Deployment], ref1: No Connections, ref2: TCP 9555 +diff-type: removed, source: 128.0.0.0-255.255.255.255, destination: default/redis-cart[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/checkoutservice[Deployment], destination: default/currencyservice[Deployment], ref1: TCP 7000, ref2: No Connections +diff-type: removed, source: default/frontend[Deployment], destination: default/adservice[Deployment], ref1: TCP 9555, ref2: No Connections +diff-type: removed, source: default/redis-cart[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections \ No newline at end of file diff --git a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.csv b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.csv index 8a20cee1..16bb1d08 100644 --- a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.csv +++ b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.csv @@ -1,4 +1,4 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info changed,default/checkoutservice[Deployment],default/cartservice[Deployment],TCP 7070,TCP 8000, changed,default/checkoutservice[Deployment],default/emailservice[Deployment],TCP 8080,"TCP 8080,9555", added,0.0.0.0-255.255.255.255,default/unicorn[Deployment],No Connections,All Connections,workload default/unicorn[Deployment] added diff --git a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.dot b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.dot index cc1264f8..c4f886a0 100644 --- a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.dot +++ b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.dot @@ -20,9 +20,9 @@ digraph { "128.0.0.0-255.255.255.255" -> "default/redis-cart[Deployment]" [label="All Connections" color="red2" fontcolor="red2"] "default/cartservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 9555" color="#008000" fontcolor="#008000"] "default/checkoutservice[Deployment]" -> "default/adservice[Deployment]" [label="TCP 9555" color="#008000" fontcolor="#008000"] - "default/checkoutservice[Deployment]" -> "default/cartservice[Deployment]" [label="TCP 8000 (old: TCP 7070)" color="magenta" fontcolor="magenta"] + "default/checkoutservice[Deployment]" -> "default/cartservice[Deployment]" [label="TCP 8000 (ref1: TCP 7070)" color="magenta" fontcolor="magenta"] "default/checkoutservice[Deployment]" -> "default/currencyservice[Deployment]" [label="TCP 7000" color="red2" fontcolor="red2"] - "default/checkoutservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 8080,9555 (old: TCP 8080)" color="magenta" fontcolor="magenta"] + "default/checkoutservice[Deployment]" -> "default/emailservice[Deployment]" [label="TCP 8080,9555 (ref1: TCP 8080)" color="magenta" fontcolor="magenta"] "default/checkoutservice[Deployment]" -> "default/paymentservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] "default/checkoutservice[Deployment]" -> "default/productcatalogservice[Deployment]" [label="TCP 3550" color="grey" fontcolor="grey"] "default/checkoutservice[Deployment]" -> "default/shippingservice[Deployment]" [label="TCP 50051" color="grey" fontcolor="grey"] diff --git a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.md b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.md index 8bb7e4cd..3876e055 100644 --- a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.md +++ b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | changed | default/checkoutservice[Deployment] | default/cartservice[Deployment] | TCP 7070 | TCP 8000 | | | changed | default/checkoutservice[Deployment] | default/emailservice[Deployment] | TCP 8080 | TCP 8080,9555 | | diff --git a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.txt b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.txt index 1a901584..6ebf9199 100644 --- a/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.txt +++ b/tests/onlineboutique_workloads_changed_netpols_and_workloads/diff_output_from_onlineboutique_workloads.txt @@ -1,11 +1,11 @@ Connectivity diff: -diff-type: changed, source: default/checkoutservice[Deployment], destination: default/cartservice[Deployment], dir1: TCP 7070, dir2: TCP 8000 -diff-type: changed, source: default/checkoutservice[Deployment], destination: default/emailservice[Deployment], dir1: TCP 8080, dir2: TCP 8080,9555 -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: added, source: default/cartservice[Deployment], destination: default/emailservice[Deployment], dir1: No Connections, dir2: TCP 9555 -diff-type: added, source: default/checkoutservice[Deployment], destination: default/adservice[Deployment], dir1: No Connections, dir2: TCP 9555 -diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: removed, source: 128.0.0.0-255.255.255.255, destination: default/redis-cart[Deployment], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/checkoutservice[Deployment], destination: default/currencyservice[Deployment], dir1: TCP 7000, dir2: No Connections -diff-type: removed, source: default/frontend[Deployment], destination: default/adservice[Deployment], dir1: TCP 9555, dir2: No Connections -diff-type: removed, source: default/redis-cart[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections \ No newline at end of file +diff-type: changed, source: default/checkoutservice[Deployment], destination: default/cartservice[Deployment], ref1: TCP 7070, ref2: TCP 8000 +diff-type: changed, source: default/checkoutservice[Deployment], destination: default/emailservice[Deployment], ref1: TCP 8080, ref2: TCP 8080,9555 +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: added, source: default/cartservice[Deployment], destination: default/emailservice[Deployment], ref1: No Connections, ref2: TCP 9555 +diff-type: added, source: default/checkoutservice[Deployment], destination: default/adservice[Deployment], ref1: No Connections, ref2: TCP 9555 +diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: removed, source: 128.0.0.0-255.255.255.255, destination: default/redis-cart[Deployment], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/checkoutservice[Deployment], destination: default/currencyservice[Deployment], ref1: TCP 7000, ref2: No Connections +diff-type: removed, source: default/frontend[Deployment], destination: default/adservice[Deployment], ref1: TCP 9555, ref2: No Connections +diff-type: removed, source: default/redis-cart[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections \ No newline at end of file diff --git a/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.csv b/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.csv index 85628423..8506eb93 100644 --- a/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.csv +++ b/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.csv @@ -1,4 +1,4 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info added,0.0.0.0-255.255.255.255,default/unicorn[Deployment],No Connections,All Connections,workload default/unicorn[Deployment] added added,default/redis-cart[Deployment],default/unicorn[Deployment],No Connections,All Connections,workload default/unicorn[Deployment] added added,default/unicorn[Deployment],0.0.0.0-255.255.255.255,No Connections,All Connections,workload default/unicorn[Deployment] added diff --git a/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.md b/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.md index 0252fe15..443783d6 100644 --- a/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.md +++ b/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.md @@ -1,4 +1,4 @@ -| diff-type | source | destination | dir1 | dir2 | workloads-diff-info | +| diff-type | source | destination | ref1 | ref2 | workloads-diff-info | |-----------|--------|-------------|------|------|---------------------| | added | 0.0.0.0-255.255.255.255 | default/unicorn[Deployment] | No Connections | All Connections | workload default/unicorn[Deployment] added | | added | default/redis-cart[Deployment] | default/unicorn[Deployment] | No Connections | All Connections | workload default/unicorn[Deployment] added | diff --git a/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.txt b/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.txt index 76f16f69..3faa4a48 100644 --- a/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.txt +++ b/tests/onlineboutique_workloads_changed_workloads/diff_output_from_onlineboutique_workloads.txt @@ -1,5 +1,5 @@ Connectivity diff: -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: added, source: default/redis-cart[Deployment], destination: default/unicorn[Deployment], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added -diff-type: added, source: default/unicorn[Deployment], destination: default/redis-cart[Deployment], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added \ No newline at end of file +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/unicorn[Deployment], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: added, source: default/redis-cart[Deployment], destination: default/unicorn[Deployment], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: added, source: default/unicorn[Deployment], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added +diff-type: added, source: default/unicorn[Deployment], destination: default/redis-cart[Deployment], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/unicorn[Deployment] added \ No newline at end of file diff --git a/tests/onlineboutique_workloads_with_ingress/diff_output_from_onlineboutique_workloads.csv b/tests/onlineboutique_workloads_with_ingress/diff_output_from_onlineboutique_workloads.csv index 59a0513c..a90655e8 100644 --- a/tests/onlineboutique_workloads_with_ingress/diff_output_from_onlineboutique_workloads.csv +++ b/tests/onlineboutique_workloads_with_ingress/diff_output_from_onlineboutique_workloads.csv @@ -1,3 +1,3 @@ -diff-type,source,destination,dir1,dir2,workloads-diff-info +diff-type,source,destination,ref1,ref2,workloads-diff-info added,default/redis-cart[Deployment],default/frontend[Deployment],No Connections,TCP 8080, added,{ingress-controller},default/frontend[Deployment],No Connections,TCP 8080, diff --git a/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-different-topologies-policy-b.txt b/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-different-topologies-policy-b.txt index d3633f75..cf802b96 100644 --- a/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-different-topologies-policy-b.txt +++ b/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-different-topologies-policy-b.txt @@ -1,37 +1,37 @@ Connectivity diff: -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] added -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-1[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-5[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-6[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed -diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] and default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed -diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] and default/cog-agents-5[DaemonSet] removed \ No newline at end of file +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] added +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-1[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-5[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-6[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] removed +diff-type: removed, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] and default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] removed +diff-type: removed, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] and default/cog-agents-5[DaemonSet] removed \ No newline at end of file diff --git a/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-same-topologies-old1.txt b/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-same-topologies-old1.txt index 4aead63e..9603d16b 100644 --- a/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-same-topologies-old1.txt +++ b/tests/semanticDiff-different-topologies-policy-a/diff_output_from_semanticDiff-same-topologies-old1.txt @@ -1,36 +1,36 @@ Connectivity diff: -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] added -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] added -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] and default/cog-agents-2[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] and default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-agents-0[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-agents-2[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-agents-0[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-agents-1[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-agents-0[DaemonSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-agents-2[DaemonSet] added -diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-0[DaemonSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-2[DaemonSet] added -diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] added -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: demo/cog-agents-account-query[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-account-query[DaemonSet] removed -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: demo/cog-agents-bank-ui[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-account-command[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-account-command[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-account-command[DaemonSet], destination: demo/cog-agents-account-query[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-account-command[DaemonSet] and demo/cog-agents-account-query[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-account-command[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-account-command[DaemonSet] and demo/cog-agents-bank-ui[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], dir1: TCP 8080, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-account-query[DaemonSet] and demo/cog-agents-bank-ui[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] and demo/cog-agents-account-command[DaemonSet] removed -diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-query[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] and demo/cog-agents-account-query[DaemonSet] removed \ No newline at end of file +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] added +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] added +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] and default/cog-agents-2[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] and default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-0[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-agents-0[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-agents-2[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-1[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-agents-0[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-agents-1[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-2[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-agents-0[DaemonSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-agents-2[DaemonSet] added +diff-type: added, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-0[DaemonSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-2[DaemonSet] added +diff-type: added, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] added +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: demo/cog-agents-account-query[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-account-query[DaemonSet] removed +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: demo/cog-agents-bank-ui[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-account-command[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-account-command[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-account-command[DaemonSet], destination: demo/cog-agents-account-query[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-account-command[DaemonSet] and demo/cog-agents-account-query[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-account-command[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-account-command[DaemonSet] and demo/cog-agents-bank-ui[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], ref1: TCP 8080, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-account-query[DaemonSet] and demo/cog-agents-bank-ui[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] and demo/cog-agents-account-command[DaemonSet] removed +diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-query[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload demo/cog-agents-bank-ui[DaemonSet] and demo/cog-agents-account-query[DaemonSet] removed \ No newline at end of file diff --git a/tests/semanticDiff-different-topologies-policy-b-with-ipblock/diff_output_from_semanticDiff-different-topologies-policy-a-with-ipblock.txt b/tests/semanticDiff-different-topologies-policy-b-with-ipblock/diff_output_from_semanticDiff-different-topologies-policy-a-with-ipblock.txt index 25e5104c..f8b2e5ee 100644 --- a/tests/semanticDiff-different-topologies-policy-b-with-ipblock/diff_output_from_semanticDiff-different-topologies-policy-a-with-ipblock.txt +++ b/tests/semanticDiff-different-topologies-policy-b-with-ipblock/diff_output_from_semanticDiff-different-topologies-policy-a-with-ipblock.txt @@ -1,43 +1,43 @@ Connectivity diff: -diff-type: changed, source: 10.0.0.0-10.10.255.255, destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: UDP 53 -diff-type: changed, source: 10.12.0.0-10.255.255.255, destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: UDP 53 -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: 0.0.0.0-9.255.255.255, destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 10.10.0.0-10.10.255.255, destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 11.0.0.0-255.255.255.255, destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] and default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] and default/cog-agents-5[DaemonSet] added -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: 0.0.0.0-9.255.255.255, destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 10.11.0.0-10.11.255.255, destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 11.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] removed \ No newline at end of file +diff-type: changed, source: 10.0.0.0-10.10.255.255, destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: UDP 53 +diff-type: changed, source: 10.12.0.0-10.255.255.255, destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: UDP 53 +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: 0.0.0.0-9.255.255.255, destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 10.10.0.0-10.10.255.255, destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 11.0.0.0-255.255.255.255, destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] and default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] and default/cog-agents-5[DaemonSet] added +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: 0.0.0.0-9.255.255.255, destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 10.11.0.0-10.11.255.255, destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 11.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] removed \ No newline at end of file diff --git a/tests/semanticDiff-different-topologies-policy-b/diff_output_from_semanticDiff-different-topologies-policy-a.txt b/tests/semanticDiff-different-topologies-policy-b/diff_output_from_semanticDiff-different-topologies-policy-a.txt index c2e1090b..9c77d981 100644 --- a/tests/semanticDiff-different-topologies-policy-b/diff_output_from_semanticDiff-different-topologies-policy-a.txt +++ b/tests/semanticDiff-different-topologies-policy-b/diff_output_from_semanticDiff-different-topologies-policy-a.txt @@ -1,37 +1,37 @@ Connectivity diff: -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added -diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-6[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] and default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-1[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added -diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-5[DaemonSet], dir1: No Connections, dir2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] and default/cog-agents-5[DaemonSet] added -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed -diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed -diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], dir1: All Connections, dir2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] removed \ No newline at end of file +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] added +diff-type: added, source: default/cog-agents-5[DaemonSet], destination: default/cog-agents-6[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-5[DaemonSet] and default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-1[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] added +diff-type: added, source: default/cog-agents-6[DaemonSet], destination: default/cog-agents-5[DaemonSet], ref1: No Connections, ref2: All Connections, workloads-diff-info: workload default/cog-agents-6[DaemonSet] and default/cog-agents-5[DaemonSet] added +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: 0.0.0.0-255.255.255.255, destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-0[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-1[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-2[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-0[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] removed +diff-type: removed, source: default/cog-agents-3[DaemonSet], destination: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-agents-3[DaemonSet] and default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: 0.0.0.0-255.255.255.255, ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-0[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-2[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] removed +diff-type: removed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: default/cog-agents-3[DaemonSet], ref1: All Connections, ref2: No Connections, workloads-diff-info: workload default/cog-local-analyzer-7d77fb55cc[ReplicaSet] and default/cog-agents-3[DaemonSet] removed \ No newline at end of file diff --git a/tests/semanticDiff-same-topologies-new1/diff_output_from_semanticDiff-same-topologies-old1.txt b/tests/semanticDiff-same-topologies-new1/diff_output_from_semanticDiff-same-topologies-old1.txt index 4af6c1cd..90a4ec6d 100644 --- a/tests/semanticDiff-same-topologies-new1/diff_output_from_semanticDiff-same-topologies-old1.txt +++ b/tests/semanticDiff-same-topologies-new1/diff_output_from_semanticDiff-same-topologies-old1.txt @@ -1,3 +1,3 @@ Connectivity diff: -diff-type: changed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], dir1: TCP 8080, dir2: All Connections -diff-type: changed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], dir1: All Connections, dir2: TCP 8080,9090,UDP 8080 \ No newline at end of file +diff-type: changed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], ref1: TCP 8080, ref2: All Connections +diff-type: changed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], ref1: All Connections, ref2: TCP 8080,9090,UDP 8080 \ No newline at end of file diff --git a/tests/semanticDiff-same-topologies-new1a/diff_output_from_semanticDiff-same-topologies-old1.txt b/tests/semanticDiff-same-topologies-new1a/diff_output_from_semanticDiff-same-topologies-old1.txt index 4fd0aa3e..1efa7675 100644 --- a/tests/semanticDiff-same-topologies-new1a/diff_output_from_semanticDiff-same-topologies-old1.txt +++ b/tests/semanticDiff-same-topologies-new1a/diff_output_from_semanticDiff-same-topologies-old1.txt @@ -1,3 +1,3 @@ Connectivity diff: -diff-type: changed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], dir1: TCP 8080, dir2: UDP 8080 -diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], dir1: All Connections, dir2: No Connections \ No newline at end of file +diff-type: changed, source: demo/cog-agents-account-query[DaemonSet], destination: demo/cog-agents-bank-ui[DaemonSet], ref1: TCP 8080, ref2: UDP 8080 +diff-type: removed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], ref1: All Connections, ref2: No Connections \ No newline at end of file diff --git a/tests/semanticDiff-same-topologies-new2/diff_output_from_semanticDiff-same-topologies-old2.txt b/tests/semanticDiff-same-topologies-new2/diff_output_from_semanticDiff-same-topologies-old2.txt index fd2215e7..01288aec 100644 --- a/tests/semanticDiff-same-topologies-new2/diff_output_from_semanticDiff-same-topologies-old2.txt +++ b/tests/semanticDiff-same-topologies-new2/diff_output_from_semanticDiff-same-topologies-old2.txt @@ -1,2 +1,2 @@ Connectivity diff: -diff-type: changed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], dir1: SCTP 7070,TCP 8080-8081,UDP 9090, dir2: TCP 8081-8082,UDP 9091 \ No newline at end of file +diff-type: changed, source: demo/cog-agents-bank-ui[DaemonSet], destination: demo/cog-agents-account-command[DaemonSet], ref1: SCTP 7070,TCP 8080-8081,UDP 9090, ref2: TCP 8081-8082,UDP 9091 \ No newline at end of file diff --git a/tests/test_with_named_ports_changed_netpol/diff_output_from_test_with_named_ports.txt b/tests/test_with_named_ports_changed_netpol/diff_output_from_test_with_named_ports.txt index edbe1fa3..57ad60b7 100644 --- a/tests/test_with_named_ports_changed_netpol/diff_output_from_test_with_named_ports.txt +++ b/tests/test_with_named_ports_changed_netpol/diff_output_from_test_with_named_ports.txt @@ -1,22 +1,22 @@ Connectivity diff: -diff-type: changed, source: 0.0.0.0-255.255.255.255, destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: default/cog-agents-analyzer[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: default/cog-agents[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/calico-node-frontend[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/calico-node[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/keepalived-watcher-not-frontend[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/kube-fluentd-frontend[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/kube-fluentd[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: vendor-system/barbar-app[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 -diff-type: changed, source: vendor-system/foofoo-app[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], dir1: TCP 10053,UDP 10053, dir2: TCP 10053-10054,UDP 10053 \ No newline at end of file +diff-type: changed, source: 0.0.0.0-255.255.255.255, destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: default/cog-agents-analyzer[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: default/cog-agents[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: default/cog-local-analyzer-7d77fb55cc[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system-dummy-to-ignore/calico-kube-controllers-7694668c77[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system-dummy-to-ignore/kube-dns-autoscaler-78f5fdbd46[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system-dummy-to-ignore/kubernetes-dashboard-5b5f985bcf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system-dummy-to-ignore/public-cre08b89c167414305a1afb205d0bd346f-alb1-8489b8458f[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/calico-node-frontend[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/calico-node[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/file-plugin-7bfb8b69bf[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/heapster-7df8cb8c66[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/keepalived-watcher-not-frontend[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/keepalived-watcher[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/kube-fluentd-frontend[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/kube-fluentd[DaemonSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/storage-watcher-8494b4b8bb[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/tiller-deploy-5c45c9966b[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: kube-system/vpn-858f6d9777[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: vendor-system/barbar-app[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 +diff-type: changed, source: vendor-system/foofoo-app[ReplicaSet], destination: kube-system-dummy-to-ignore/kube-dns-amd64-d66bf76db[ReplicaSet], ref1: TCP 10053,UDP 10053, ref2: TCP 10053-10054,UDP 10053 \ No newline at end of file