Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTransformerOverridesAndKMSPluginProbes (0.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    }
    
    // getTransformerOverridesAndKMSPluginProbes creates the set of transformers and KMS probes based on the given config.
    // It may launch multiple go routines whose lifecycle is controlled by ctx.
    // In case of an error, the caller is responsible for canceling ctx to clean up any go routines that may have been launched.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				return
    			}
    
    			ctx, cancel := context.WithCancel(context.Background())
    			cancel() // cancel this upfront so the kms v2 healthz check poll does not run
    			_, got, kmsUsed, err := getTransformerOverridesAndKMSPluginProbes(ctx, config, "")
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// unset fields that are not relevant to the test
    			for i := range got {
    				checker := got[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top