File tree 2 files changed +0
-7
lines changed
2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ const (
64
64
Node GVK = "Node"
65
65
PersistentVolume GVK = "PersistentVolume"
66
66
PersistentVolumeClaim GVK = "PersistentVolumeClaim"
67
- Service GVK = "Service"
68
67
StorageClass GVK = "storage.k8s.io/StorageClass"
69
68
CSINode GVK = "storage.k8s.io/CSINode"
70
69
CSIDriver GVK = "storage.k8s.io/CSIDriver"
Original file line number Diff line number Diff line change 80
80
CSIStorageCapacityAdd = framework.ClusterEvent {Resource : framework .CSIStorageCapacity , ActionType : framework .Add , Label : "CSIStorageCapacityAdd" }
81
81
// CSIStorageCapacityUpdate is the event when a CSI storage capacity is updated in the cluster.
82
82
CSIStorageCapacityUpdate = framework.ClusterEvent {Resource : framework .CSIStorageCapacity , ActionType : framework .Update , Label : "CSIStorageCapacityUpdate" }
83
- // ServiceAdd is the event when a service is added in the cluster.
84
- ServiceAdd = framework.ClusterEvent {Resource : framework .Service , ActionType : framework .Add , Label : "ServiceAdd" }
85
- // ServiceUpdate is the event when a service is updated in the cluster.
86
- ServiceUpdate = framework.ClusterEvent {Resource : framework .Service , ActionType : framework .Update , Label : "ServiceUpdate" }
87
- // ServiceDelete is the event when a service is deleted in the cluster.
88
- ServiceDelete = framework.ClusterEvent {Resource : framework .Service , ActionType : framework .Delete , Label : "ServiceDelete" }
89
83
// WildCardEvent semantically matches all resources on all actions.
90
84
WildCardEvent = framework.ClusterEvent {Resource : framework .WildCard , ActionType : framework .All , Label : "WildCardEvent" }
91
85
// UnschedulableTimeout is the event when a pod stays in unschedulable for longer than timeout.
You can’t perform that action at this time.
0 commit comments