Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for KMSv2 (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package kmsv2 transforms values for storage at rest using a Envelope v2 provider
    package kmsv2
    
    import (
    	"context"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/sha256"
    	"fmt"
    	"sort"
    	"time"
    	"unsafe"
    
    	"github.com/gogo/protobuf/proto"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_extended_nonce.go

    // Reusing the same seed is safe to do over time and across process restarts.  Whenever a new
    // seed is needed, the caller should generate it via GenerateKey(MinSeedSizeExtendedNonceGCM).
    // In regard to KMSv2, organization standards or compliance policies around rotation may require
    // that the seed be rotated at some interval.  This can be implemented externally by rotating
    // the key encryption key via a key ID change.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    		klog.InfoS("WaitForBase64PluginToBeUpdated", "keyID", resp.KeyId)
    		return gRPCErr == nil && resp.Healthz == "ok" && resp.KeyId == "2", nil
    	})
    
    	if updatePollErr != nil {
    		return fmt.Errorf("failed to update keyID for kmsv2-plugin, gRPC error: %w, updatePoll error: %w", gRPCErr, updatePollErr)
    	}
    
    	return nil
    }
    
    // LastEncryptRequest returns the last EncryptRequest.Plain sent to the plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package kmsv2 transforms values for storage at rest using a Envelope v2 provider
    package kmsv2
    
    import (
    	"bytes"
    	"context"
    	"encoding/base64"
    	"flag"
    	"fmt"
    	"reflect"
    	"regexp"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  5. cluster/gce/config-default.sh

    # List of the set of feature gates recognized by the GCP CCM
    export CCM_FEATURE_GATES="APIPriorityAndFairness,APIResponseCompression,APIServerIdentity,APIServerTracing,AllAlpha,AllBeta,CustomResourceValidationExpressions,KMSv2,OpenAPIEnums,OpenAPIV3,ServerSideFieldValidation,StorageVersionAPI,StorageVersionHash"
    
    # Optional: set feature gates
    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    FEATURE_GATES="${KUBE_FEATURE_GATES:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. cluster/gce/config-test.sh

    fi
    
    # List of the set of feature gates recognized by the GCP CCM
    export CCM_FEATURE_GATES="APIPriorityAndFairness,APIResponseCompression,APIServerIdentity,APIServerTracing,AllAlpha,AllBeta,CustomResourceValidationExpressions,KMSv2,OpenAPIEnums,OpenAPIV3,ServerSideFieldValidation,StorageVersionAPI,StorageVersionHash"
    
    # Optional: Install cluster DNS.
    # Set CLUSTER_DNS_CORE_DNS to 'false' to install kube-dns instead of CoreDNS.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. hack/update-codegen.sh

            "staging/src/k8s.io/kubelet/pkg/apis/deviceplugin"
    
            "staging/src/k8s.io/kms/apis"
            "staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2"
    
            "staging/src/k8s.io/kubelet/pkg/apis/dra"
    
            "staging/src/k8s.io/kubelet/pkg/apis/pluginregistration"
            "pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis"
        )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	genericfeatures.EfficientWatchResumption: {Default: true, PreRelease: featuregate.GA, LockToDefault: true},
    
    	genericfeatures.KMSv1: {Default: false, PreRelease: featuregate.Deprecated},
    
    	genericfeatures.KMSv2: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.31
    
    	genericfeatures.KMSv2KDF: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.31
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - The CRD validation rule with feature gate `CustomResourceValidationExpressions` was promoted to `GA`. ([#121373](https://github.com/kubernetes/kubernetes/pull/121373), [@cici37](https://github.com/cici37))
    - The KMSv2 features with feature gates `KMSv2` and `KMSv2KDF` are promoted to `GA`.  The `KMSv1` feature gate is now disabled by default. ([#121485](https://github.com/kubernetes/kubernetes/pull/121485), [@ritazh](https://github.com/ritazh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Updated API reference for Requests, specifying they must not exceed limits ([#115434](https://github.com/kubernetes/kubernetes/pull/115434), [@ehashman](https://github.com/ehashman))
    - Updated `KMSv2` to beta ([#115123](https://github.com/kubernetes/kubernetes/pull/115123), [@aramase](https://github.com/aramase))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top