Instantly share code, notes, and snippets.
spiffxp/e2e-test-tags.sh Secret
Created
October 6, 2022 19:27
-
Star
(0)
0
You must be signed in to star a gist -
Fork
(0)
0
You must be signed in to fork a gist
-
Save spiffxp/5e39919df9eaa3ad7d26ac0e69c5d4e5 to your computer and use it in GitHub Desktop.
kubernetes e2e test tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl https://storage.googleapis.com/kubernetes-jenkins/logs/ci-kubernetes-kind-e2e-parallel/1578076463515570176/artifacts/junit_01.xml \ | |
| grep "testcase name=" \ | |
| sed -e 's/.*testcase name="\([^"]*\)".*/\1/' \ | |
| sed -e 's/\]\[/] [/g' \ | |
| tr ' ' '\n' \ | |
| grep '^\[.*\]$' \ | |
| grep -vE '\[(sig-.*|It)\]' \ | |
| sort \ | |
| uniq -c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
363 [Conformance] | |
225 [Disruptive] | |
1 [Excluded:WindowsDocker] | |
1 [Experimental] | |
1 [Feature:APISelfSubjectReview] | |
5 [Feature:BootstrapTokens] | |
1 [Feature:BoundServiceAccountTokenVolume] | |
1 [Feature:CloudProvider] | |
1 [Feature:ClusterAutoscalerScalability1] | |
1 [Feature:ClusterAutoscalerScalability2] | |
1 [Feature:ClusterAutoscalerScalability3] | |
1 [Feature:ClusterAutoscalerScalability4] | |
1 [Feature:ClusterAutoscalerScalability5] | |
1 [Feature:ClusterAutoscalerScalability6] | |
1 [Feature:ClusterDowngrade] | |
4 [Feature:ClusterSizeAutoscalingGpu] | |
4 [Feature:ClusterSizeAutoscalingScaleDown] | |
16 [Feature:ClusterSizeAutoscalingScaleUp] | |
1 [Feature:ClusterUpgrade] | |
1 [Feature:ComprehensiveNamespaceDraining] | |
12 [Feature:CustomMetricsAutoscaling] | |
1 [Feature:Downgrade] | |
2 [Feature:EphemeralStorage] | |
4 [Feature:Example] | |
1 [Feature:ExperimentalResourceUsageTracking] | |
4 [Feature:Flexvolumes] | |
2 [Feature:GKELocalSSD] | |
2 [Feature:GKENodePool] | |
1 [Feature:GPUClusterDowngrade] | |
1 [Feature:GPUClusterUpgrade] | |
2 [Feature:GPUDevicePlugin] | |
1 [Feature:GPUMasterUpgrade] | |
3 [Feature:GPUUpgrade] | |
3 [Feature:HAMaster] | |
28 [Feature:HPA] | |
22 [Feature:IPv6DualStack] | |
1 [Feature:IngressScale] | |
5 [Feature:Ingress] | |
1 [Feature:KubeProxyDaemonSetDowngrade] | |
2 [Feature:KubeProxyDaemonSetMigration] | |
1 [Feature:KubeProxyDaemonSetUpgrade] | |
4 [Feature:KubeletSecurity] | |
1 [Feature:LabelSelector] | |
1 [Feature:LocalStorageCapacityIsolation] | |
1 [Feature:MasterUpgrade] | |
7 [Feature:NEG] | |
1 [Feature:NetworkPolicyStatus] | |
76 [Feature:NetworkPolicy] | |
3 [Feature:Networking-DNS] | |
1 [Feature:Networking-IPv4] | |
1 [Feature:Networking-IPv6] | |
1 [Feature:Networking-Performance] | |
1 [Feature:NoSNAT] | |
2 [Feature:NodeAuthenticator] | |
7 [Feature:NodeAuthorizer] | |
1 [Feature:NodeOutOfServiceVolumeDetach] | |
1 [Feature:PerformanceDNS] | |
1 [Feature:PodGarbageCollector] | |
7 [Feature:PodPriority] | |
2 [Feature:ProbeTerminationGracePeriod] | |
5 [Feature:ProxyTerminatingEndpoints] | |
6 [Feature:Reboot] | |
3 [Feature:ReclaimPolicy] | |
2 [Feature:Recreate] | |
2 [Feature:RegularResourceUsageTracking] | |
1 [Feature:RetroactiveDefaultStorageClass] | |
12 [Feature:SCTPConnectivity] | |
2 [Feature:ScopeSelectors] | |
3 [Feature:ServiceInternalTrafficPolicy] | |
1 [Feature:StackdriverAcceleratorMonitoring] | |
2 [Feature:StackdriverCustomMetrics] | |
1 [Feature:StackdriverExternalMetrics] | |
1 [Feature:StackdriverMetadataAgent] | |
1 [Feature:StackdriverMonitoring] | |
5 [Feature:StatefulSetAutoDeletePVC] | |
4 [Feature:StatefulSet] | |
1 [Feature:StatefulUpgrade] | |
18 [Feature:StorageProvider] | |
1 [Feature:StorageVersionAPI] | |
1 [Feature:UDP] | |
2 [Feature:Upgrade] | |
4 [Feature:UserNamespacesStatelessPodsSupport] | |
214 [Feature:VolumeSnapshotDataSource] | |
294 [Feature:VolumeSourceXFS] | |
740 [Feature:Volumes] | |
5 [Feature:WindowsHostProcessContainers] | |
924 [Feature:Windows] | |
79 [Feature:vsphere] | |
26 [Flaky] | |
4 [GpuType:] | |
12 [HPA] | |
2 [HostCleanup] | |
1649 [LinuxOnly] | |
2 [MinimumKubeletVersion:1.20] | |
3 [MinimumKubeletVersion:1.21] | |
6 [MinimumKubeletVersion:1.22] | |
1 [MinimumKubeletVersion:1.23] | |
2 [NFS] | |
160 [NodeConformance] | |
2 [NodeFeature:DownwardAPIHugePages] | |
17 [NodeFeature:FSGroup] | |
1 [NodeFeature:HostAccess] | |
2 [NodeFeature:RuntimeHandler] | |
1 [NonGracefulNodeShutdown] | |
1 [Performance] | |
44 [Privileged:ClusterAdmin] | |
2 [Privileged] | |
1 [Projection] | |
1 [Provider:GCE] | |
1 [ReportAfterSuite] | |
1304 [Serial] | |
3023 [Slow] | |
13 [StatefulSetBasic] | |
25 [SynchronizedAfterSuite] | |
25 [SynchronizedBeforeSuite] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment