diff --git a/.golangci.yaml b/.golangci.yaml
new file mode 100644
index 00000000000..b47dc9da4f2
--- /dev/null
+++ b/.golangci.yaml
@@ -0,0 +1,39 @@
+run:
+ timeout: 30m
+ skip-files:
+ - "^zz_generated.*"
+
+issues:
+ max-same-issues: 0
+ # Excluding configuration per-path, per-linter, per-text and per-source
+ exclude-rules:
+ # exclude ineffassing linter for generated files for conversion
+ - path: conversion\.go
+ linters:
+ - ineffassign
+
+linters:
+ disable-all: true
+ enable: # please keep this alphabetized
+ # Don't use soon to deprecated[1] linters that lead to false
+ # https://github.com/golangci/golangci-lint/issues/1841
+ # - deadcode
+ # - structcheck
+ # - varcheck
+ - ineffassign
+ - staticcheck
+ - unused
+
+linters-settings: # please keep this alphabetized
+ staticcheck:
+ go: "1.17"
+ checks: [
+ "all",
+ "-S1*", # TODO(fix) Omit code simplifications for now.
+ "-ST1*", # Mostly stylistic, redundant w/ golint
+ "-SA5011", # TODO(fix) Possible nil pointer dereference
+ "-SA1019", # TODO(fix) Using a deprecated function, variable, constant or field
+ "-SA2002" # TODO(fix) Called testing.T.FailNow or SkipNow in a goroutine, which isn’t allowed
+ ]
+ unused:
+ go: "1.17"
diff --git a/CHANGELOG/CHANGELOG-1.20.md b/CHANGELOG/CHANGELOG-1.20.md
index bbff9418877..a06bb1648ab 100644
--- a/CHANGELOG/CHANGELOG-1.20.md
+++ b/CHANGELOG/CHANGELOG-1.20.md
@@ -1,57 +1,58 @@
-- [v1.20.12](#v12012)
- - [Downloads for v1.20.12](#downloads-for-v12012)
+- [v1.20.13](#v12013)
+ - [Downloads for v1.20.13](#downloads-for-v12013)
- [Source Code](#source-code)
- [Client Binaries](#client-binaries)
- [Server Binaries](#server-binaries)
- [Node Binaries](#node-binaries)
- - [Changelog since v1.20.11](#changelog-since-v12011)
+ - [Changelog since v1.20.12](#changelog-since-v12012)
- [Changes by Kind](#changes-by-kind)
- - [API Change](#api-change)
+ - [Feature](#feature)
+ - [Failing Test](#failing-test)
- [Bug or Regression](#bug-or-regression)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
- [Dependencies](#dependencies)
- [Added](#added)
- [Changed](#changed)
- [Removed](#removed)
-- [v1.20.11](#v12011)
- - [Downloads for v1.20.11](#downloads-for-v12011)
+- [v1.20.12](#v12012)
+ - [Downloads for v1.20.12](#downloads-for-v12012)
- [Source Code](#source-code-1)
- [Client Binaries](#client-binaries-1)
- [Server Binaries](#server-binaries-1)
- [Node Binaries](#node-binaries-1)
- - [Changelog since v1.20.10](#changelog-since-v12010)
- - [Important Security Information](#important-security-information)
- - [CVE-2021-25741: Symlink Exchange Can Allow Host Filesystem Access](#cve-2021-25741-symlink-exchange-can-allow-host-filesystem-access)
+ - [Changelog since v1.20.11](#changelog-since-v12011)
- [Changes by Kind](#changes-by-kind-1)
+ - [API Change](#api-change)
- [Bug or Regression](#bug-or-regression-1)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-1)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
- [Dependencies](#dependencies-1)
- [Added](#added-1)
- [Changed](#changed-1)
- [Removed](#removed-1)
-- [v1.20.10](#v12010)
- - [Downloads for v1.20.10](#downloads-for-v12010)
+- [v1.20.11](#v12011)
+ - [Downloads for v1.20.11](#downloads-for-v12011)
- [Source Code](#source-code-2)
- [Client Binaries](#client-binaries-2)
- [Server Binaries](#server-binaries-2)
- [Node Binaries](#node-binaries-2)
- - [Changelog since v1.20.9](#changelog-since-v1209)
+ - [Changelog since v1.20.10](#changelog-since-v12010)
+ - [Important Security Information](#important-security-information)
+ - [CVE-2021-25741: Symlink Exchange Can Allow Host Filesystem Access](#cve-2021-25741-symlink-exchange-can-allow-host-filesystem-access)
- [Changes by Kind](#changes-by-kind-2)
- - [Feature](#feature)
- [Bug or Regression](#bug-or-regression-2)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-1)
- [Dependencies](#dependencies-2)
- [Added](#added-2)
- [Changed](#changed-2)
- [Removed](#removed-2)
-- [v1.20.9](#v1209)
- - [Downloads for v1.20.9](#downloads-for-v1209)
+- [v1.20.10](#v12010)
+ - [Downloads for v1.20.10](#downloads-for-v12010)
- [Source Code](#source-code-3)
- [Client Binaries](#client-binaries-3)
- [Server Binaries](#server-binaries-3)
- [Node Binaries](#node-binaries-3)
- - [Changelog since v1.20.8](#changelog-since-v1208)
+ - [Changelog since v1.20.9](#changelog-since-v1209)
- [Changes by Kind](#changes-by-kind-3)
- [Feature](#feature-1)
- [Bug or Regression](#bug-or-regression-3)
@@ -59,128 +60,142 @@
- [Added](#added-3)
- [Changed](#changed-3)
- [Removed](#removed-3)
-- [v1.20.8](#v1208)
- - [Downloads for v1.20.8](#downloads-for-v1208)
+- [v1.20.9](#v1209)
+ - [Downloads for v1.20.9](#downloads-for-v1209)
- [Source Code](#source-code-4)
- [Client Binaries](#client-binaries-4)
- [Server Binaries](#server-binaries-4)
- [Node Binaries](#node-binaries-4)
- - [Changelog since v1.20.7](#changelog-since-v1207)
+ - [Changelog since v1.20.8](#changelog-since-v1208)
- [Changes by Kind](#changes-by-kind-4)
- [Feature](#feature-2)
- - [Failing Test](#failing-test)
- [Bug or Regression](#bug-or-regression-4)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-2)
- [Dependencies](#dependencies-4)
- [Added](#added-4)
- [Changed](#changed-4)
- [Removed](#removed-4)
-- [v1.20.7](#v1207)
- - [Downloads for v1.20.7](#downloads-for-v1207)
+- [v1.20.8](#v1208)
+ - [Downloads for v1.20.8](#downloads-for-v1208)
- [Source Code](#source-code-5)
- [Client Binaries](#client-binaries-5)
- [Server Binaries](#server-binaries-5)
- [Node Binaries](#node-binaries-5)
- - [Changelog since v1.20.6](#changelog-since-v1206)
+ - [Changelog since v1.20.7](#changelog-since-v1207)
- [Changes by Kind](#changes-by-kind-5)
- - [API Change](#api-change-1)
- [Feature](#feature-3)
+ - [Failing Test](#failing-test-1)
- [Bug or Regression](#bug-or-regression-5)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-2)
- [Dependencies](#dependencies-5)
- [Added](#added-5)
- [Changed](#changed-5)
- [Removed](#removed-5)
-- [v1.20.6](#v1206)
- - [Downloads for v1.20.6](#downloads-for-v1206)
+- [v1.20.7](#v1207)
+ - [Downloads for v1.20.7](#downloads-for-v1207)
- [Source Code](#source-code-6)
- - [Client binaries](#client-binaries-6)
- - [Server binaries](#server-binaries-6)
- - [Node binaries](#node-binaries-6)
- - [Changelog since v1.20.5](#changelog-since-v1205)
- - [Important Security Information](#important-security-information-1)
- - [CVE-2021-25735: Validating Admission Webhook does not observe some previous fields](#cve-2021-25735-validating-admission-webhook-does-not-observe-some-previous-fields)
+ - [Client Binaries](#client-binaries-6)
+ - [Server Binaries](#server-binaries-6)
+ - [Node Binaries](#node-binaries-6)
+ - [Changelog since v1.20.6](#changelog-since-v1206)
- [Changes by Kind](#changes-by-kind-6)
- - [API Change](#api-change-2)
+ - [API Change](#api-change-1)
- [Feature](#feature-4)
- [Bug or Regression](#bug-or-regression-6)
- - [Uncategorized](#uncategorized)
- [Dependencies](#dependencies-6)
- [Added](#added-6)
- [Changed](#changed-6)
- [Removed](#removed-6)
-- [v1.20.5](#v1205)
- - [Downloads for v1.20.5](#downloads-for-v1205)
+- [v1.20.6](#v1206)
+ - [Downloads for v1.20.6](#downloads-for-v1206)
- [Source Code](#source-code-7)
- [Client binaries](#client-binaries-7)
- [Server binaries](#server-binaries-7)
- [Node binaries](#node-binaries-7)
- - [Changelog since v1.20.4](#changelog-since-v1204)
+ - [Changelog since v1.20.5](#changelog-since-v1205)
+ - [Important Security Information](#important-security-information-1)
+ - [CVE-2021-25735: Validating Admission Webhook does not observe some previous fields](#cve-2021-25735-validating-admission-webhook-does-not-observe-some-previous-fields)
- [Changes by Kind](#changes-by-kind-7)
- - [Failing Test](#failing-test-1)
+ - [API Change](#api-change-2)
+ - [Feature](#feature-5)
- [Bug or Regression](#bug-or-regression-7)
+ - [Uncategorized](#uncategorized)
- [Dependencies](#dependencies-7)
- [Added](#added-7)
- [Changed](#changed-7)
- [Removed](#removed-7)
-- [v1.20.4](#v1204)
- - [Downloads for v1.20.4](#downloads-for-v1204)
+- [v1.20.5](#v1205)
+ - [Downloads for v1.20.5](#downloads-for-v1205)
- [Source Code](#source-code-8)
- [Client binaries](#client-binaries-8)
- [Server binaries](#server-binaries-8)
- [Node binaries](#node-binaries-8)
- - [Changelog since v1.20.3](#changelog-since-v1203)
+ - [Changelog since v1.20.4](#changelog-since-v1204)
+ - [Changes by Kind](#changes-by-kind-8)
+ - [Failing Test](#failing-test-2)
+ - [Bug or Regression](#bug-or-regression-8)
- [Dependencies](#dependencies-8)
- [Added](#added-8)
- [Changed](#changed-8)
- [Removed](#removed-8)
-- [v1.20.3](#v1203)
- - [Downloads for v1.20.3](#downloads-for-v1203)
+- [v1.20.4](#v1204)
+ - [Downloads for v1.20.4](#downloads-for-v1204)
- [Source Code](#source-code-9)
- [Client binaries](#client-binaries-9)
- [Server binaries](#server-binaries-9)
- [Node binaries](#node-binaries-9)
- - [Changelog since v1.20.2](#changelog-since-v1202)
- - [Changes by Kind](#changes-by-kind-8)
- - [API Change](#api-change-3)
- - [Failing Test](#failing-test-2)
- - [Bug or Regression](#bug-or-regression-8)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
+ - [Changelog since v1.20.3](#changelog-since-v1203)
- [Dependencies](#dependencies-9)
- [Added](#added-9)
- [Changed](#changed-9)
- [Removed](#removed-9)
-- [v1.20.2](#v1202)
- - [Downloads for v1.20.2](#downloads-for-v1202)
+- [v1.20.3](#v1203)
+ - [Downloads for v1.20.3](#downloads-for-v1203)
- [Source Code](#source-code-10)
- [Client binaries](#client-binaries-10)
- [Server binaries](#server-binaries-10)
- [Node binaries](#node-binaries-10)
- - [Changelog since v1.20.1](#changelog-since-v1201)
+ - [Changelog since v1.20.2](#changelog-since-v1202)
- [Changes by Kind](#changes-by-kind-9)
+ - [API Change](#api-change-3)
+ - [Failing Test](#failing-test-3)
- [Bug or Regression](#bug-or-regression-9)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
- [Dependencies](#dependencies-10)
- [Added](#added-10)
- [Changed](#changed-10)
- [Removed](#removed-10)
-- [v1.20.1](#v1201)
- - [Downloads for v1.20.1](#downloads-for-v1201)
+- [v1.20.2](#v1202)
+ - [Downloads for v1.20.2](#downloads-for-v1202)
- [Source Code](#source-code-11)
- [Client binaries](#client-binaries-11)
- [Server binaries](#server-binaries-11)
- [Node binaries](#node-binaries-11)
- - [Changelog since v1.20.0](#changelog-since-v1200)
+ - [Changelog since v1.20.1](#changelog-since-v1201)
- [Changes by Kind](#changes-by-kind-10)
- [Bug or Regression](#bug-or-regression-10)
- [Dependencies](#dependencies-11)
- [Added](#added-11)
- [Changed](#changed-11)
- [Removed](#removed-11)
+- [v1.20.1](#v1201)
+ - [Downloads for v1.20.1](#downloads-for-v1201)
+ - [Source Code](#source-code-12)
+ - [Client binaries](#client-binaries-12)
+ - [Server binaries](#server-binaries-12)
+ - [Node binaries](#node-binaries-12)
+ - [Changelog since v1.20.0](#changelog-since-v1200)
+ - [Changes by Kind](#changes-by-kind-11)
+ - [Bug or Regression](#bug-or-regression-11)
+ - [Dependencies](#dependencies-12)
+ - [Added](#added-12)
+ - [Changed](#changed-12)
+ - [Removed](#removed-12)
- [v1.20.0](#v1200)
- [Downloads for v1.20.0](#downloads-for-v1200)
- - [Source Code](#source-code-12)
- - [Client Binaries](#client-binaries-12)
- - [Server Binaries](#server-binaries-12)
- - [Node Binaries](#node-binaries-12)
+ - [Source Code](#source-code-13)
+ - [Client Binaries](#client-binaries-13)
+ - [Server Binaries](#server-binaries-13)
+ - [Node Binaries](#node-binaries-13)
- [Changelog since v1.19.0](#changelog-since-v1190)
- [What's New (Major Themes)](#whats-new-major-themes)
- [Dockershim deprecation](#dockershim-deprecation)
@@ -208,148 +223,228 @@
- [Summary API in kubelet doesn't have accelerator metrics](#summary-api-in-kubelet-doesnt-have-accelerator-metrics)
- [Urgent Upgrade Notes](#urgent-upgrade-notes)
- [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
- - [Changes by Kind](#changes-by-kind-11)
+ - [Changes by Kind](#changes-by-kind-12)
- [Deprecation](#deprecation)
- [API Change](#api-change-4)
- - [Feature](#feature-5)
- - [Documentation](#documentation)
- - [Failing Test](#failing-test-3)
- - [Bug or Regression](#bug-or-regression-11)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
- - [Dependencies](#dependencies-12)
- - [Added](#added-12)
- - [Changed](#changed-12)
- - [Removed](#removed-12)
-- [v1.20.0-rc.0](#v1200-rc0)
- - [Downloads for v1.20.0-rc.0](#downloads-for-v1200-rc0)
- - [Source Code](#source-code-13)
- - [Client binaries](#client-binaries-13)
- - [Server binaries](#server-binaries-13)
- - [Node binaries](#node-binaries-13)
- - [Changelog since v1.20.0-beta.2](#changelog-since-v1200-beta2)
- - [Changes by Kind](#changes-by-kind-12)
- [Feature](#feature-6)
+ - [Documentation](#documentation)
- [Failing Test](#failing-test-4)
- [Bug or Regression](#bug-or-regression-12)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
- [Dependencies](#dependencies-13)
- [Added](#added-13)
- [Changed](#changed-13)
- [Removed](#removed-13)
-- [v1.20.0-beta.2](#v1200-beta2)
- - [Downloads for v1.20.0-beta.2](#downloads-for-v1200-beta2)
+- [v1.20.0-rc.0](#v1200-rc0)
+ - [Downloads for v1.20.0-rc.0](#downloads-for-v1200-rc0)
- [Source Code](#source-code-14)
- [Client binaries](#client-binaries-14)
- [Server binaries](#server-binaries-14)
- [Node binaries](#node-binaries-14)
- - [Changelog since v1.20.0-beta.1](#changelog-since-v1200-beta1)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-1)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-1)
+ - [Changelog since v1.20.0-beta.2](#changelog-since-v1200-beta2)
- [Changes by Kind](#changes-by-kind-13)
- - [Deprecation](#deprecation-1)
- - [API Change](#api-change-5)
- [Feature](#feature-7)
- - [Documentation](#documentation-1)
+ - [Failing Test](#failing-test-5)
- [Bug or Regression](#bug-or-regression-13)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-5)
- [Dependencies](#dependencies-14)
- [Added](#added-14)
- [Changed](#changed-14)
- [Removed](#removed-14)
-- [v1.20.0-beta.1](#v1200-beta1)
- - [Downloads for v1.20.0-beta.1](#downloads-for-v1200-beta1)
+- [v1.20.0-beta.2](#v1200-beta2)
+ - [Downloads for v1.20.0-beta.2](#downloads-for-v1200-beta2)
- [Source Code](#source-code-15)
- [Client binaries](#client-binaries-15)
- [Server binaries](#server-binaries-15)
- [Node binaries](#node-binaries-15)
- - [Changelog since v1.20.0-beta.0](#changelog-since-v1200-beta0)
+ - [Changelog since v1.20.0-beta.1](#changelog-since-v1200-beta1)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-1)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-1)
- [Changes by Kind](#changes-by-kind-14)
- - [Deprecation](#deprecation-2)
- - [API Change](#api-change-6)
+ - [Deprecation](#deprecation-1)
+ - [API Change](#api-change-5)
- [Feature](#feature-8)
- - [Documentation](#documentation-2)
+ - [Documentation](#documentation-1)
- [Bug or Regression](#bug-or-regression-14)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-6)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-5)
- [Dependencies](#dependencies-15)
- [Added](#added-15)
- [Changed](#changed-15)
- [Removed](#removed-15)
-- [v1.20.0-beta.0](#v1200-beta0)
- - [Downloads for v1.20.0-beta.0](#downloads-for-v1200-beta0)
+- [v1.20.0-beta.1](#v1200-beta1)
+ - [Downloads for v1.20.0-beta.1](#downloads-for-v1200-beta1)
- [Source Code](#source-code-16)
- [Client binaries](#client-binaries-16)
- [Server binaries](#server-binaries-16)
- [Node binaries](#node-binaries-16)
- - [Changelog since v1.20.0-alpha.3](#changelog-since-v1200-alpha3)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-2)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-2)
+ - [Changelog since v1.20.0-beta.0](#changelog-since-v1200-beta0)
- [Changes by Kind](#changes-by-kind-15)
- - [Deprecation](#deprecation-3)
- - [API Change](#api-change-7)
+ - [Deprecation](#deprecation-2)
+ - [API Change](#api-change-6)
- [Feature](#feature-9)
- - [Documentation](#documentation-3)
+ - [Documentation](#documentation-2)
- [Bug or Regression](#bug-or-regression-15)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-7)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-6)
- [Dependencies](#dependencies-16)
- [Added](#added-16)
- [Changed](#changed-16)
- [Removed](#removed-16)
-- [v1.20.0-alpha.3](#v1200-alpha3)
- - [Downloads for v1.20.0-alpha.3](#downloads-for-v1200-alpha3)
+- [v1.20.0-beta.0](#v1200-beta0)
+ - [Downloads for v1.20.0-beta.0](#downloads-for-v1200-beta0)
- [Source Code](#source-code-17)
- [Client binaries](#client-binaries-17)
- [Server binaries](#server-binaries-17)
- [Node binaries](#node-binaries-17)
- - [Changelog since v1.20.0-alpha.2](#changelog-since-v1200-alpha2)
+ - [Changelog since v1.20.0-alpha.3](#changelog-since-v1200-alpha3)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-2)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-2)
- [Changes by Kind](#changes-by-kind-16)
- - [API Change](#api-change-8)
+ - [Deprecation](#deprecation-3)
+ - [API Change](#api-change-7)
- [Feature](#feature-10)
+ - [Documentation](#documentation-3)
- [Bug or Regression](#bug-or-regression-16)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-8)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-7)
- [Dependencies](#dependencies-17)
- [Added](#added-17)
- [Changed](#changed-17)
- [Removed](#removed-17)
-- [v1.20.0-alpha.2](#v1200-alpha2)
- - [Downloads for v1.20.0-alpha.2](#downloads-for-v1200-alpha2)
+- [v1.20.0-alpha.3](#v1200-alpha3)
+ - [Downloads for v1.20.0-alpha.3](#downloads-for-v1200-alpha3)
- [Source Code](#source-code-18)
- [Client binaries](#client-binaries-18)
- [Server binaries](#server-binaries-18)
- [Node binaries](#node-binaries-18)
- - [Changelog since v1.20.0-alpha.1](#changelog-since-v1200-alpha1)
+ - [Changelog since v1.20.0-alpha.2](#changelog-since-v1200-alpha2)
- [Changes by Kind](#changes-by-kind-17)
- - [Deprecation](#deprecation-4)
- - [API Change](#api-change-9)
+ - [API Change](#api-change-8)
- [Feature](#feature-11)
- [Bug or Regression](#bug-or-regression-17)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-9)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-8)
- [Dependencies](#dependencies-18)
- [Added](#added-18)
- [Changed](#changed-18)
- [Removed](#removed-18)
-- [v1.20.0-alpha.1](#v1200-alpha1)
- - [Downloads for v1.20.0-alpha.1](#downloads-for-v1200-alpha1)
+- [v1.20.0-alpha.2](#v1200-alpha2)
+ - [Downloads for v1.20.0-alpha.2](#downloads-for-v1200-alpha2)
- [Source Code](#source-code-19)
- [Client binaries](#client-binaries-19)
- [Server binaries](#server-binaries-19)
- [Node binaries](#node-binaries-19)
- - [Changelog since v1.20.0-alpha.0](#changelog-since-v1200-alpha0)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-3)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-3)
+ - [Changelog since v1.20.0-alpha.1](#changelog-since-v1200-alpha1)
- [Changes by Kind](#changes-by-kind-18)
- - [Deprecation](#deprecation-5)
- - [API Change](#api-change-10)
+ - [Deprecation](#deprecation-4)
+ - [API Change](#api-change-9)
- [Feature](#feature-12)
- - [Documentation](#documentation-4)
- - [Failing Test](#failing-test-5)
- [Bug or Regression](#bug-or-regression-18)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-10)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-9)
- [Dependencies](#dependencies-19)
- [Added](#added-19)
- [Changed](#changed-19)
- [Removed](#removed-19)
+- [v1.20.0-alpha.1](#v1200-alpha1)
+ - [Downloads for v1.20.0-alpha.1](#downloads-for-v1200-alpha1)
+ - [Source Code](#source-code-20)
+ - [Client binaries](#client-binaries-20)
+ - [Server binaries](#server-binaries-20)
+ - [Node binaries](#node-binaries-20)
+ - [Changelog since v1.20.0-alpha.0](#changelog-since-v1200-alpha0)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-3)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-3)
+ - [Changes by Kind](#changes-by-kind-19)
+ - [Deprecation](#deprecation-5)
+ - [API Change](#api-change-10)
+ - [Feature](#feature-13)
+ - [Documentation](#documentation-4)
+ - [Failing Test](#failing-test-6)
+ - [Bug or Regression](#bug-or-regression-19)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-10)
+ - [Dependencies](#dependencies-20)
+ - [Added](#added-20)
+ - [Changed](#changed-20)
+ - [Removed](#removed-20)
+# v1.20.13
+
+
+## Downloads for v1.20.13
+
+### Source Code
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes.tar.gz) | 947fd04975772d24ee31d36a1d71ed346e746e6f21649fd3edcf190132960fcc8dab1746566f1446e38d913a5b7c5f76f8cce86cfb80c2c92d1948138f5d2339
+[kubernetes-src.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-src.tar.gz) | 625de292afb64174baee7ecf6d3fd504d249814a8087083e429927969561a41ebcbe89d204cd842a1a16a9d0c5040d932e33be857e9860ee18cc21e5afc14ce6
+
+### Client Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-client-darwin-amd64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-darwin-amd64.tar.gz) | 1917f22cd1c24baa96a4180ea59f1947de8c916afacb9f24836ef052794ac06dd7e68f42215e93bb5be3e25bc3ad768bcf5577bd74411324077d70f2827d6c1d
+[kubernetes-client-linux-386.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-linux-386.tar.gz) | 60d1697f3b28f7cfd4554e25bb24cc234bbe550dc1b2e4cc4dee3c967c6db17ca58e011ea4e7f8ef0fb06310ddaced987fb00b98ff42d41ebf4060eae9d7ca05
+[kubernetes-client-linux-amd64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-linux-amd64.tar.gz) | 9996bfaf06a141215f1d9b955fa12509860a7844e12fed90d93df34f039a340176293befc9eaf5feba0a06fb3492391d34eae54b9248d795e5fba70e06dc649b
+[kubernetes-client-linux-arm.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-linux-arm.tar.gz) | bae6152f2e7adad87a33c0316bea027d57283984b363fb9311ba50eb884931c2f9580d95beb8b4485e515a51578d6850554910d1585ac493c1de7d4909a3315a
+[kubernetes-client-linux-arm64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-linux-arm64.tar.gz) | 3538a624d90a7c53a3afc6f9fbde5429c4456734fc796c3d9cb5018154d5fd2db66008de604a72e6549b67430b65f1ca0a57e9a2480debc321600b747a30678d
+[kubernetes-client-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-linux-ppc64le.tar.gz) | fea02182f587e136bd2856a13e8e08e7f429c4284c46478a1246baba2d0c0dea56eea2aa47aecfddcc4a77df6bedc5f3eb96155f2300ee9f61e7008d62cd21c9
+[kubernetes-client-linux-s390x.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-linux-s390x.tar.gz) | 8934de190a5dcbca3cdc7ddb138aa0b68a35f7079b6e1a4cb1788e4cd4fdc0990422a9a23a0ad212ed6a7185470cc8b8b94c6f690e5ad0f736d6ac1bd8479379
+[kubernetes-client-windows-386.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-windows-386.tar.gz) | 6695048689384b02f2d88a8521008ff25e0eeb1942a2bb5b1283118309b14f4bfb3a5fa3d0344e688deb8cd518540b688f652d6ba8529d0adc0897e8a4e64b69
+[kubernetes-client-windows-amd64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-client-windows-amd64.tar.gz) | 06fee53995bf3b996952235a156d7fc4d7b195809df444b6041aa5cf4e2e9ba94783bd516e60aa7f85a7d83fd247a33369bbd8068b0238e5a250508fd2d9d51b
+
+### Server Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-server-linux-amd64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-server-linux-amd64.tar.gz) | 093adbdb906d0e1cd0e411923b86cfd17c5738af3ccf7d582beebbab1807a1c9e1a9a7d84655bb15504436ffbbeb2ac620e576c5049afef362c2f476ac13c9f8
+[kubernetes-server-linux-arm.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-server-linux-arm.tar.gz) | 809f35ce523e6ee81b9ba8620da9323febcac7f19f6c3c9af58431532ac7cd15fed1554fbc30738edb053a06192708ca4cf37007d6313f62b8bbfb05511311c0
+[kubernetes-server-linux-arm64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-server-linux-arm64.tar.gz) | 7f78363274b1a18e73684224bc49c990b3177b5273d452ef11dd43de54a61b2a314e9d39914e93df75fdab452745bf3b18cbedb43e08eddc63ce05b81e7bfc4f
+[kubernetes-server-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-server-linux-ppc64le.tar.gz) | 5c1c48e089b4eb05e4af5792df019338181c4944d8c7ac482f837c72560eaab6b5c01dd488c8c7fff9c88a94663fb188b6877a583581d6002c101147765d6a3d
+[kubernetes-server-linux-s390x.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-server-linux-s390x.tar.gz) | 6becbc3f9090865864e35da36610c6c334929ebd9be21302470c8dd42fb6bd95f9d9f4da75d5fd30ca75c51f263e946a36792e764e22899694b2abd59372c510
+
+### Node Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-node-linux-amd64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-node-linux-amd64.tar.gz) | ebdad27e4e04ff3a01ee401ddaa8e97a29fb1eeca206ad9c5e7f3a559ed44cd238609c71628c2bd171e5a0422fef234ca79de070f046f6f5df3870e795f4b515
+[kubernetes-node-linux-arm.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-node-linux-arm.tar.gz) | 2ea6a436cd58a484dc20701354a40d0348bb9f8b4e68c804e2c99ce980ccbcfebec65aee9059de29c8e2c1e5582cff8ed352ed16c5fd600744658ab70127c0ca
+[kubernetes-node-linux-arm64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-node-linux-arm64.tar.gz) | a1d13edb0d4db7b1d5c1e509137d83b48b190ab97ddc69099bc159840710eb8fdd2cf43abe698c0a97443be05aca372e04b7c780cb61c1703caab1e342a56049
+[kubernetes-node-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-node-linux-ppc64le.tar.gz) | ff0d1aa8b973c1caec51201f08da93c3fa3647612095a0907ef23d2f17ca3e851a6ac7471f17ced816f98d9d3466333d25b9bed827cfea835adcd009ed08257f
+[kubernetes-node-linux-s390x.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-node-linux-s390x.tar.gz) | 9db952b4211f0ea245198603b09e531ef8943396af073bbbaec8409a85660cf1931706bce8b8b5afd59f6743d3aa37a662dd61afa5fedd22c039da8c2935ec0a
+[kubernetes-node-windows-amd64.tar.gz](https://dl.k8s.io/v1.20.13/kubernetes-node-windows-amd64.tar.gz) | 0defcafccc2d4c82169a40449211b45d9e3fb11d13612e7332463604e52f1dae97bf60b85e20eb6d2ab063fa1885a3cd7dfc4ef4102f9ff306fb3ca3dc256120
+
+## Changelog since v1.20.12
+
+## Changes by Kind
+
+### Feature
+
+- Update debian-base, debian-iptables, setcap images to pick up CVE fixes
+ - Debian-base to v1.9.0
+ - Debian-iptables to v1.6.7 (#106148, @cpanato) [SIG Release and Testing]
+
+### Failing Test
+
+- Fixes hostpath storage e2e tests within SELinux enabled env (#105788, @Elbehery) [SIG Testing]
+
+### Bug or Regression
+
+- EndpointSlice Mirroring controller now cleans up managed EndpointSlices when a Service selector is added (#106136, @robscott) [SIG Apps, Network and Testing]
+- Fix concurrent map access causing panics when logging timed-out API calls. (#106124, @marseel) [SIG API Machinery]
+- Support more than 100 disk mounts on Windows (#105673, @andyzhangx) [SIG Storage and Windows]
+
+## Dependencies
+
+### Added
+_Nothing has changed._
+
+### Changed
+- k8s.io/kube-openapi: d219536 → 83f114c
+
+### Removed
+_Nothing has changed._
+
+
+
# v1.20.12
diff --git a/CHANGELOG/CHANGELOG-1.21.md b/CHANGELOG/CHANGELOG-1.21.md
index 024c304e33f..b3e1a47f8ea 100644
--- a/CHANGELOG/CHANGELOG-1.21.md
+++ b/CHANGELOG/CHANGELOG-1.21.md
@@ -1,14 +1,13 @@
-- [v1.21.6](#v1216)
- - [Downloads for v1.21.6](#downloads-for-v1216)
+- [v1.21.7](#v1217)
+ - [Downloads for v1.21.7](#downloads-for-v1217)
- [Source Code](#source-code)
- [Client Binaries](#client-binaries)
- [Server Binaries](#server-binaries)
- [Node Binaries](#node-binaries)
- - [Changelog since v1.21.5](#changelog-since-v1215)
+ - [Changelog since v1.21.6](#changelog-since-v1216)
- [Changes by Kind](#changes-by-kind)
- - [API Change](#api-change)
- [Feature](#feature)
- [Failing Test](#failing-test)
- [Bug or Regression](#bug-or-regression)
@@ -16,44 +15,46 @@
- [Added](#added)
- [Changed](#changed)
- [Removed](#removed)
-- [v1.21.5](#v1215)
- - [Downloads for v1.21.5](#downloads-for-v1215)
+- [v1.21.6](#v1216)
+ - [Downloads for v1.21.6](#downloads-for-v1216)
- [Source Code](#source-code-1)
- [Client Binaries](#client-binaries-1)
- [Server Binaries](#server-binaries-1)
- [Node Binaries](#node-binaries-1)
- - [Changelog since v1.21.4](#changelog-since-v1214)
- - [Important Security Information](#important-security-information)
- - [CVE-2021-25741: Symlink Exchange Can Allow Host Filesystem Access](#cve-2021-25741-symlink-exchange-can-allow-host-filesystem-access)
+ - [Changelog since v1.21.5](#changelog-since-v1215)
- [Changes by Kind](#changes-by-kind-1)
+ - [API Change](#api-change)
- [Feature](#feature-1)
+ - [Failing Test](#failing-test-1)
- [Bug or Regression](#bug-or-regression-1)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
- [Dependencies](#dependencies-1)
- [Added](#added-1)
- [Changed](#changed-1)
- [Removed](#removed-1)
-- [v1.21.4](#v1214)
- - [Downloads for v1.21.4](#downloads-for-v1214)
+- [v1.21.5](#v1215)
+ - [Downloads for v1.21.5](#downloads-for-v1215)
- [Source Code](#source-code-2)
- [Client Binaries](#client-binaries-2)
- [Server Binaries](#server-binaries-2)
- [Node Binaries](#node-binaries-2)
- - [Changelog since v1.21.3](#changelog-since-v1213)
+ - [Changelog since v1.21.4](#changelog-since-v1214)
+ - [Important Security Information](#important-security-information)
+ - [CVE-2021-25741: Symlink Exchange Can Allow Host Filesystem Access](#cve-2021-25741-symlink-exchange-can-allow-host-filesystem-access)
- [Changes by Kind](#changes-by-kind-2)
- [Feature](#feature-2)
- [Bug or Regression](#bug-or-regression-2)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
- [Dependencies](#dependencies-2)
- [Added](#added-2)
- [Changed](#changed-2)
- [Removed](#removed-2)
-- [v1.21.3](#v1213)
- - [Downloads for v1.21.3](#downloads-for-v1213)
+- [v1.21.4](#v1214)
+ - [Downloads for v1.21.4](#downloads-for-v1214)
- [Source Code](#source-code-3)
- [Client Binaries](#client-binaries-3)
- [Server Binaries](#server-binaries-3)
- [Node Binaries](#node-binaries-3)
- - [Changelog since v1.21.2](#changelog-since-v1212)
+ - [Changelog since v1.21.3](#changelog-since-v1213)
- [Changes by Kind](#changes-by-kind-3)
- [Feature](#feature-3)
- [Bug or Regression](#bug-or-regression-3)
@@ -61,44 +62,58 @@
- [Added](#added-3)
- [Changed](#changed-3)
- [Removed](#removed-3)
-- [v1.21.2](#v1212)
- - [Downloads for v1.21.2](#downloads-for-v1212)
+- [v1.21.3](#v1213)
+ - [Downloads for v1.21.3](#downloads-for-v1213)
- [Source Code](#source-code-4)
- [Client Binaries](#client-binaries-4)
- [Server Binaries](#server-binaries-4)
- [Node Binaries](#node-binaries-4)
- - [Changelog since v1.21.1](#changelog-since-v1211)
+ - [Changelog since v1.21.2](#changelog-since-v1212)
- [Changes by Kind](#changes-by-kind-4)
- [Feature](#feature-4)
- - [Failing Test](#failing-test-1)
- [Bug or Regression](#bug-or-regression-4)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-1)
- [Dependencies](#dependencies-4)
- [Added](#added-4)
- [Changed](#changed-4)
- [Removed](#removed-4)
-- [v1.21.1](#v1211)
- - [Downloads for v1.21.1](#downloads-for-v1211)
+- [v1.21.2](#v1212)
+ - [Downloads for v1.21.2](#downloads-for-v1212)
- [Source Code](#source-code-5)
- [Client Binaries](#client-binaries-5)
- [Server Binaries](#server-binaries-5)
- [Node Binaries](#node-binaries-5)
- - [Changelog since v1.21.0](#changelog-since-v1210)
+ - [Changelog since v1.21.1](#changelog-since-v1211)
- [Changes by Kind](#changes-by-kind-5)
- - [API Change](#api-change-1)
- [Feature](#feature-5)
- [Failing Test](#failing-test-2)
- [Bug or Regression](#bug-or-regression-5)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-1)
- [Dependencies](#dependencies-5)
- [Added](#added-5)
- [Changed](#changed-5)
- [Removed](#removed-5)
-- [v1.21.0](#v1210)
- - [Downloads for v1.21.0](#downloads-for-v1210)
+- [v1.21.1](#v1211)
+ - [Downloads for v1.21.1](#downloads-for-v1211)
- [Source Code](#source-code-6)
- [Client Binaries](#client-binaries-6)
- [Server Binaries](#server-binaries-6)
- [Node Binaries](#node-binaries-6)
+ - [Changelog since v1.21.0](#changelog-since-v1210)
+ - [Changes by Kind](#changes-by-kind-6)
+ - [API Change](#api-change-1)
+ - [Feature](#feature-6)
+ - [Failing Test](#failing-test-3)
+ - [Bug or Regression](#bug-or-regression-6)
+ - [Dependencies](#dependencies-6)
+ - [Added](#added-6)
+ - [Changed](#changed-6)
+ - [Removed](#removed-6)
+- [v1.21.0](#v1210)
+ - [Downloads for v1.21.0](#downloads-for-v1210)
+ - [Source Code](#source-code-7)
+ - [Client Binaries](#client-binaries-7)
+ - [Server Binaries](#server-binaries-7)
+ - [Node Binaries](#node-binaries-7)
- [Changelog since v1.20.0](#changelog-since-v1200)
- [What's New (Major Themes)](#whats-new-major-themes)
- [Deprecation of PodSecurityPolicy](#deprecation-of-podsecuritypolicy)
@@ -115,140 +130,228 @@
- [TopologyAwareHints
feature falls back to default behavior](#topologyawarehints-feature-falls-back-to-default-behavior)
- [Urgent Upgrade Notes](#urgent-upgrade-notes)
- [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
- - [Changes by Kind](#changes-by-kind-6)
+ - [Changes by Kind](#changes-by-kind-7)
- [Deprecation](#deprecation)
- [API Change](#api-change-2)
- - [Feature](#feature-6)
+ - [Feature](#feature-7)
- [Documentation](#documentation)
- - [Failing Test](#failing-test-3)
- - [Bug or Regression](#bug-or-regression-6)
+ - [Failing Test](#failing-test-4)
+ - [Bug or Regression](#bug-or-regression-7)
- [Other (Cleanup or Flake)](#other-cleanup-or-flake-2)
- [Uncategorized](#uncategorized)
- - [Dependencies](#dependencies-6)
- - [Added](#added-6)
- - [Changed](#changed-6)
- - [Removed](#removed-6)
-- [v1.21.0-rc.0](#v1210-rc0)
- - [Downloads for v1.21.0-rc.0](#downloads-for-v1210-rc0)
- - [Source Code](#source-code-7)
- - [Client binaries](#client-binaries-7)
- - [Server binaries](#server-binaries-7)
- - [Node binaries](#node-binaries-7)
- - [Changelog since v1.21.0-beta.1](#changelog-since-v1210-beta1)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-1)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-1)
- - [Changes by Kind](#changes-by-kind-7)
- - [API Change](#api-change-3)
- - [Feature](#feature-7)
- - [Bug or Regression](#bug-or-regression-7)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
- [Dependencies](#dependencies-7)
- [Added](#added-7)
- [Changed](#changed-7)
- [Removed](#removed-7)
-- [v1.21.0-beta.1](#v1210-beta1)
- - [Downloads for v1.21.0-beta.1](#downloads-for-v1210-beta1)
+- [v1.21.0-rc.0](#v1210-rc0)
+ - [Downloads for v1.21.0-rc.0](#downloads-for-v1210-rc0)
- [Source Code](#source-code-8)
- [Client binaries](#client-binaries-8)
- [Server binaries](#server-binaries-8)
- [Node binaries](#node-binaries-8)
- - [Changelog since v1.21.0-beta.0](#changelog-since-v1210-beta0)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-2)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-2)
+ - [Changelog since v1.21.0-beta.1](#changelog-since-v1210-beta1)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-1)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-1)
- [Changes by Kind](#changes-by-kind-8)
- - [Deprecation](#deprecation-1)
- - [API Change](#api-change-4)
+ - [API Change](#api-change-3)
- [Feature](#feature-8)
- [Bug or Regression](#bug-or-regression-8)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
- - [Uncategorized](#uncategorized-1)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
- [Dependencies](#dependencies-8)
- [Added](#added-8)
- [Changed](#changed-8)
- [Removed](#removed-8)
-- [v1.21.0-beta.0](#v1210-beta0)
- - [Downloads for v1.21.0-beta.0](#downloads-for-v1210-beta0)
+- [v1.21.0-beta.1](#v1210-beta1)
+ - [Downloads for v1.21.0-beta.1](#downloads-for-v1210-beta1)
- [Source Code](#source-code-9)
- [Client binaries](#client-binaries-9)
- [Server binaries](#server-binaries-9)
- [Node binaries](#node-binaries-9)
- - [Changelog since v1.21.0-alpha.3](#changelog-since-v1210-alpha3)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-3)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-3)
+ - [Changelog since v1.21.0-beta.0](#changelog-since-v1210-beta0)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-2)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-2)
- [Changes by Kind](#changes-by-kind-9)
- - [Deprecation](#deprecation-2)
- - [API Change](#api-change-5)
+ - [Deprecation](#deprecation-1)
+ - [API Change](#api-change-4)
- [Feature](#feature-9)
- - [Documentation](#documentation-1)
- - [Failing Test](#failing-test-4)
- [Bug or Regression](#bug-or-regression-9)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-5)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
+ - [Uncategorized](#uncategorized-1)
- [Dependencies](#dependencies-9)
- [Added](#added-9)
- [Changed](#changed-9)
- [Removed](#removed-9)
-- [v1.21.0-alpha.3](#v1210-alpha3)
- - [Downloads for v1.21.0-alpha.3](#downloads-for-v1210-alpha3)
+- [v1.21.0-beta.0](#v1210-beta0)
+ - [Downloads for v1.21.0-beta.0](#downloads-for-v1210-beta0)
- [Source Code](#source-code-10)
- [Client binaries](#client-binaries-10)
- [Server binaries](#server-binaries-10)
- [Node binaries](#node-binaries-10)
- - [Changelog since v1.21.0-alpha.2](#changelog-since-v1210-alpha2)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-4)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-4)
+ - [Changelog since v1.21.0-alpha.3](#changelog-since-v1210-alpha3)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-3)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-3)
- [Changes by Kind](#changes-by-kind-10)
- - [API Change](#api-change-6)
+ - [Deprecation](#deprecation-2)
+ - [API Change](#api-change-5)
- [Feature](#feature-10)
- - [Documentation](#documentation-2)
+ - [Documentation](#documentation-1)
- [Failing Test](#failing-test-5)
- [Bug or Regression](#bug-or-regression-10)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-6)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-5)
- [Dependencies](#dependencies-10)
- [Added](#added-10)
- [Changed](#changed-10)
- [Removed](#removed-10)
-- [v1.21.0-alpha.2](#v1210-alpha2)
- - [Downloads for v1.21.0-alpha.2](#downloads-for-v1210-alpha2)
+- [v1.21.0-alpha.3](#v1210-alpha3)
+ - [Downloads for v1.21.0-alpha.3](#downloads-for-v1210-alpha3)
- [Source Code](#source-code-11)
- [Client binaries](#client-binaries-11)
- [Server binaries](#server-binaries-11)
- [Node binaries](#node-binaries-11)
- - [Changelog since v1.21.0-alpha.1](#changelog-since-v1210-alpha1)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-5)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-5)
+ - [Changelog since v1.21.0-alpha.2](#changelog-since-v1210-alpha2)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-4)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-4)
- [Changes by Kind](#changes-by-kind-11)
- - [Deprecation](#deprecation-3)
- - [API Change](#api-change-7)
- - [Documentation](#documentation-3)
+ - [API Change](#api-change-6)
+ - [Feature](#feature-11)
+ - [Documentation](#documentation-2)
+ - [Failing Test](#failing-test-6)
- [Bug or Regression](#bug-or-regression-11)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-7)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-6)
- [Dependencies](#dependencies-11)
- [Added](#added-11)
- [Changed](#changed-11)
- [Removed](#removed-11)
-- [v1.21.0-alpha.1](#v1210-alpha1)
- - [Downloads for v1.21.0-alpha.1](#downloads-for-v1210-alpha1)
+- [v1.21.0-alpha.2](#v1210-alpha2)
+ - [Downloads for v1.21.0-alpha.2](#downloads-for-v1210-alpha2)
- [Source Code](#source-code-12)
- [Client binaries](#client-binaries-12)
- [Server binaries](#server-binaries-12)
- [Node binaries](#node-binaries-12)
- - [Changelog since v1.20.0](#changelog-since-v1200-1)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes-6)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-6)
+ - [Changelog since v1.21.0-alpha.1](#changelog-since-v1210-alpha1)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-5)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-5)
- [Changes by Kind](#changes-by-kind-12)
- - [Deprecation](#deprecation-4)
- - [API Change](#api-change-8)
- - [Feature](#feature-11)
+ - [Deprecation](#deprecation-3)
+ - [API Change](#api-change-7)
+ - [Documentation](#documentation-3)
- [Bug or Regression](#bug-or-regression-12)
- - [Other (Cleanup or Flake)](#other-cleanup-or-flake-8)
- - [Uncategorized](#uncategorized-2)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-7)
- [Dependencies](#dependencies-12)
- [Added](#added-12)
- [Changed](#changed-12)
- [Removed](#removed-12)
+- [v1.21.0-alpha.1](#v1210-alpha1)
+ - [Downloads for v1.21.0-alpha.1](#downloads-for-v1210-alpha1)
+ - [Source Code](#source-code-13)
+ - [Client binaries](#client-binaries-13)
+ - [Server binaries](#server-binaries-13)
+ - [Node binaries](#node-binaries-13)
+ - [Changelog since v1.20.0](#changelog-since-v1200-1)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-6)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-6)
+ - [Changes by Kind](#changes-by-kind-13)
+ - [Deprecation](#deprecation-4)
+ - [API Change](#api-change-8)
+ - [Feature](#feature-12)
+ - [Bug or Regression](#bug-or-regression-13)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-8)
+ - [Uncategorized](#uncategorized-2)
+ - [Dependencies](#dependencies-13)
+ - [Added](#added-13)
+ - [Changed](#changed-13)
+ - [Removed](#removed-13)
+# v1.21.7
+
+
+## Downloads for v1.21.7
+
+### Source Code
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes.tar.gz) | 272b73d76a8d90cea95940bf5b67eb04b9b5d118734398072955b556a9c05f72b5a200b1d546503a2ba106283d7e60c0c2634c2886bcc9fc3d6c0e045c3290de
+[kubernetes-src.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-src.tar.gz) | ca3de4042795d663c1a68a2a782842904b7f95eb91b9e4c87db0c161fb510b4dcdbe7b1d8209a2bcde9f3ba7cb9ce49814483fb11bad693391017bef1bc4c1fc
+
+### Client Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-client-darwin-amd64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-darwin-amd64.tar.gz) | 4bc06c7b023d7a1f5b592c97b46c979e89e168d188d1bcf8999256a38dee63122a4bfd5756fc881e6447752c0098268769e125863162c3ffd36fd53d905fbe68
+[kubernetes-client-darwin-arm64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-darwin-arm64.tar.gz) | 73a0e841f631cae0f7a84c3460187e7c8718f77d82e13af57204ba83cc40e1421ae423a30c4565234cfae5eaf7df7d8f58cdb707dcdf6b050054b69d83592c78
+[kubernetes-client-linux-386.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-linux-386.tar.gz) | dca88b5c60a7e512195c29157a25b3b3702d50c24b3b90f719b1f887bd1c4284dcedc8f9358e5828fd6bc171d3797789749a6969b7294a9023472738eb4974bc
+[kubernetes-client-linux-amd64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-linux-amd64.tar.gz) | aafab261dae85c3a4a3e4affbf8e24d62a80c34c6fdba312cf741588825cf50a85821a8afbf98430db879c3f6a375b566854071b4235ab1c19ad2c201c357f3e
+[kubernetes-client-linux-arm.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-linux-arm.tar.gz) | 08441420659c960c1661fd2c4d4b68dd2bc4b51e63e14d08e28aa79d1835f302a9472ab6cf6c4dd6dd1e23a78cb03e509107c223d3c35cbdab3fe387dc36810a
+[kubernetes-client-linux-arm64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-linux-arm64.tar.gz) | 4f90190543a02e65bae7f21ed4ea9af870471703bbf47a5cb89e589784f467b11aa2212347656aa9c2b1652b923267d28c90df543a64fb7cd9e93d542a7dbaa6
+[kubernetes-client-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-linux-ppc64le.tar.gz) | 7e8d37ac1f5b17bb18396e5d1ed60533b8634608a5c33aaa9a477544dba7b78b6f3aaab850853a05d4da0e665608ab2bf290ede2644bc8c0d73fab2b6530979d
+[kubernetes-client-linux-s390x.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-linux-s390x.tar.gz) | 9843d0f53f9113a70701b407dc857d15103e7161abbe56c6267935c33eb2851a79537e1b51e9defd48bd85b0177ebd3294b95759fdf1bee02725c67a2604c37b
+[kubernetes-client-windows-386.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-windows-386.tar.gz) | c5785c684e604fa67250cf778bbae5ff33aa114358ac450c2cbd6ce333dc1e11213682e3f1de7dc68fdbdb860f526135c1847bfccdcaecf63fb00e042e07a057
+[kubernetes-client-windows-amd64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-client-windows-amd64.tar.gz) | fb65022c279fcdb5e6dc6618670126aa9ed08d641c152b62c603bd7b40840a47a1ccdf8811df08ef3b5c000bac3a0d84ad250db50688055444ce2510073a5e78
+
+### Server Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-server-linux-amd64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-server-linux-amd64.tar.gz) | 720cbc936a81f117c479456b939a8e2920e235a70c0111cb35e77acd71d9cc0da4d8fc7668ef6458177715d2b3419871ffbd64d8d5c55e34bd76f97cc1dd596d
+[kubernetes-server-linux-arm.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-server-linux-arm.tar.gz) | 47481f83ac7fb801a5df8a6ed92fc91af3a001250749b5523450332d8335afd27119599e96aee37983bb424b3ccb7abf81df577b4816d36b4da68948781193f2
+[kubernetes-server-linux-arm64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-server-linux-arm64.tar.gz) | 3ddbdf5e4c8274dd3a8e717454feb4c6440d10772ebadde64f37de90debf95dede8a5b005a79f881c9524bbbbac112fcdedaa7bcfbedf23642bd8720caac468c
+[kubernetes-server-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-server-linux-ppc64le.tar.gz) | 440bd7b2972623d1347f494e6b17b8a55a26056f5f259bc31c4ec936654c9e8583a7d8eff4b8f9e458b00747d0b119a294175f59d338ca693941333577634971
+[kubernetes-server-linux-s390x.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-server-linux-s390x.tar.gz) | b749113d963f2b3f56025fa8d832f552be5b6ff814fe5888c91d934e5cfadbd2ce0e6b3b8042257c2d923d4628c1cafcb339650d22d099e8cd51e841fa245328
+
+### Node Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-node-linux-amd64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-node-linux-amd64.tar.gz) | e6a7f2507f6a4b2f36523573deac0ad3d7922638ca7a0b8c0f8fda32cd512cf342a66ab041d43e7c853963479eaad6c59d4d2a96c59c8cbe18b48166cc23125e
+[kubernetes-node-linux-arm.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-node-linux-arm.tar.gz) | 74512bc870bd4b678cce0951f6b62143a5863b429178c1a34f4c83126c7560632a39ad43c77cdf8f46bd75ebab32f431f04e45f49dc101d1ee8d205201eb5233
+[kubernetes-node-linux-arm64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-node-linux-arm64.tar.gz) | 5d983437f08cdb402aa5204ad005df9e8e3bbac0853477d6f4d61887e5cfdcdacb3de5fd91b13a8dacf0a66c9b7f96a73ea3a3c87c6ea997dd9c9f949089a2db
+[kubernetes-node-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-node-linux-ppc64le.tar.gz) | 63b2c9aaf54e053630690be69a33a5914445bddb2609843e4f8d3c89006bea234e77e4d0ece8e50c592142f401c0d7cc57f7a82074656c1035ed2ca267e1f58b
+[kubernetes-node-linux-s390x.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-node-linux-s390x.tar.gz) | 3beef616efce3bdda0dee08df850762d9f2945f08b6b377519058daaf56856325b54d892c9233dab3f371195079f110e91e668bbd049ae855790e1373f9899d2
+[kubernetes-node-windows-amd64.tar.gz](https://dl.k8s.io/v1.21.7/kubernetes-node-windows-amd64.tar.gz) | 989bae0ba9ce584c2906392d0629446b1cc662878339115e6136c69210d053092ca7e3114ba976976c44f06050198ff8bd0806d0c8a8b5d8c80ed988d115c87b
+
+## Changelog since v1.21.6
+
+## Changes by Kind
+
+### Feature
+
+- Kubernetes is now built with Golang 1.16.10 (#106224, @cpanato) [SIG Cloud Provider, Instrumentation, Release and Testing]
+- Update debian-base, debian-iptables, setcap images to pick up CVE fixes
+ - Debian-base to v1.9.0
+ - Debian-iptables to v1.6.7
+ - setcap to v2.0.4 (#106147, @cpanato) [SIG Release and Testing]
+
+### Failing Test
+
+- Fixes hostpath storage e2e tests within SELinux enabled env (#105787, @Elbehery) [SIG Testing]
+
+### Bug or Regression
+
+- EndpointSlice Mirroring controller now cleans up managed EndpointSlices when a Service selector is added (#106135, @robscott) [SIG Apps, Network and Testing]
+- Fix a bug that `--disabled-metrics` doesn't function well. (#106391, @Huang-Wei) [SIG API Machinery, Cluster Lifecycle and Instrumentation]
+- Fix a panic in kubectl when creating secrets with an improper output type (#106354, @lauchokyip) [SIG CLI]
+- Fix concurrent map access causing panics when logging timed-out API calls. (#106113, @marseel) [SIG API Machinery]
+- Fixed very rare volume corruption when a pod is deleted while kubelet is offline.
+ Retry FibreChannel devices cleanup after error to ensure FC device is detached before it can be used on another node. (#102656, @jsafrane) [SIG API Machinery, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation and Storage]
+- Support more than 100 disk mounts on Windows (#105673, @andyzhangx) [SIG Storage and Windows]
+
+## Dependencies
+
+### Added
+_Nothing has changed._
+
+### Changed
+- k8s.io/kube-openapi: 591a79e → 3cc51fd
+- k8s.io/utils: 67b214c → da69540
+
+### Removed
+_Nothing has changed._
+
+
+
# v1.21.6
diff --git a/CHANGELOG/CHANGELOG-1.23.md b/CHANGELOG/CHANGELOG-1.23.md
index 29dfce7dec7..5803959b487 100644
--- a/CHANGELOG/CHANGELOG-1.23.md
+++ b/CHANGELOG/CHANGELOG-1.23.md
@@ -1,67 +1,67 @@
-- [v1.23.0-alpha.4](#v1230-alpha4)
- - [Downloads for v1.23.0-alpha.4](#downloads-for-v1230-alpha4)
+- [v1.23.0-beta.0](#v1230-beta0)
+ - [Downloads for v1.23.0-beta.0](#downloads-for-v1230-beta0)
- [Source Code](#source-code)
- [Client Binaries](#client-binaries)
- [Server Binaries](#server-binaries)
- [Node Binaries](#node-binaries)
- - [Changelog since v1.23.0-alpha.3](#changelog-since-v1230-alpha3)
+ - [Changelog since v1.23.0-alpha.4](#changelog-since-v1230-alpha4)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
- [Changes by Kind](#changes-by-kind)
- [Deprecation](#deprecation)
- [API Change](#api-change)
- [Feature](#feature)
- - [Failing Test](#failing-test)
+ - [Documentation](#documentation)
- [Bug or Regression](#bug-or-regression)
- [Other (Cleanup or Flake)](#other-cleanup-or-flake)
- [Dependencies](#dependencies)
- [Added](#added)
- [Changed](#changed)
- [Removed](#removed)
-- [v1.23.0-alpha.3](#v1230-alpha3)
- - [Downloads for v1.23.0-alpha.3](#downloads-for-v1230-alpha3)
+- [v1.23.0-alpha.4](#v1230-alpha4)
+ - [Downloads for v1.23.0-alpha.4](#downloads-for-v1230-alpha4)
- [Source Code](#source-code-1)
- [Client Binaries](#client-binaries-1)
- [Server Binaries](#server-binaries-1)
- [Node Binaries](#node-binaries-1)
- - [Changelog since v1.23.0-alpha.2](#changelog-since-v1230-alpha2)
+ - [Changelog since v1.23.0-alpha.3](#changelog-since-v1230-alpha3)
- [Changes by Kind](#changes-by-kind-1)
- [Deprecation](#deprecation-1)
- [API Change](#api-change-1)
- [Feature](#feature-1)
+ - [Failing Test](#failing-test)
- [Bug or Regression](#bug-or-regression-1)
- [Other (Cleanup or Flake)](#other-cleanup-or-flake-1)
- [Dependencies](#dependencies-1)
- [Added](#added-1)
- [Changed](#changed-1)
- [Removed](#removed-1)
-- [v1.23.0-alpha.2](#v1230-alpha2)
- - [Downloads for v1.23.0-alpha.2](#downloads-for-v1230-alpha2)
+- [v1.23.0-alpha.3](#v1230-alpha3)
+ - [Downloads for v1.23.0-alpha.3](#downloads-for-v1230-alpha3)
- [Source Code](#source-code-2)
- [Client Binaries](#client-binaries-2)
- [Server Binaries](#server-binaries-2)
- [Node Binaries](#node-binaries-2)
- - [Changelog since v1.23.0-alpha.1](#changelog-since-v1230-alpha1)
+ - [Changelog since v1.23.0-alpha.2](#changelog-since-v1230-alpha2)
- [Changes by Kind](#changes-by-kind-2)
- [Deprecation](#deprecation-2)
- [API Change](#api-change-2)
- [Feature](#feature-2)
- - [Documentation](#documentation)
- [Bug or Regression](#bug-or-regression-2)
- [Other (Cleanup or Flake)](#other-cleanup-or-flake-2)
- [Dependencies](#dependencies-2)
- [Added](#added-2)
- [Changed](#changed-2)
- [Removed](#removed-2)
-- [v1.23.0-alpha.1](#v1230-alpha1)
- - [Downloads for v1.23.0-alpha.1](#downloads-for-v1230-alpha1)
+- [v1.23.0-alpha.2](#v1230-alpha2)
+ - [Downloads for v1.23.0-alpha.2](#downloads-for-v1230-alpha2)
- [Source Code](#source-code-3)
- [Client Binaries](#client-binaries-3)
- [Server Binaries](#server-binaries-3)
- [Node Binaries](#node-binaries-3)
- - [Changelog since v1.22.0](#changelog-since-v1220)
- - [Urgent Upgrade Notes](#urgent-upgrade-notes)
- - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
+ - [Changelog since v1.23.0-alpha.1](#changelog-since-v1230-alpha1)
- [Changes by Kind](#changes-by-kind-3)
- [Deprecation](#deprecation-3)
- [API Change](#api-change-3)
@@ -73,9 +73,257 @@
- [Added](#added-3)
- [Changed](#changed-3)
- [Removed](#removed-3)
+- [v1.23.0-alpha.1](#v1230-alpha1)
+ - [Downloads for v1.23.0-alpha.1](#downloads-for-v1230-alpha1)
+ - [Source Code](#source-code-4)
+ - [Client Binaries](#client-binaries-4)
+ - [Server Binaries](#server-binaries-4)
+ - [Node Binaries](#node-binaries-4)
+ - [Changelog since v1.22.0](#changelog-since-v1220)
+ - [Urgent Upgrade Notes](#urgent-upgrade-notes-1)
+ - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade-1)
+ - [Changes by Kind](#changes-by-kind-4)
+ - [Deprecation](#deprecation-4)
+ - [API Change](#api-change-4)
+ - [Feature](#feature-4)
+ - [Documentation](#documentation-2)
+ - [Bug or Regression](#bug-or-regression-4)
+ - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
+ - [Dependencies](#dependencies-4)
+ - [Added](#added-4)
+ - [Changed](#changed-4)
+ - [Removed](#removed-4)
+# v1.23.0-beta.0
+
+
+## Downloads for v1.23.0-beta.0
+
+### Source Code
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes.tar.gz) | 048cc297840fd70dc571863bbed9da8176a479ca6b8ff17c9a2cc1b1dbf286377d85eb7fccc5d85e1d652658c393ea1eab7ab518631510e1e7462ea638a56b2b
+[kubernetes-src.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-src.tar.gz) | 1d3f6f5bb54b61312934169845417dffc428bed0f51342dc2b0eebf7f16899843b0f66f9fb2dcdb2a6e9f25bbdc930ea9adac552b0b011e656151c8cae2f4f71
+
+### Client Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-client-darwin-amd64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-darwin-amd64.tar.gz) | e22ce7199acf369eacf8422c8ee417041289e927bfc03c238f45faec75c2dabd7f8201c77ed39f20ac311d1ba289766825b7b2f738cfc59b5652a20b98117180
+[kubernetes-client-darwin-arm64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-darwin-arm64.tar.gz) | 22fa13ca86eb5837db3844b6b7fd134c3ffa3ba5a008635bfa83613a100fa48b3e2331cdf5d368cb267c3cd27e3947fe08ac2540342f1b221192e972695a2cd6
+[kubernetes-client-linux-386.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-linux-386.tar.gz) | 8e239ce934d121b21b534a6d521ca02bf1c6709831e181d103c8d86cdab01b296546be25902162b1060876744f3b579de018b7c2d198e5d5efdd9c849b3ba7ef
+[kubernetes-client-linux-amd64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-linux-amd64.tar.gz) | e9355264e3ca91da833fe3c8c1dcc55c287a9b813aad91f26b09e6a75f48be57d12cb235c5f9c6fe2a0aceee09e2b5da84568d81d8002066c8e77d848a03f112
+[kubernetes-client-linux-arm.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-linux-arm.tar.gz) | 80e93b6c8cce8221f9a5aba8018fcd95b7ec57728a202fdd158b8df86a733e32d6bb60d8b7ea78da9556058074e9bb88c072b4207a43a4fd2f256cce2593a8df
+[kubernetes-client-linux-arm64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-linux-arm64.tar.gz) | 769a1aa41988bbf11a11ef40f42c76740fcbe7fe1fd5d6da948729e1a62bf9c4f28101f47fa9ccd12de50a378b3654e1e4c2d50afad59182c03b8d1e972341e7
+[kubernetes-client-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-linux-ppc64le.tar.gz) | 4a9346caef2714f03e65dc3e5e46ade1b311b91ef184b8a47466583e834f44dcdb21c3800793e87c20064b25c3eac2c34637ff6817f1752d52425cdfd5a912fb
+[kubernetes-client-linux-s390x.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-linux-s390x.tar.gz) | f2129ea05e581a38bdc2771cfdd92ad990620fabf9655f7343c56541a544aa4c6c1e1a2e91a338d06dd0064f35fb5e3027259c317a0909badcbadc9e418c6ced
+[kubernetes-client-windows-386.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-windows-386.tar.gz) | 2dc9459b02f4ed564a7d0e2062e3590c5240debc6a64449d1c714382ded197d5fcf99feecb80ba6483d265ab34126958737cd692783e675b39159be94729c018
+[kubernetes-client-windows-amd64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-windows-amd64.tar.gz) | e58cb2f87f619d34afbb2c2c0f2bab484970406216698b79129637cb27c5508b2ca4bd2a3a91847868631bd72947887317692a73fec0f8d67c26aa59868c9d8f
+[kubernetes-client-windows-arm64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-client-windows-arm64.tar.gz) | 515bd2e3c95afe613db998ed42ea5456771c488e0963c9fe0328816a6baba09ea4e915d22538e05d478556d17f1678d6a96b75cae25ba742be73da23d04f72ff
+
+### Server Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-server-linux-amd64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-server-linux-amd64.tar.gz) | adc6c0e5c07c3e1d24ac4399ea725da5d72a043feaea0063f26188e469b4b8cf537df245015631f1efce9d5e457724858327da3c7c9763f6ca4538aaf77a5e67
+[kubernetes-server-linux-arm.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-server-linux-arm.tar.gz) | e6e673cb9baecc56ae03d716569769391cd6f8d38d85810f0199e71b20a4d4c3c92efe7b31a67af463fb01029d94cbcb0c6fe7a0918123055f3fa8f373e76c49
+[kubernetes-server-linux-arm64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-server-linux-arm64.tar.gz) | f91dc6e948b702784909ca0c4b8758ad9dbfbcd202ec4e329666b07d42488df00ad64de6a68405668ed881e62e0515271c8168e8316519cd95802239abde4951
+[kubernetes-server-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-server-linux-ppc64le.tar.gz) | fbbf3daff8caa89f8249122ba19d67a0d9298fb47d327c0bebd7a54adad4fe6e809164d8bf8e563c79b1f9c8b646f29d18789ec938cbc5746e30649b392c7121
+[kubernetes-server-linux-s390x.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-server-linux-s390x.tar.gz) | a4ccda542f1b86667e6bf29afd091a2ce6f3a30165ff8b918585fc7794be26d00bd846acaa5b805b270a60df69fbe9827bab6ee472129996e28052bbbe1b0593
+
+### Node Binaries
+
+filename | sha512 hash
+-------- | -----------
+[kubernetes-node-linux-amd64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-node-linux-amd64.tar.gz) | 4d7dd2e50fe65fd1140c51deeb90d8d9f89bbba59502becf626757e2e9eb59fb781bbf3ecb899f1b8e391746329c5c017177287004195387151799e73887f05b
+[kubernetes-node-linux-arm.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-node-linux-arm.tar.gz) | d38cd4a06b983a7253d99a6d927c40cbacc636bd73d33172ee03cda502f806638d3cc6f096bc13a55a2faf11ab3e85d77dfd20559e2c880cf54f45ba0875c75c
+[kubernetes-node-linux-arm64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-node-linux-arm64.tar.gz) | fa1fa35f30ca589e031485affd2a1016ba5ca0efdf64b35d49c7738342acb55c40733e53fb3b477734bab68d97b00f9adcfb5954ab365169d8f00ac804cc60fb
+[kubernetes-node-linux-ppc64le.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-node-linux-ppc64le.tar.gz) | 412b3a133a7711e32455e49d1aac4ce9ee0e44df89afca40dfa8ac52a8aa98649bd4dd7eff85addd8a525bb16b65966dbde1df0c62a994213b4cfa1a7a3b8128
+[kubernetes-node-linux-s390x.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-node-linux-s390x.tar.gz) | 7e0e217893665a56406b6f1404d616da8578396890b04474fed12ea6b48f5fbf52432efd43c13f66a643284fd54c0fd3441940c777eb1cd0796443fd72d69b6f
+[kubernetes-node-windows-amd64.tar.gz](https://dl.k8s.io/v1.23.0-beta.0/kubernetes-node-windows-amd64.tar.gz) | 768dfe871a028ff7d972d9b59935c1ebdcc8ea0ccf990ee84060ef3bb995ddecb48a49d9fb2ff12dc44ed404d6d9362ee78af3492a4206bb23eb8a0ac8d63ca2
+
+## Changelog since v1.23.0-alpha.4
+
+## Urgent Upgrade Notes
+
+### (No, really, you MUST read this before you upgrade)
+
+ - Log messages in JSON format are written to stderr by default now (same as text format) instead of stdout. Users who expected JSON output on stdout must now capture stderr instead or in addition to stdout. (#106146, @pohly) [SIG API Machinery, Architecture, Cluster Lifecycle and Instrumentation]
+ - [kube-log-runner](https://github.com/kubernetes/kubernetes/tree/master/staging/src/k8s.io/component-base/logs/kube-log-runner) is included in release tar balls. It can be used to replace the deprecated `--log-file` parameter. (#106123, @pohly) [SIG API Machinery, Architecture, Cloud Provider, Cluster Lifecycle and Instrumentation]
+
+## Changes by Kind
+
+### Deprecation
+
+- Kubeadm: add a new output/v1alpha2 API that is identical to the output/v1alpha1, but attempts to resolve some internal dependencies with the kubeadm/v1beta2 API. The output/v1alpha1 API is now deprecated and will be removed in a future release. (#105295, @neolit123) [SIG Cluster Lifecycle]
+- Kubeadm: add the kubeadm specific, Alpha (disabled by default) feature gate UnversionedKubeletConfigMap. When this feature is enabled kubeadm will start using a new naming format for the ConfigMap where it stores the KubeletConfiguration structure. The old format included the Kubernetes version - "kube-system/kubelet-config-1.22", while the new format does not - "kube-system/kubelet-config". A similar formatting change is done for the related RBAC rules. The old format is now DEPRECATED and will be removed after the feature graduates to GA. When writing the ConfigMap kubeadm (init, upgrade apply) will respect the value of UnversionedKubeletConfigMap, while when reading it (join, reset, upgrade), it would attempt to use new format first and fallback to the legacy format if needed. (#105741, @neolit123) [SIG Cluster Lifecycle and Testing]
+
+### API Change
+
+- A new field `omitManagedFields` has been added to both `audit.Policy` and `audit.PolicyRule`
+ so cluster operators can opt in to omit managed fields of the request and response bodies from
+ being written to the API audit log. (#94986, @tkashem) [SIG API Machinery, Auth, Cloud Provider and Testing]
+- Create HPA v2 from v2beta2 with some fields changed. (#102534, @wangyysde) [SIG API Machinery, Apps, Auth, Autoscaling and Testing]
+- Fix kube-proxy regression on UDP services because the logic to detect stale connections was not considering if the endpoint was ready. (#106163, @aojea) [SIG API Machinery, Apps, Architecture, Auth, Autoscaling, CLI, Cloud Provider, Contributor Experience, Instrumentation, Network, Node, Release, Scalability, Scheduling, Storage, Testing and Windows]
+- Implement support for recovering from volume expansion failures (#106154, @gnufied) [SIG API Machinery, Apps and Storage]
+- In kubelet, log verbosity and flush frequency can also be configured via the configuration file and not just via command line flags. In other commands (kube-apiserver, kube-controller-manager), the flags are listed in the "Logs flags" group and not under "Global" or "Misc". The type for `-vmodule` was made a bit more descriptive (`pattern=N,...` instead of `moduleSpec`). (#106090, @pohly) [SIG API Machinery, Architecture, CLI, Cluster Lifecycle, Instrumentation, Node and Scheduling]
+- IngressClass.Spec.Parameters.Namespace field is now GA. (#104636, @hbagdi) [SIG Network and Testing]
+- KubeSchedulerConfiguration provides a new field `MultiPoint` which will register a plugin for all valid extension points (#105611, @damemi) [SIG Scheduling and Testing]
+- Kubelet should reject pods whose OS doesn't match the node's OS label. (#105292, @ravisantoshgudimetla) [SIG Apps and Node]
+- The CSIVolumeFSGroupPolicy feature has moved from beta to GA. (#105940, @dobsonj) [SIG Storage]
+- The Kubelet's `--register-with-taints` option is now available via the Kubelet config file field registerWithTaints (#105437, @cmssczy) [SIG Node and Scalability]
+- Validation rules for Custom Resource Definitions can be written in the [CEL expression language](https://github.com/google/cel-spec) using the `x-kubernetes-validations` extension in OpenAPIv3 schemas (alpha). This is gated by the alpha "CustomResourceValidationExpressions" feature gate. (#106051, @jpbetz) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Node, Storage and Testing]
+
+### Feature
+
+- (beta feature) If the CSI driver supports the NodeServiceCapability `VOLUME_MOUNT_GROUP` and the `DelegateFSGroupToCSIDriver` feature gate is enabled, kubelet will delegate applying FSGroup to the driver by passing it to NodeStageVolume and NodePublishVolume, regardless of what other FSGroup policies are set. (#106330, @verult) [SIG Storage]
+- /openapi/v3 endpoint will be populated with OpenAPI v3 if the feature flag is enabled (#105945, @Jefftree) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Node, Storage and Testing]
+- Add support for PodAndContainerStatsFromCRI featuregate, which allows a user to specify their pod stats must also come from the CRI, not cAdvisor. (#103095, @haircommander) [SIG Node]
+- Add support for Portworx plugin to csi-translation-lib. Alpha release
+
+ Portworx CSI driver is required to enable migration.
+ This PR adds support of the `CSIMigrationPortworx` feature gate, which can be enabled by:
+
+ 1. Adding the feature flag to the kube-controller-manager `--feature-gates=CSIMigrationPortworx=true`
+ 2. Adding the feature flag to the kubelet config:
+
+ featureGates:
+ CSIMigrationPortworx: true (#103447, @trierra) [SIG API Machinery, Apps, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Network, Node, Release, Scalability, Scheduling, Storage, Testing and Windows]
+- Added ability for kubectl wait to wait on arbitary JSON path (#105776, @lauchokyip) [SIG CLI]
+- Added the ability to specify whether to use an RFC7396 JSON Merge Patch, an RFC6902 JSON Patch, or a Strategic Merge Patch to perform an override of the resources created by kubectl run and kubectl expose. (#105140, @brianpursley) [SIG CLI]
+- Adding option for kubectl cp to resume on network errors until completion, requires tar in addition to tail inside the container image (#104792, @matthyx) [SIG CLI]
+- Adds --as-uid flag to kubectl to allow uid impersonation in the same way as user and group impersonation. (#105794, @margocrawf) [SIG API Machinery, Auth, CLI and Testing]
+- Allows users to prevent garbage collection on pinned images (#103299, @wgahnagl) [SIG Node]
+- CSIMigrationGCE feature flag is turned ON by default (#104722, @leiyiz) [SIG Apps, Cloud Provider, Node, Storage and Testing]
+- Changed feature CSIMigrationAWS to on by default. This feature requires the AWS EBS CSI driver to be installed. (#106098, @wongma7) [SIG Storage]
+- Ensures that volume is deleted from the storage backend when the user tries to delete the PV object manually and the PV ReclaimPolicy is Delete. (#105773, @deepakkinni) [SIG Apps and Storage]
+- Graduating `controller_admission_duration_seconds`, `step_admission_duration_seconds`, `webhook_admission_duration_seconds`, `apiserver_current_inflight_requests` and `apiserver_response_sizes` metrics to stable. (#106122, @rezakrimi) [SIG API Machinery, Instrumentation and Testing]
+- Graduating `pending_pods`, `preemption_attempts_total`, `preemption_victims` and `schedule_attempts_total` metrics to stable. Also `e2e_scheduling_duration_seconds` is renamed to `scheduling_attempt_duration_seconds` and the latter is graduated to stable. (#105941, @rezakrimi) [SIG Instrumentation, Scheduling and Testing]
+- Integration testing now takes periodic Prometheus scrapes from the etcd server.
+ There is a new script ,`hack/run-prometheus-on-etcd-scrapes.sh`, that runs a containerized Prometheus server against an archive of such scrapes. (#106190, @MikeSpreitzer) [SIG API Machinery and Testing]
+- Kube-apiserver: when merging lists, Server Side Apply now prefers the order of the submitted request instead of the existing persisted object (#105983, @jiahuif) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Storage and Testing]
+- Kubectl describe namespace now shows Conditions (#106219, @dlipovetsky) [SIG CLI]
+- Kubelet should reconcile `kubernetes.io/os` and `kubernetes.io/arch` labels on the node object. The side-effect of this is kubelet would deny admission to pod which has nodeSelector with label `kubernetes.io/os` or `kubernetes.io/arch` which doesn't match the underlying OS or arch on the host OS.
+ - The label reconciliation happens as part of periodic status update which can be configured via flag `--node-status-update-frequency` (#104613, @ravisantoshgudimetla) [SIG Node, Testing and Windows]
+- Kubernetes is now built with Golang 1.17.3 (#106209, @cpanato) [SIG API Machinery, Cloud Provider, Instrumentation, Release and Testing]
+- Move ConfigurableFSGroupPolicy to GA
+ Rename metric volume_fsgroup_recursive_apply to volume_apply_access_control (#105885, @gnufied) [SIG Instrumentation and Storage]
+- Moving WindowsHostProcessContainers feature to beta (#106058, @marosset) [SIG Windows]
+- The DownwardAPIHugePages feature is now enabled by default. (#106271, @mysunshine92) [SIG Node]
+- The PodSecurity admission plugin has graduated to beta and is enabled by default. The admission configuration version has been promoted to pod-security.admission.config.k8s.io/v1beta1. See https://kubernetes.io/docs/concepts/security/pod-security-admission/ for usage guidelines. (#106089, @liggitt) [SIG Auth and Testing]
+- This PR adds the following metrics for API Priority and Fairness.
+ - **apiserver_flowcontrol_priority_level_seat_count_samples**: histograms of seats occupied by executing requests (both regular and final-delay phases included), broken down by priority_level; the observations are taken once per millisecond.
+ - **apiserver_flowcontrol_priority_level_seat_count_watermarks**: histograms of high and low watermarks of number of seats occupied by executing requests (both regular and final-delay phases included), broken down by priority_level.
+ - **apiserver_flowcontrol_watch_count_samples**: histograms of number of watches relevant to a given mutating request, broken down by that request's priority_level and flow_schema. (#105873, @MikeSpreitzer) [SIG API Machinery, Instrumentation and Testing]
+- Topology Aware Hints have graduated to beta. (#106433, @robscott) [SIG Network]
+- Update the system-validators library to v1.6.0 (#106323, @neolit123) [SIG Cluster Lifecycle and Node]
+- Upgrade etcd to 3.5.1 (#105706, @uthark) [SIG Cloud Provider, Cluster Lifecycle and Testing]
+- When using `RequestedToCapacityRatio` ScoringStrategy, empty shape will cause error. (#106169, @kerthcet) [SIG Scheduling]
+
+### Documentation
+
+- Graduating `pod_scheduling_duration_seconds`, `pod_scheduling_attempts`, `framework_extension_point_duration_seconds`, `plugin_execution_duration_seconds` and `queue_incoming_pods_total` metrics to stable. (#106266, @ahg-g) [SIG Instrumentation, Scheduling and Testing]
+- Users should not rely on unsupported CRON_TZ variable when specifying schedule, both the API server and cronjob controller will emit warnings pointing to https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/ containing explanation (#106455, @soltysh) [SIG Apps]
+
+### Bug or Regression
+
+- (PodSecurity admission) errors validating workload resources (deployment, replicaset, etc.) no longer block admission. (#106017, @tallclair) [SIG Auth]
+- Add support for Windows Network stats in Containerd (#105744, @jsturtevant) [SIG Node, Testing and Windows]
+- Added show-capacity option to `kubectl top node` to show `Capacity` resource usage (#102917, @bysnupy) [SIG CLI]
+- Do not unmount and mount subpath bind mounts during container creation unless bind mount changes (#105512, @gnufied) [SIG Storage]
+- Don't use a custom dialer for the kubelet if is not rotating certificates, so we can reuse TCP connections and have only one between the apiserver and the kubelet.
+ If users experiment problems with stale connections using HTTP1.1, they can force the previous behavior of the kubelet by setting the environment variable DISABLE_HTTP2. (#104844, @aojea) [SIG API Machinery, Auth and Node]
+- EndpointSlice Mirroring controller now cleans up managed EndpointSlices when a Service selector is added (#105997, @robscott) [SIG Apps, Network and Testing]
+- Enhanced event messages for pod failed for exec probe timeout (#106201, @yxxhero) [SIG Node]
+- Ensure Pods are removed from the scheduler cache when the scheduler misses deletion events due to transient errors (#106102, @alculquicondor) [SIG Scheduling]
+- Fix a panic in kubectl when creating secrets with an improper output type (#106317, @lauchokyip) [SIG CLI]
+- Fixed a bug which could cause webhooks to have an incorrect copy of the old object after an Apply or Update (#106195, @alexzielenski) [SIG API Machinery]
+- Fixed applying of SELinux labels to CSI volumes on very busy systems (with "error checking for SELinux support: could not get consistent content of /proc/self/mountinfo after 3 attempts") (#105934, @jsafrane) [SIG Storage]
+- Fixed bug where using kubectl patch with $deleteFromPrimitiveList on a nonexistent or empty list would add the item to the list (#105421, @brianpursley) [SIG API Machinery]
+- Fixed the issue where logging output of kube-scheduler configuration files included line breaks and escape characters. The output also attempted to output the configuration file in one section without showing the user a more readable format. (#106228, @sanchayanghosh) [SIG Scheduling]
+- Kube-up now includes CoreDNS version v1.8.6 (#106091, @rajansandeep) [SIG Cloud Provider]
+- Kubeadm: fix a bug on Windows worker nodes, where the downloaded KubeletConfiguration from the cluster can contain Linux paths that do not work on Windows and can trip the kubelet binary. (#105992, @hwdef) [SIG Cluster Lifecycle and Windows]
+- Kubectl port-forward service will now properly exit when the attached pod dies (#103526, @brianpursley) [SIG API Machinery]
+- Kubelet: fixes a file descriptor leak in log rotation (#106382, @rphillips) [SIG Node]
+- Pod SecurityContext sysctls name parameter for update requests where the existing object's sysctl contains slashes and kubelet sysctl whitelist support contains slashes. (#102393, @mengjiao-liu) [SIG Apps, Auth, Node, Storage and Testing]
+- Pod will not start when Init container was OOM killed. (#104650, @yxxhero) [SIG Node]
+- Reduce the number of calls to docker for stats via dockershim. For Windows this reduces the latency when calling docker, for Linux this saves cpu cycles. (#104287, @jsturtevant) [SIG Node and Windows]
+- Respect grace period when updating static pods. (#104743, @gjkim42) [SIG Node and Testing]
+- The kube-proxy sync_proxy_rules_iptables_total metric now gives
+ the correct number of rules, rather than being off by one.
+
+ Fixed multiple iptables proxy regressions introduced in 1.22:
+
+ - When using Services with SessionAffinity, client affinity for an
+ endpoint now gets broken when that endpoint becomes non-ready
+ (rather than continuing until the endpoint is fully deleted).
+
+ - Traffic to a service IP now starts getting rejected (as opposed to
+ merely dropped) as soon as there are no longer any *usable*
+ endpoints, rather than waiting until all of the terminating
+ endpoints have terminated even when those terminating endpoints
+ were not being used.
+
+ - Chains for endpoints that won't be used are no longer output to
+ iptables, saving a bit of memory/time/cpu. (#106030, @danwinship) [SIG Network]
+- Upgrades functionality of `kubectl kustomize` as described at
+ https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv4.4.1 (#106389, @natasha41575) [SIG CLI]
+
+### Other (Cleanup or Flake)
+
+- Changed buckets in apiserver_request_duration_seconds metric from [0.05, 0.1, 0.15, 0.2, 0.25, 0.3, 0.35, 0.4, 0.45, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0,1.25, 1.5, 1.75, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 40, 50, 60] to [0.05, 0.1, 0.2, 0.4, 0.6, 0.8, 1.0, 1.25, 1.5, 2, 3, 4, 5, 6, 8, 10, 15, 20, 30, 45, 60] (#106306, @pawbana) [SIG API Machinery, Instrumentation and Testing]
+- Kubectl: deprecated command line flags (like several of the klog flags) now have a `DEPRECATED: ` comment. (#106172, @pohly) [SIG CLI]
+- Kubemark is now built as a portable, static binary. (#106150, @pohly) [SIG Scalability and Testing]
+- Migrated `pkg/scheduler/framework/plugins/volumebinding/assume_cache.go` to structured logging. (#105904, @mengjiao-liu) [SIG Instrumentation, Scheduling and Storage]
+- Migrated `pkg/scheduler/framework/preemption/preemption.go`, `pkg/scheduler/framework/plugins/examples/stateful/stateful.go`, and `pkg/scheduler/framework/plugins/noderesources/resource_allocation.go` to structured logging (#105967, @shivanshu1333) [SIG Instrumentation, Node and Scheduling]
+- Migrated scheduler file `cache.go` to structured logging (#105969, @shivanshu1333) [SIG Instrumentation and Scheduling]
+- Migrated scheduler files `comparer.go`, `dumper.go`, `node_tree.go` to structured logging (#105968, @shivanshu1333) [SIG Instrumentation and Scheduling]
+- Remove deprecated and not supported old cronjob controller. (#106126, @soltysh) [SIG Apps]
+- Remove ignore error flag for drain, and set this feature as default (#105571, @yuzhiquan) [SIG CLI]
+- The kube-proxy image contains /go-runner as a replacement for deprecated klog flags. (#106301, @pohly) [SIG Testing]
+
+## Dependencies
+
+### Added
+- github.com/OneOfOne/xxhash: [v1.2.2](https://github.com/OneOfOne/xxhash/tree/v1.2.2)
+- github.com/antlr/antlr4/runtime/Go/antlr: [b48c857](https://github.com/antlr/antlr4/runtime/Go/antlr/tree/b48c857)
+- github.com/cespare/xxhash: [v1.1.0](https://github.com/cespare/xxhash/tree/v1.1.0)
+- github.com/cncf/xds/go: [fbca930](https://github.com/cncf/xds/go/tree/fbca930)
+- github.com/getkin/kin-openapi: [v0.76.0](https://github.com/getkin/kin-openapi/tree/v0.76.0)
+- github.com/google/cel-go: [v0.9.0](https://github.com/google/cel-go/tree/v0.9.0)
+- github.com/google/cel-spec: [v0.6.0](https://github.com/google/cel-spec/tree/v0.6.0)
+- github.com/spaolacci/murmur3: [f09979e](https://github.com/spaolacci/murmur3/tree/f09979e)
+
+### Changed
+- github.com/containerd/containerd: [v1.4.9 → v1.4.11](https://github.com/containerd/containerd/compare/v1.4.9...v1.4.11)
+- github.com/coredns/corefile-migration: [v1.0.12 → v1.0.14](https://github.com/coredns/corefile-migration/compare/v1.0.12...v1.0.14)
+- github.com/docker/docker: [v20.10.2+incompatible → v20.10.7+incompatible](https://github.com/docker/docker/compare/v20.10.2...v20.10.7)
+- github.com/envoyproxy/go-control-plane: [668b12f → 63b5d3c](https://github.com/envoyproxy/go-control-plane/compare/668b12f...63b5d3c)
+- github.com/golang/glog: [23def4e → v1.0.0](https://github.com/golang/glog/compare/23def4e...v1.0.0)
+- github.com/google/cadvisor: [v0.39.2 → v0.43.0](https://github.com/google/cadvisor/compare/v0.39.2...v0.43.0)
+- golang.org/x/net: 60bc85c → e898025
+- golang.org/x/sys: 41cdb87 → f4d4317
+- golang.org/x/text: v0.3.6 → v0.3.7
+- google.golang.org/genproto: f16073e → fe13028
+- google.golang.org/grpc: v1.38.0 → v1.40.0
+- google.golang.org/protobuf: v1.26.0 → v1.27.1
+- k8s.io/kube-openapi: 7fbd8d5 → e816edb
+- k8s.io/system-validators: v1.5.0 → v1.6.0
+- sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.0.23 → v0.0.25
+- sigs.k8s.io/kustomize/api: v0.8.11 → v0.10.1
+- sigs.k8s.io/kustomize/cmd/config: v0.9.13 → v0.10.2
+- sigs.k8s.io/kustomize/kustomize/v4: v4.2.0 → v4.4.1
+- sigs.k8s.io/kustomize/kyaml: v0.11.0 → v0.13.0
+- sigs.k8s.io/structured-merge-diff/v4: v4.1.2 → v4.2.0
+
+### Removed
+_Nothing has changed._
+
+
+
# v1.23.0-alpha.4
diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json
index 1796306dbb3..a82f4450259 100644
--- a/api/openapi-spec/swagger.json
+++ b/api/openapi-spec/swagger.json
@@ -6538,6 +6538,23 @@
],
"type": "object"
},
+ "io.k8s.api.core.v1.GRPCAction": {
+ "properties": {
+ "port": {
+ "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
+ "format": "int32",
+ "type": "integer"
+ },
+ "service": {
+ "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "port"
+ ],
+ "type": "object"
+ },
"io.k8s.api.core.v1.GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"properties": {
@@ -8979,6 +8996,10 @@
"format": "int32",
"type": "integer"
},
+ "gRPC": {
+ "$ref": "#/definitions/io.k8s.api.core.v1.GRPCAction",
+ "description": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate."
+ },
"httpGet": {
"$ref": "#/definitions/io.k8s.api.core.v1.HTTPGetAction",
"description": "HTTPGet specifies the http request to perform."
diff --git a/api/openapi-spec/v3/api__v1_openapi.json b/api/openapi-spec/v3/api__v1_openapi.json
index ea366e02142..831ba47cb9c 100644
--- a/api/openapi-spec/v3/api__v1_openapi.json
+++ b/api/openapi-spec/v3/api__v1_openapi.json
@@ -24507,6 +24507,25 @@
}
}
},
+ "io.k8s.api.core.v1.GRPCAction": {
+ "type": "object",
+ "required": [
+ "port"
+ ],
+ "properties": {
+ "port": {
+ "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
+ "type": "integer",
+ "format": "int32",
+ "default": 0
+ },
+ "service": {
+ "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
+ "type": "string",
+ "default": ""
+ }
+ }
+ },
"io.k8s.api.core.v1.GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"type": "object",
@@ -27113,6 +27132,10 @@
"type": "integer",
"format": "int32"
},
+ "gRPC": {
+ "description": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.",
+ "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
+ },
"httpGet": {
"description": "HTTPGet specifies the http request to perform.",
"$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
diff --git a/api/openapi-spec/v3/apis__apps__v1_openapi.json b/api/openapi-spec/v3/apis__apps__v1_openapi.json
index 96863f46b30..eb366df2566 100644
--- a/api/openapi-spec/v3/apis__apps__v1_openapi.json
+++ b/api/openapi-spec/v3/apis__apps__v1_openapi.json
@@ -9952,6 +9952,25 @@
}
}
},
+ "io.k8s.api.core.v1.GRPCAction": {
+ "type": "object",
+ "required": [
+ "port"
+ ],
+ "properties": {
+ "port": {
+ "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
+ "type": "integer",
+ "format": "int32",
+ "default": 0
+ },
+ "service": {
+ "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
+ "type": "string",
+ "default": ""
+ }
+ }
+ },
"io.k8s.api.core.v1.GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"type": "object",
@@ -11101,6 +11120,10 @@
"type": "integer",
"format": "int32"
},
+ "gRPC": {
+ "description": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.",
+ "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
+ },
"httpGet": {
"description": "HTTPGet specifies the http request to perform.",
"$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
diff --git a/api/openapi-spec/v3/apis__batch__v1_openapi.json b/api/openapi-spec/v3/apis__batch__v1_openapi.json
index 05815834f13..a9d956e5eae 100644
--- a/api/openapi-spec/v3/apis__batch__v1_openapi.json
+++ b/api/openapi-spec/v3/apis__batch__v1_openapi.json
@@ -4355,6 +4355,25 @@
}
}
},
+ "io.k8s.api.core.v1.GRPCAction": {
+ "type": "object",
+ "required": [
+ "port"
+ ],
+ "properties": {
+ "port": {
+ "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
+ "type": "integer",
+ "format": "int32",
+ "default": 0
+ },
+ "service": {
+ "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
+ "type": "string",
+ "default": ""
+ }
+ }
+ },
"io.k8s.api.core.v1.GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"type": "object",
@@ -5409,6 +5428,10 @@
"type": "integer",
"format": "int32"
},
+ "gRPC": {
+ "description": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.",
+ "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
+ },
"httpGet": {
"description": "HTTPGet specifies the http request to perform.",
"$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
diff --git a/api/openapi-spec/v3/apis__batch__v1beta1_openapi.json b/api/openapi-spec/v3/apis__batch__v1beta1_openapi.json
index c2381ba3f65..90757d4e32a 100644
--- a/api/openapi-spec/v3/apis__batch__v1beta1_openapi.json
+++ b/api/openapi-spec/v3/apis__batch__v1beta1_openapi.json
@@ -2663,6 +2663,25 @@
}
}
},
+ "io.k8s.api.core.v1.GRPCAction": {
+ "type": "object",
+ "required": [
+ "port"
+ ],
+ "properties": {
+ "port": {
+ "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
+ "type": "integer",
+ "format": "int32",
+ "default": 0
+ },
+ "service": {
+ "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
+ "type": "string",
+ "default": ""
+ }
+ }
+ },
"io.k8s.api.core.v1.GitRepoVolumeSource": {
"description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"type": "object",
@@ -3717,6 +3736,10 @@
"type": "integer",
"format": "int32"
},
+ "gRPC": {
+ "description": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.",
+ "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction"
+ },
"httpGet": {
"description": "HTTPGet specifies the http request to perform.",
"$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction"
diff --git a/cmd/kube-proxy/app/server.go b/cmd/kube-proxy/app/server.go
index 5975731b171..8241898fe66 100644
--- a/cmd/kube-proxy/app/server.go
+++ b/cmd/kube-proxy/app/server.go
@@ -165,9 +165,9 @@ func (o *Options) AddFlags(fs *pflag.FlagSet) {
fs.BoolVar(&o.CleanupAndExit, "cleanup", o.CleanupAndExit, "If true cleanup iptables and ipvs rules and exit.")
- fs.Var(utilflag.IPVar{Val: &o.config.BindAddress}, "bind-address", "The IP address for the proxy server to serve on (set to '0.0.0.0' for all IPv4 interfaces and '::' for all IPv6 interfaces)")
- fs.Var(utilflag.IPPortVar{Val: &o.config.HealthzBindAddress}, "healthz-bind-address", "The IP address with port for the health check server to serve on (set to '0.0.0.0:10256' for all IPv4 interfaces and '[::]:10256' for all IPv6 interfaces). Set empty to disable.")
- fs.Var(utilflag.IPPortVar{Val: &o.config.MetricsBindAddress}, "metrics-bind-address", "The IP address with port for the metrics server to serve on (set to '0.0.0.0:10249' for all IPv4 interfaces and '[::]:10249' for all IPv6 interfaces). Set empty to disable.")
+ fs.Var(&utilflag.IPVar{Val: &o.config.BindAddress}, "bind-address", "The IP address for the proxy server to serve on (set to '0.0.0.0' for all IPv4 interfaces and '::' for all IPv6 interfaces)")
+ fs.Var(&utilflag.IPPortVar{Val: &o.config.HealthzBindAddress}, "healthz-bind-address", "The IP address with port for the health check server to serve on (set to '0.0.0.0:10256' for all IPv4 interfaces and '[::]:10256' for all IPv6 interfaces). Set empty to disable.")
+ fs.Var(&utilflag.IPPortVar{Val: &o.config.MetricsBindAddress}, "metrics-bind-address", "The IP address with port for the metrics server to serve on (set to '0.0.0.0:10249' for all IPv4 interfaces and '[::]:10249' for all IPv6 interfaces). Set empty to disable.")
fs.BoolVar(&o.config.BindAddressHardFail, "bind-address-hard-fail", o.config.BindAddressHardFail, "If true kube-proxy will treat failure to bind to a port as fatal and exit")
fs.Var(utilflag.PortRangeVar{Val: &o.config.PortRange}, "proxy-port-range", "Range of host ports (beginPort-endPort, single port or beginPort+offset, inclusive) that may be consumed in order to proxy service traffic. If (unspecified, 0, or 0-0) then ports will be randomly chosen.")
fs.Var(&o.config.Mode, "proxy-mode", "Which proxy mode to use: 'userspace' (older) or 'iptables' (faster) or 'ipvs' or 'kernelspace' (windows). If blank, use the best-available proxy (currently iptables). If the iptables proxy is selected, regardless of how, but the system's kernel or iptables versions are insufficient, this always falls back to the userspace proxy.")
@@ -623,7 +623,7 @@ func serveMetrics(bindAddress, proxyMode string, enableProfiling bool, errCh cha
fmt.Fprintf(w, "%s", proxyMode)
})
- //lint:ignore SA1019 See the Metrics Stability Migration KEP
+ //nolint:staticcheck // SA1019 See the Metrics Stability Migration KEP
proxyMux.Handle("/metrics", legacyregistry.Handler())
if enableProfiling {
diff --git a/cmd/kube-scheduler/app/config/config.go b/cmd/kube-scheduler/app/config/config.go
index 1448ff8cf49..927a71b21b9 100644
--- a/cmd/kube-scheduler/app/config/config.go
+++ b/cmd/kube-scheduler/app/config/config.go
@@ -44,7 +44,7 @@ type Config struct {
InformerFactory informers.SharedInformerFactory
DynInformerFactory dynamicinformer.DynamicSharedInformerFactory
- //lint:ignore SA1019 this deprecated field still needs to be used for now. It will be removed once the migration is done.
+ //nolint:staticcheck // SA1019 this deprecated field still needs to be used for now. It will be removed once the migration is done.
EventBroadcaster events.EventBroadcasterAdapter
// LeaderElection is optional.
diff --git a/cmd/kubeadm/app/preflight/checks.go b/cmd/kubeadm/app/preflight/checks.go
index 56ead258588..dc4ac9f17b3 100644
--- a/cmd/kubeadm/app/preflight/checks.go
+++ b/cmd/kubeadm/app/preflight/checks.go
@@ -808,10 +808,9 @@ func getEtcdVersionResponse(client *http.Client, url string, target interface{})
loopCount--
return false, err
}
- //lint:ignore SA5011 If err != nil we are already returning.
defer r.Body.Close()
- if r != nil && r.StatusCode >= 500 && r.StatusCode <= 599 {
+ if r.StatusCode >= 500 && r.StatusCode <= 599 {
loopCount--
return false, errors.Errorf("server responded with non-successful status: %s", r.Status)
}
diff --git a/cmd/kubelet/app/options/options.go b/cmd/kubelet/app/options/options.go
index 8f096e4f277..f407c9439e3 100644
--- a/cmd/kubelet/app/options/options.go
+++ b/cmd/kubelet/app/options/options.go
@@ -405,7 +405,7 @@ func AddKubeletConfigFlags(mainfs *pflag.FlagSet, c *kubeletconfig.KubeletConfig
fs.DurationVar(&c.HTTPCheckFrequency.Duration, "http-check-frequency", c.HTTPCheckFrequency.Duration, "Duration between checking http for new data")
fs.StringVar(&c.StaticPodURL, "manifest-url", c.StaticPodURL, "URL for accessing additional Pod specifications to run")
fs.Var(cliflag.NewColonSeparatedMultimapStringString(&c.StaticPodURLHeader), "manifest-url-header", "Comma-separated list of HTTP headers to use when accessing the url provided to --manifest-url. Multiple headers with the same name will be added in the same order provided. This flag can be repeatedly invoked. For example: --manifest-url-header 'a:hello,b:again,c:world' --manifest-url-header 'b:beautiful'")
- fs.Var(utilflag.IPVar{Val: &c.Address}, "address", "The IP address for the Kubelet to serve on (set to '0.0.0.0' or '::' for listening in all interfaces and IP families)")
+ fs.Var(&utilflag.IPVar{Val: &c.Address}, "address", "The IP address for the Kubelet to serve on (set to '0.0.0.0' or '::' for listening in all interfaces and IP families)")
fs.Int32Var(&c.Port, "port", c.Port, "The port for the Kubelet to serve on.")
fs.Int32Var(&c.ReadOnlyPort, "read-only-port", c.ReadOnlyPort, "The read-only port for the Kubelet to serve on with no authentication/authorization (set to 0 to disable)")
@@ -459,7 +459,7 @@ func AddKubeletConfigFlags(mainfs *pflag.FlagSet, c *kubeletconfig.KubeletConfig
fs.BoolVar(&c.EnableDebuggingHandlers, "enable-debugging-handlers", c.EnableDebuggingHandlers, "Enables server endpoints for log collection and local running of containers and commands")
fs.BoolVar(&c.EnableContentionProfiling, "contention-profiling", c.EnableContentionProfiling, "Enable lock contention profiling, if profiling is enabled")
fs.Int32Var(&c.HealthzPort, "healthz-port", c.HealthzPort, "The port of the localhost healthz endpoint (set to 0 to disable)")
- fs.Var(utilflag.IPVar{Val: &c.HealthzBindAddress}, "healthz-bind-address", "The IP address for the healthz server to serve on (set to '0.0.0.0' or '::' for listening in all interfaces and IP families)")
+ fs.Var(&utilflag.IPVar{Val: &c.HealthzBindAddress}, "healthz-bind-address", "The IP address for the healthz server to serve on (set to '0.0.0.0' or '::' for listening in all interfaces and IP families)")
fs.Int32Var(&c.OOMScoreAdj, "oom-score-adj", c.OOMScoreAdj, "The oom-score-adj value for kubelet process. Values must be within the range [-1000, 1000]")
fs.StringVar(&c.ClusterDomain, "cluster-domain", c.ClusterDomain, "Domain for this cluster. If set, kubelet will configure all containers to search this domain in addition to the host's search domains")
diff --git a/hack/verify-golangci-lint.sh b/hack/verify-golangci-lint.sh
index 1e0bc1192ed..19fc66d2603 100755
--- a/hack/verify-golangci-lint.sh
+++ b/hack/verify-golangci-lint.sh
@@ -43,11 +43,38 @@ popd >/dev/null
cd "${KUBE_ROOT}"
-echo 'running golangci-lint '
-golangci-lint run \
- --timeout 30m \
- --disable-all \
- -E deadcode \
- -E unused \
- -E varcheck \
- -E ineffassign
+# The config is in ${KUBE_ROOT}/.golangci.yaml
+echo 'running golangci-lint ' >&2
+res=0
+if [[ "$#" -gt 0 ]]; then
+ golangci-lint run "$@" >&2 || res=$?
+else
+ golangci-lint run ./... >&2 || res=$?
+ for d in staging/src/k8s.io/*; do
+ MODPATH="staging/src/k8s.io/$(basename "${d}")"
+ echo "running golangci-lint for ${KUBE_ROOT}/${MODPATH}"
+ pushd "${KUBE_ROOT}/${MODPATH}" >/dev/null
+ golangci-lint --path-prefix "${MODPATH}" run ./... >&2 || res=$?
+ popd >/dev/null
+ done
+fi
+
+# print a message based on the result
+if [ "$res" -eq 0 ]; then
+ echo 'Congratulations! All files are passing lint :-)'
+else
+ {
+ echo
+ echo 'Please review the above warnings. You can test via "./hack/verify-golangci-lint.sh"'
+ echo 'If the above warnings do not make sense, you can exempt this warning with a comment'
+ echo ' (if your reviewer is okay with it).'
+ echo 'In general please prefer to fix the error, we have already disabled specific lints'
+ echo ' that the project chooses to ignore.'
+ echo 'See: https://golangci-lint.run/usage/false-positives/'
+ echo
+ } >&2
+ exit 1
+fi
+
+# preserve the result
+exit "$res"
diff --git a/hack/verify-staticcheck.sh b/hack/verify-staticcheck.sh
deleted file mode 100755
index 4839f8029d1..00000000000
--- a/hack/verify-staticcheck.sh
+++ /dev/null
@@ -1,177 +0,0 @@
-#!/usr/bin/env bash
-
-# Copyright 2014 The Kubernetes Authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# 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.
-
-# This script lints each package by `staticcheck`.
-# Usage: `hack/verify-staticcheck.sh`.
-# NOTE: To ignore issues detected a package, add it to the
-# `.staticcheck_failures` blacklist.
-
-set -o errexit
-set -o nounset
-set -o pipefail
-
-KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
-source "${KUBE_ROOT}/hack/lib/init.sh"
-source "${KUBE_ROOT}/hack/lib/util.sh"
-
-kube::golang::verify_go_version
-
-FOCUS="${1:-}"
-FOCUS="${FOCUS%/}" # Remove the ending "/"
-
-# See https://staticcheck.io/docs/checks
-CHECKS=(
- "all"
- "-S1*" # Omit code simplifications for now.
- "-ST1*" # Mostly stylistic, redundant w/ golint
- "-SA5011" # Possible nil pointer dereference
-)
-export IFS=','; checks="${CHECKS[*]}"; unset IFS
-
-# Packages to ignore due to bugs in staticcheck
-# NOTE: To ignore issues detected a package, add it to the .staticcheck_failures blacklist
-IGNORE=(
- "vendor/k8s.io/kubectl/pkg/cmd/edit/testdata" # golang/go#24854, dominikh/go-tools#565
- "cluster/addons/fluentd-elasticsearch/es-image" # cannot traverse go modules
-)
-export IFS='|'; ignore_pattern="^(${IGNORE[*]})\$"; unset IFS
-
-# Ensure that we find the binaries we build before anything else.
-export GOBIN="${KUBE_OUTPUT_BINPATH}"
-PATH="${GOBIN}:${PATH}"
-
-# Install staticcheck
-pushd "${KUBE_ROOT}/hack/tools" >/dev/null
- GO111MODULE=on go install honnef.co/go/tools/cmd/staticcheck
-popd >/dev/null
-
-cd "${KUBE_ROOT}"
-
-# Check that the file is in alphabetical order
-failure_file="${KUBE_ROOT}/hack/.staticcheck_failures"
-kube::util::check-file-in-alphabetical-order "${failure_file}"
-
-function normalize_package() {
- pkg="${1}"
- if [[ "${pkg}" == "vendor/"* || "${pkg}" == "k8s.io/"* ]]; then
- # Treat this as a full package path (stripping vendor prefix if needed)
- echo "${pkg#"vendor/"}"
- else
- # Treat this as a relative package path to k8s.io/kubernetes
- echo "./${pkg}"
- fi
-}
-
-all_packages=()
-while IFS='' read -r line; do
- line=$(normalize_package "${line}")
- all_packages+=("${line}")
-done < <( hack/make-rules/helpers/cache_go_dirs.sh "${KUBE_ROOT}/_tmp/all_go_dirs" |
- grep "^${FOCUS:-.}" |
- grep -vE "(third_party|generated|clientset_generated|hack|testdata|/_)" |
- grep -vE "$ignore_pattern" )
-
-failing_packages=()
-if [[ -z $FOCUS ]]; then # Ignore failing_packages in FOCUS mode
- while IFS='' read -r line; do failing_packages+=("$line"); done < <(cat "$failure_file")
-fi
-errors=()
-not_failing=()
-
-while read -r error; do
- # Ignore compile errors caused by lack of files due to build tags.
- # TODO: Add verification for these directories.
- ignore_no_files="^-: build constraints exclude all Go files in .* \(compile\)"
- if [[ $error =~ $ignore_no_files ]]; then
- continue
- fi
-
- # Ignore the errors caused by the generated files
- ignore_gen_files=".*/zz_generated\.[a-z]+\.go:.*"
- if [[ $error =~ $ignore_gen_files ]]; then
- continue
- fi
-
- file="${error%%:*}"
- pkg="$(dirname "$file")"
- kube::util::array_contains "$pkg" "${failing_packages[@]}" && in_failing=$? || in_failing=$?
- if [[ "${in_failing}" -ne "0" ]]; then
- errors+=( "${error}" )
- elif [[ "${in_failing}" -eq "0" ]]; then
- really_failing+=( "$pkg" )
- fi
-done < <(GO111MODULE=on GOOS=linux staticcheck -checks "${checks}" "${all_packages[@]}" 2>/dev/null || true)
-
-export IFS=$'\n' # Expand ${really_failing[*]} to separate lines
-kube::util::read-array really_failing < <(sort -u <<<"${really_failing[*]}")
-unset IFS
-for pkg in "${failing_packages[@]}"; do
- if ! kube::util::array_contains "$pkg" "${really_failing[@]}"; then
- not_failing+=( "$pkg" )
- fi
-done
-
-# Check that all failing_packages actually still exist
-gone=()
-for p in "${failing_packages[@]}"; do
- p=$(normalize_package "${p}")
- if ! kube::util::array_contains "${p}" "${all_packages[@]}"; then
- gone+=( "${p}" )
- fi
-done
-
-# Check to be sure all the packages that should pass check are.
-if [ ${#errors[@]} -eq 0 ]; then
- echo 'Congratulations! All Go source files have passed staticcheck.'
-else
- {
- echo "Errors from staticcheck:"
- for err in "${errors[@]}"; do
- echo "$err"
- done
- echo
- echo 'Please review the above warnings. You can test via:'
- echo ' hack/verify-staticcheck.sh '
- echo 'If the above warnings do not make sense, you can exempt the line or file. See:'
- echo ' https://staticcheck.io/docs/#ignoring-problems'
- echo
- } >&2
- exit 1
-fi
-
-if [[ ${#not_failing[@]} -gt 0 ]]; then
- {
- echo "Some packages in hack/.staticcheck_failures are passing staticcheck. Please remove them."
- echo
- for p in "${not_failing[@]}"; do
- echo " $p"
- done
- echo
- } >&2
- exit 1
-fi
-
-if [[ ${#gone[@]} -gt 0 ]]; then
- {
- echo "Some packages in hack/.staticcheck_failures do not exist anymore. Please remove them."
- echo
- for p in "${gone[@]}"; do
- echo " $p"
- done
- echo
- } >&2
- exit 1
-fi
diff --git a/pkg/apis/apps/v1/zz_generated.defaults.go b/pkg/apis/apps/v1/zz_generated.defaults.go
index 9f8932624a1..12a4ff44503 100644
--- a/pkg/apis/apps/v1/zz_generated.defaults.go
+++ b/pkg/apis/apps/v1/zz_generated.defaults.go
@@ -127,18 +127,36 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -177,18 +195,36 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -227,18 +263,36 @@ func SetObjectDefaults_DaemonSet(in *v1.DaemonSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -348,18 +402,36 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -398,18 +470,36 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -448,18 +538,36 @@ func SetObjectDefaults_Deployment(in *v1.Deployment) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -569,18 +677,36 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -619,18 +745,36 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -669,18 +813,36 @@ func SetObjectDefaults_ReplicaSet(in *v1.ReplicaSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -790,18 +952,36 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -840,18 +1020,36 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -890,18 +1088,36 @@ func SetObjectDefaults_StatefulSet(in *v1.StatefulSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/apis/apps/v1beta1/zz_generated.defaults.go b/pkg/apis/apps/v1beta1/zz_generated.defaults.go
index b345cc1af8c..0f9434adcb7 100644
--- a/pkg/apis/apps/v1beta1/zz_generated.defaults.go
+++ b/pkg/apis/apps/v1beta1/zz_generated.defaults.go
@@ -123,18 +123,36 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -173,18 +191,36 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -223,18 +259,36 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -344,18 +398,36 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -394,18 +466,36 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -444,18 +534,36 @@ func SetObjectDefaults_StatefulSet(in *v1beta1.StatefulSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/apis/apps/v1beta2/zz_generated.defaults.go b/pkg/apis/apps/v1beta2/zz_generated.defaults.go
index f578bf2db98..37728587b16 100644
--- a/pkg/apis/apps/v1beta2/zz_generated.defaults.go
+++ b/pkg/apis/apps/v1beta2/zz_generated.defaults.go
@@ -127,18 +127,36 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -177,18 +195,36 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -227,18 +263,36 @@ func SetObjectDefaults_DaemonSet(in *v1beta2.DaemonSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -348,18 +402,36 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -398,18 +470,36 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -448,18 +538,36 @@ func SetObjectDefaults_Deployment(in *v1beta2.Deployment) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -569,18 +677,36 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -619,18 +745,36 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -669,18 +813,36 @@ func SetObjectDefaults_ReplicaSet(in *v1beta2.ReplicaSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -790,18 +952,36 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -840,18 +1020,36 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -890,18 +1088,36 @@ func SetObjectDefaults_StatefulSet(in *v1beta2.StatefulSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/apis/batch/v1/zz_generated.defaults.go b/pkg/apis/batch/v1/zz_generated.defaults.go
index 581c4246f8d..409ba558ba9 100644
--- a/pkg/apis/batch/v1/zz_generated.defaults.go
+++ b/pkg/apis/batch/v1/zz_generated.defaults.go
@@ -123,18 +123,36 @@ func SetObjectDefaults_CronJob(in *v1.CronJob) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -173,18 +191,36 @@ func SetObjectDefaults_CronJob(in *v1.CronJob) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -223,18 +259,36 @@ func SetObjectDefaults_CronJob(in *v1.CronJob) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -344,18 +398,36 @@ func SetObjectDefaults_Job(in *v1.Job) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -394,18 +466,36 @@ func SetObjectDefaults_Job(in *v1.Job) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
corev1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -444,18 +534,36 @@ func SetObjectDefaults_Job(in *v1.Job) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
corev1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
corev1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/apis/batch/v1beta1/zz_generated.defaults.go b/pkg/apis/batch/v1beta1/zz_generated.defaults.go
index 9b0ad62dc72..89c08a9c3f4 100644
--- a/pkg/apis/batch/v1beta1/zz_generated.defaults.go
+++ b/pkg/apis/batch/v1beta1/zz_generated.defaults.go
@@ -122,18 +122,36 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -172,18 +190,36 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -222,18 +258,36 @@ func SetObjectDefaults_CronJob(in *v1beta1.CronJob) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -342,18 +396,36 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -392,18 +464,36 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -442,18 +532,36 @@ func SetObjectDefaults_JobTemplate(in *v1beta1.JobTemplate) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/apis/core/fuzzer/fuzzer.go b/pkg/apis/core/fuzzer/fuzzer.go
index f1ff79632b1..fbe6ab75ade 100644
--- a/pkg/apis/core/fuzzer/fuzzer.go
+++ b/pkg/apis/core/fuzzer/fuzzer.go
@@ -538,5 +538,11 @@ var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
e.Series.LastObservedTime = metav1.MicroTime{Time: time.Unix(3, 3000)}
}
},
+ func(j *core.GRPCAction, c fuzz.Continue) {
+ empty := ""
+ if j.Service == nil {
+ j.Service = &empty
+ }
+ },
}
}
diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go
index a64b27c9e31..fc46e23eb1a 100644
--- a/pkg/apis/core/types.go
+++ b/pkg/apis/core/types.go
@@ -2241,6 +2241,12 @@ type ProbeHandler struct {
// TCPSocket specifies an action involving a TCP port.
// +optional
TCPSocket *TCPSocketAction
+
+ // GRPC specifies an action involving a GRPC port.
+ // This is an alpha field and requires enabling GRPCContainerProbe feature gate.
+ // +featureGate=GRPCContainerProbe
+ // +optional
+ GRPC *GRPCAction
}
// LifecycleHandler defines a specific action that should be taken in a lifecycle
@@ -2259,6 +2265,19 @@ type LifecycleHandler struct {
TCPSocket *TCPSocketAction
}
+type GRPCAction struct {
+ // Port number of the gRPC service.
+ // Note: Number must be in the range 1 to 65535.
+ Port int32
+
+ // Service is the name of the service to place in the gRPC HealthCheckRequest
+ // (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
+ //
+ // If this is not specified, the default behavior is to probe the server's overall health status.
+ // +optional
+ Service *string
+}
+
// Lifecycle describes actions that the management system should take in response to container lifecycle
// events. For the PostStart and PreStop lifecycle handlers, management of the container blocks
// until the action is complete, unless the container process fails, in which case the handler is aborted.
diff --git a/pkg/apis/core/v1/defaults_test.go b/pkg/apis/core/v1/defaults_test.go
index c5f55160021..750ded75bf7 100644
--- a/pkg/apis/core/v1/defaults_test.go
+++ b/pkg/apis/core/v1/defaults_test.go
@@ -78,7 +78,22 @@ func TestWorkloadDefaults(t *testing.T) {
".Spec.Containers[0].StartupProbe.TimeoutSeconds": "1",
".Spec.Containers[0].TerminationMessagePath": `"/dev/termination-log"`,
".Spec.Containers[0].TerminationMessagePolicy": `"File"`,
+ ".Spec.Containers[0].LivenessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.Containers[0].ReadinessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.Containers[0].StartupProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.DNSPolicy": `"ClusterFirst"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Env[0].ValueFrom.FieldRef.APIVersion": `"v1"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ImagePullPolicy": `"IfNotPresent"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Lifecycle.PostStart.HTTPGet.Path": `"/"`,
@@ -86,21 +101,18 @@ func TestWorkloadDefaults(t *testing.T) {
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet.Path": `"/"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet.Scheme": `"HTTP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.FailureThreshold": "3",
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.PeriodSeconds": "10",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.SuccessThreshold": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.TimeoutSeconds": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Ports[0].Protocol": `"TCP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.FailureThreshold": "3",
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.PeriodSeconds": "10",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.SuccessThreshold": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.TimeoutSeconds": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.FailureThreshold": "3",
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.PeriodSeconds": "10",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.SuccessThreshold": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.TimeoutSeconds": "1",
@@ -113,21 +125,18 @@ func TestWorkloadDefaults(t *testing.T) {
".Spec.InitContainers[0].Lifecycle.PreStop.HTTPGet.Path": `"/"`,
".Spec.InitContainers[0].Lifecycle.PreStop.HTTPGet.Scheme": `"HTTP"`,
".Spec.InitContainers[0].LivenessProbe.FailureThreshold": `3`,
- ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.InitContainers[0].LivenessProbe.PeriodSeconds": `10`,
".Spec.InitContainers[0].LivenessProbe.SuccessThreshold": `1`,
".Spec.InitContainers[0].LivenessProbe.TimeoutSeconds": `1`,
".Spec.InitContainers[0].Ports[0].Protocol": `"TCP"`,
".Spec.InitContainers[0].ReadinessProbe.FailureThreshold": `3`,
- ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.InitContainers[0].ReadinessProbe.PeriodSeconds": `10`,
".Spec.InitContainers[0].ReadinessProbe.SuccessThreshold": `1`,
".Spec.InitContainers[0].ReadinessProbe.TimeoutSeconds": `1`,
".Spec.InitContainers[0].StartupProbe.FailureThreshold": "3",
- ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].StartupProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.InitContainers[0].StartupProbe.PeriodSeconds": "10",
".Spec.InitContainers[0].StartupProbe.SuccessThreshold": "1",
".Spec.InitContainers[0].StartupProbe.TimeoutSeconds": "1",
@@ -203,6 +212,9 @@ func TestPodDefaults(t *testing.T) {
".Spec.Containers[0].StartupProbe.TimeoutSeconds": "1",
".Spec.Containers[0].TerminationMessagePath": `"/dev/termination-log"`,
".Spec.Containers[0].TerminationMessagePolicy": `"File"`,
+ ".Spec.Containers[0].LivenessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.Containers[0].ReadinessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.Containers[0].StartupProbe.ProbeHandler.GRPC.Service": `""`,
".Spec.DNSPolicy": `"ClusterFirst"`,
".Spec.EnableServiceLinks": `true`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Env[0].ValueFrom.FieldRef.APIVersion": `"v1"`,
@@ -212,21 +224,15 @@ func TestPodDefaults(t *testing.T) {
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet.Path": `"/"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Lifecycle.PreStop.HTTPGet.Scheme": `"HTTP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.FailureThreshold": "3",
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.PeriodSeconds": "10",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.SuccessThreshold": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.TimeoutSeconds": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.Ports[0].Protocol": `"TCP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.FailureThreshold": "3",
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.PeriodSeconds": "10",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.SuccessThreshold": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.TimeoutSeconds": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.FailureThreshold": "3",
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.PeriodSeconds": "10",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.SuccessThreshold": "1",
".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.TimeoutSeconds": "1",
@@ -239,15 +245,11 @@ func TestPodDefaults(t *testing.T) {
".Spec.InitContainers[0].Lifecycle.PreStop.HTTPGet.Path": `"/"`,
".Spec.InitContainers[0].Lifecycle.PreStop.HTTPGet.Scheme": `"HTTP"`,
".Spec.InitContainers[0].LivenessProbe.FailureThreshold": `3`,
- ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.InitContainers[0].LivenessProbe.PeriodSeconds": `10`,
".Spec.InitContainers[0].LivenessProbe.SuccessThreshold": `1`,
".Spec.InitContainers[0].LivenessProbe.TimeoutSeconds": `1`,
".Spec.InitContainers[0].Ports[0].Protocol": `"TCP"`,
".Spec.InitContainers[0].ReadinessProbe.FailureThreshold": `3`,
- ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.InitContainers[0].ReadinessProbe.PeriodSeconds": `10`,
".Spec.InitContainers[0].ReadinessProbe.SuccessThreshold": `1`,
".Spec.InitContainers[0].ReadinessProbe.TimeoutSeconds": `1`,
@@ -255,11 +257,27 @@ func TestPodDefaults(t *testing.T) {
".Spec.InitContainers[0].TerminationMessagePath": `"/dev/termination-log"`,
".Spec.InitContainers[0].TerminationMessagePolicy": `"File"`,
".Spec.InitContainers[0].StartupProbe.FailureThreshold": "3",
- ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
- ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.InitContainers[0].StartupProbe.PeriodSeconds": "10",
".Spec.InitContainers[0].StartupProbe.SuccessThreshold": "1",
".Spec.InitContainers[0].StartupProbe.TimeoutSeconds": "1",
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.EphemeralContainers[0].EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.InitContainers[0].LivenessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.InitContainers[0].ReadinessProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
+ ".Spec.InitContainers[0].StartupProbe.ProbeHandler.GRPC.Service": `""`,
+ ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Path": `"/"`,
+ ".Spec.InitContainers[0].StartupProbe.ProbeHandler.HTTPGet.Scheme": `"HTTP"`,
".Spec.RestartPolicy": `"Always"`,
".Spec.SchedulerName": `"default-scheduler"`,
".Spec.SecurityContext": `{}`,
diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go
index 678ff54acde..8118b1ba302 100644
--- a/pkg/apis/core/v1/zz_generated.conversion.go
+++ b/pkg/apis/core/v1/zz_generated.conversion.go
@@ -642,6 +642,16 @@ func RegisterConversions(s *runtime.Scheme) error {
}); err != nil {
return err
}
+ if err := s.AddGeneratedConversionFunc((*v1.GRPCAction)(nil), (*core.GRPCAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
+ return Convert_v1_GRPCAction_To_core_GRPCAction(a.(*v1.GRPCAction), b.(*core.GRPCAction), scope)
+ }); err != nil {
+ return err
+ }
+ if err := s.AddGeneratedConversionFunc((*core.GRPCAction)(nil), (*v1.GRPCAction)(nil), func(a, b interface{}, scope conversion.Scope) error {
+ return Convert_core_GRPCAction_To_v1_GRPCAction(a.(*core.GRPCAction), b.(*v1.GRPCAction), scope)
+ }); err != nil {
+ return err
+ }
if err := s.AddGeneratedConversionFunc((*v1.GitRepoVolumeSource)(nil), (*core.GitRepoVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
return Convert_v1_GitRepoVolumeSource_To_core_GitRepoVolumeSource(a.(*v1.GitRepoVolumeSource), b.(*core.GitRepoVolumeSource), scope)
}); err != nil {
@@ -3827,6 +3837,28 @@ func Convert_core_GCEPersistentDiskVolumeSource_To_v1_GCEPersistentDiskVolumeSou
return autoConvert_core_GCEPersistentDiskVolumeSource_To_v1_GCEPersistentDiskVolumeSource(in, out, s)
}
+func autoConvert_v1_GRPCAction_To_core_GRPCAction(in *v1.GRPCAction, out *core.GRPCAction, s conversion.Scope) error {
+ out.Port = in.Port
+ out.Service = (*string)(unsafe.Pointer(in.Service))
+ return nil
+}
+
+// Convert_v1_GRPCAction_To_core_GRPCAction is an autogenerated conversion function.
+func Convert_v1_GRPCAction_To_core_GRPCAction(in *v1.GRPCAction, out *core.GRPCAction, s conversion.Scope) error {
+ return autoConvert_v1_GRPCAction_To_core_GRPCAction(in, out, s)
+}
+
+func autoConvert_core_GRPCAction_To_v1_GRPCAction(in *core.GRPCAction, out *v1.GRPCAction, s conversion.Scope) error {
+ out.Port = in.Port
+ out.Service = (*string)(unsafe.Pointer(in.Service))
+ return nil
+}
+
+// Convert_core_GRPCAction_To_v1_GRPCAction is an autogenerated conversion function.
+func Convert_core_GRPCAction_To_v1_GRPCAction(in *core.GRPCAction, out *v1.GRPCAction, s conversion.Scope) error {
+ return autoConvert_core_GRPCAction_To_v1_GRPCAction(in, out, s)
+}
+
func autoConvert_v1_GitRepoVolumeSource_To_core_GitRepoVolumeSource(in *v1.GitRepoVolumeSource, out *core.GitRepoVolumeSource, s conversion.Scope) error {
out.Repository = in.Repository
out.Revision = in.Revision
@@ -6515,6 +6547,7 @@ func autoConvert_v1_ProbeHandler_To_core_ProbeHandler(in *v1.ProbeHandler, out *
out.Exec = (*core.ExecAction)(unsafe.Pointer(in.Exec))
out.HTTPGet = (*core.HTTPGetAction)(unsafe.Pointer(in.HTTPGet))
out.TCPSocket = (*core.TCPSocketAction)(unsafe.Pointer(in.TCPSocket))
+ out.GRPC = (*core.GRPCAction)(unsafe.Pointer(in.GRPC))
return nil
}
@@ -6527,6 +6560,7 @@ func autoConvert_core_ProbeHandler_To_v1_ProbeHandler(in *core.ProbeHandler, out
out.Exec = (*v1.ExecAction)(unsafe.Pointer(in.Exec))
out.HTTPGet = (*v1.HTTPGetAction)(unsafe.Pointer(in.HTTPGet))
out.TCPSocket = (*v1.TCPSocketAction)(unsafe.Pointer(in.TCPSocket))
+ out.GRPC = (*v1.GRPCAction)(unsafe.Pointer(in.GRPC))
return nil
}
diff --git a/pkg/apis/core/v1/zz_generated.defaults.go b/pkg/apis/core/v1/zz_generated.defaults.go
index d6ed8ada146..7706bbf9af4 100644
--- a/pkg/apis/core/v1/zz_generated.defaults.go
+++ b/pkg/apis/core/v1/zz_generated.defaults.go
@@ -257,18 +257,36 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -307,18 +325,36 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -357,18 +393,36 @@ func SetObjectDefaults_Pod(in *v1.Pod) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -477,18 +531,36 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -527,18 +599,36 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -577,18 +667,36 @@ func SetObjectDefaults_PodTemplate(in *v1.PodTemplate) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -699,18 +807,36 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -749,18 +875,36 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -799,18 +943,36 @@ func SetObjectDefaults_ReplicationController(in *v1.ReplicationController) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go
index 236550c0a34..c2709e8d82e 100644
--- a/pkg/apis/core/validation/validation.go
+++ b/pkg/apis/core/validation/validation.go
@@ -2725,6 +2725,7 @@ type commonHandler struct {
Exec *core.ExecAction
HTTPGet *core.HTTPGetAction
TCPSocket *core.TCPSocketAction
+ GRPC *core.GRPCAction
}
func handlerFromProbe(ph *core.ProbeHandler) commonHandler {
@@ -2732,6 +2733,7 @@ func handlerFromProbe(ph *core.ProbeHandler) commonHandler {
Exec: ph.Exec,
HTTPGet: ph.HTTPGet,
TCPSocket: ph.TCPSocket,
+ GRPC: ph.GRPC,
}
}
@@ -2848,7 +2850,9 @@ func ValidatePortNumOrName(port intstr.IntOrString, fldPath *field.Path) field.E
func validateTCPSocketAction(tcp *core.TCPSocketAction, fldPath *field.Path) field.ErrorList {
return ValidatePortNumOrName(tcp.Port, fldPath.Child("port"))
}
-
+func validateGRPCAction(grpc *core.GRPCAction, fldPath *field.Path) field.ErrorList {
+ return ValidatePortNumOrName(intstr.FromInt(int(grpc.Port)), fldPath.Child("port"))
+}
func validateHandler(handler commonHandler, fldPath *field.Path) field.ErrorList {
numHandlers := 0
allErrors := field.ErrorList{}
@@ -2876,6 +2880,14 @@ func validateHandler(handler commonHandler, fldPath *field.Path) field.ErrorList
allErrors = append(allErrors, validateTCPSocketAction(handler.TCPSocket, fldPath.Child("tcpSocket"))...)
}
}
+ if handler.GRPC != nil {
+ if numHandlers > 0 {
+ allErrors = append(allErrors, field.Forbidden(fldPath.Child("gRPC"), "may not specify more than 1 handler type"))
+ } else {
+ numHandlers++
+ allErrors = append(allErrors, validateGRPCAction(handler.GRPC, fldPath.Child("gRPC"))...)
+ }
+ }
if numHandlers == 0 {
allErrors = append(allErrors, field.Required(fldPath, "must specify a handler type"))
}
diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go
index 1114461f6dd..38f7d5cd8ca 100644
--- a/pkg/apis/core/zz_generated.deepcopy.go
+++ b/pkg/apis/core/zz_generated.deepcopy.go
@@ -1669,6 +1669,27 @@ func (in *GCEPersistentDiskVolumeSource) DeepCopy() *GCEPersistentDiskVolumeSour
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *GRPCAction) DeepCopyInto(out *GRPCAction) {
+ *out = *in
+ if in.Service != nil {
+ in, out := &in.Service, &out.Service
+ *out = new(string)
+ **out = **in
+ }
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GRPCAction.
+func (in *GRPCAction) DeepCopy() *GRPCAction {
+ if in == nil {
+ return nil
+ }
+ out := new(GRPCAction)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GitRepoVolumeSource) DeepCopyInto(out *GitRepoVolumeSource) {
*out = *in
@@ -4234,6 +4255,11 @@ func (in *ProbeHandler) DeepCopyInto(out *ProbeHandler) {
*out = new(TCPSocketAction)
**out = **in
}
+ if in.GRPC != nil {
+ in, out := &in.GRPC, &out.GRPC
+ *out = new(GRPCAction)
+ (*in).DeepCopyInto(*out)
+ }
return
}
diff --git a/pkg/apis/extensions/v1beta1/zz_generated.defaults.go b/pkg/apis/extensions/v1beta1/zz_generated.defaults.go
index e80554b53c6..ade8b18422e 100644
--- a/pkg/apis/extensions/v1beta1/zz_generated.defaults.go
+++ b/pkg/apis/extensions/v1beta1/zz_generated.defaults.go
@@ -131,18 +131,36 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -181,18 +199,36 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -231,18 +267,36 @@ func SetObjectDefaults_DaemonSet(in *v1beta1.DaemonSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -352,18 +406,36 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -402,18 +474,36 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -452,18 +542,36 @@ func SetObjectDefaults_Deployment(in *v1beta1.Deployment) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
@@ -614,18 +722,36 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -664,18 +790,36 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) {
if a.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.ReadinessProbe)
if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.StartupProbe != nil {
v1.SetDefaults_Probe(a.StartupProbe)
if a.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.Lifecycle != nil {
if a.Lifecycle.PostStart != nil {
@@ -714,18 +858,36 @@ func SetObjectDefaults_ReplicaSet(in *v1beta1.ReplicaSet) {
if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.ReadinessProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.ReadinessProbe)
if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.ReadinessProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.StartupProbe != nil {
v1.SetDefaults_Probe(a.EphemeralContainerCommon.StartupProbe)
if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet != nil {
v1.SetDefaults_HTTPGetAction(a.EphemeralContainerCommon.StartupProbe.ProbeHandler.HTTPGet)
}
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC != nil {
+ if a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service == nil {
+ var ptrVar1 string = ""
+ a.EphemeralContainerCommon.StartupProbe.ProbeHandler.GRPC.Service = &ptrVar1
+ }
+ }
}
if a.EphemeralContainerCommon.Lifecycle != nil {
if a.EphemeralContainerCommon.Lifecycle.PostStart != nil {
diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go
index a857abcf155..e7e7aed6b31 100644
--- a/pkg/features/kube_features.go
+++ b/pkg/features/kube_features.go
@@ -836,6 +836,13 @@ const (
//
// Allow users to recover from volume expansion failure
RecoverVolumeExpansionFailure featuregate.Feature = "RecoverVolumeExpansionFailure"
+
+ // owner: @yuzhiquan, @bowei, @PxyUp
+ // kep: http://kep.k8s.io/2727
+ // alpha: v1.23
+ //
+ // Enables GRPC probe method for {Liveness,Readiness,Startup}Probe.
+ GRPCContainerProbe featuregate.Feature = "GRPCContainerProbe"
)
func init() {
@@ -958,6 +965,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
PodAndContainerStatsFromCRI: {Default: false, PreRelease: featuregate.Alpha},
HonorPVReclaimPolicy: {Default: false, PreRelease: featuregate.Alpha},
RecoverVolumeExpansionFailure: {Default: false, PreRelease: featuregate.Alpha},
+ GRPCContainerProbe: {Default: false, PreRelease: featuregate.Alpha},
// inherited features from generic apiserver, relisted here to get a conflict if it is changed
// unintentionally on either side:
diff --git a/pkg/kubelet/cm/cpumanager/state/checkpoint.go b/pkg/kubelet/cm/cpumanager/state/checkpoint.go
index e7df594efc5..ca6d2fc90a3 100644
--- a/pkg/kubelet/cm/cpumanager/state/checkpoint.go
+++ b/pkg/kubelet/cm/cpumanager/state/checkpoint.go
@@ -53,7 +53,7 @@ type CPUManagerCheckpointV2 = CPUManagerCheckpoint
// NewCPUManagerCheckpoint returns an instance of Checkpoint
func NewCPUManagerCheckpoint() *CPUManagerCheckpoint {
- //lint:ignore unexported-type-in-api user-facing error message
+ //nolint:staticcheck // unexported-type-in-api user-facing error message
return newCPUManagerCheckpointV2()
}
diff --git a/pkg/kubelet/cm/cpumanager/state/state_checkpoint.go b/pkg/kubelet/cm/cpumanager/state/state_checkpoint.go
index f501c2bea30..c9aacd19051 100644
--- a/pkg/kubelet/cm/cpumanager/state/state_checkpoint.go
+++ b/pkg/kubelet/cm/cpumanager/state/state_checkpoint.go
@@ -54,7 +54,7 @@ func NewCheckpointState(stateDir, checkpointName, policyName string, initialCont
}
if err := stateCheckpoint.restoreState(); err != nil {
- //lint:ignore ST1005 user-facing error message
+ //nolint:staticcheck // ST1005 user-facing error message
return nil, fmt.Errorf("could not restore state from checkpoint: %v, please drain this node and delete the CPU manager checkpoint file %q before restarting Kubelet",
err, path.Join(stateDir, checkpointName))
}
diff --git a/pkg/kubelet/cm/memorymanager/state/checkpoint.go b/pkg/kubelet/cm/memorymanager/state/checkpoint.go
index a43b40272e0..93b1302baa1 100644
--- a/pkg/kubelet/cm/memorymanager/state/checkpoint.go
+++ b/pkg/kubelet/cm/memorymanager/state/checkpoint.go
@@ -35,7 +35,7 @@ type MemoryManagerCheckpoint struct {
// NewMemoryManagerCheckpoint returns an instance of Checkpoint
func NewMemoryManagerCheckpoint() *MemoryManagerCheckpoint {
- //lint:ignore unexported-type-in-api user-facing error message
+ //nolint:staticcheck // unexported-type-in-api user-facing error message
return &MemoryManagerCheckpoint{
Entries: ContainerMemoryAssignments{},
MachineState: NUMANodeMap{},
diff --git a/pkg/kubelet/cm/memorymanager/state/state_checkpoint.go b/pkg/kubelet/cm/memorymanager/state/state_checkpoint.go
index 3607234094b..286b9fda819 100644
--- a/pkg/kubelet/cm/memorymanager/state/state_checkpoint.go
+++ b/pkg/kubelet/cm/memorymanager/state/state_checkpoint.go
@@ -50,7 +50,7 @@ func NewCheckpointState(stateDir, checkpointName, policyName string) (State, err
}
if err := stateCheckpoint.restoreState(); err != nil {
- //lint:ignore ST1005 user-facing error message
+ //nolint:staticcheck // ST1005 user-facing error message
return nil, fmt.Errorf("could not restore state from checkpoint: %v, please drain this node and delete the memory manager checkpoint file %q before restarting Kubelet",
err, path.Join(stateDir, checkpointName))
}
diff --git a/pkg/kubelet/dockershim/docker_container.go b/pkg/kubelet/dockershim/docker_container.go
index 898931a3733..8cc686d9885 100644
--- a/pkg/kubelet/dockershim/docker_container.go
+++ b/pkg/kubelet/dockershim/docker_container.go
@@ -181,7 +181,7 @@ func (ds *dockerService) CreateContainer(_ context.Context, r *runtimeapi.Create
}
hc.Resources.Devices = devices
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
securityOpts, err := ds.getSecurityOpts(config.GetLinux().GetSecurityContext().GetSeccompProfilePath(), securityOptSeparator)
if err != nil {
return nil, fmt.Errorf("failed to generate security options for container %q: %v", config.Metadata.Name, err)
diff --git a/pkg/kubelet/prober/prober.go b/pkg/kubelet/prober/prober.go
index e94483a09f0..3fef2b022ed 100644
--- a/pkg/kubelet/prober/prober.go
+++ b/pkg/kubelet/prober/prober.go
@@ -28,13 +28,16 @@ import (
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/util/intstr"
+ utilfeature "k8s.io/apiserver/pkg/util/feature"
"k8s.io/client-go/tools/record"
+ kubefeatures "k8s.io/kubernetes/pkg/features"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/kubelet/events"
"k8s.io/kubernetes/pkg/kubelet/prober/results"
"k8s.io/kubernetes/pkg/kubelet/util/format"
"k8s.io/kubernetes/pkg/probe"
execprobe "k8s.io/kubernetes/pkg/probe/exec"
+ grpcprobe "k8s.io/kubernetes/pkg/probe/grpc"
httpprobe "k8s.io/kubernetes/pkg/probe/http"
tcpprobe "k8s.io/kubernetes/pkg/probe/tcp"
"k8s.io/utils/exec"
@@ -54,6 +57,7 @@ type prober struct {
livenessHTTP httpprobe.Prober
startupHTTP httpprobe.Prober
tcp tcpprobe.Prober
+ grpc grpcprobe.Prober
runner kubecontainer.CommandRunner
recorder record.EventRecorder
@@ -72,6 +76,7 @@ func newProber(
livenessHTTP: httpprobe.New(followNonLocalRedirects),
startupHTTP: httpprobe.New(followNonLocalRedirects),
tcp: tcpprobe.New(),
+ grpc: grpcprobe.New(),
runner: runner,
recorder: recorder,
}
@@ -170,7 +175,7 @@ func (pb *prober) runProbe(probeType probeType, p *v1.Probe, pod *v1.Pod, status
return probe.Unknown, "", err
}
path := p.HTTPGet.Path
- klog.V(4).InfoS("HTTP-Probe Host", "scheme", scheme, "host", host, "port", port, "path", path)
+ klog.V(4).InfoS("HTTP-Probe", "scheme", scheme, "host", host, "port", port, "path", path, "timeout", timeout)
url := formatURL(scheme, host, port, path)
headers := buildHeader(p.HTTPGet.HTTPHeaders)
klog.V(4).InfoS("HTTP-Probe Headers", "headers", headers)
@@ -192,9 +197,17 @@ func (pb *prober) runProbe(probeType probeType, p *v1.Probe, pod *v1.Pod, status
if host == "" {
host = status.PodIP
}
- klog.V(4).InfoS("TCP-Probe Host", "host", host, "port", port, "timeout", timeout)
+ klog.V(4).InfoS("TCP-Probe", "host", host, "port", port, "timeout", timeout)
return pb.tcp.Probe(host, port, timeout)
}
+
+ if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.GRPCContainerProbe) && p.GRPC != nil {
+ host := &(status.PodIP)
+ service := p.GRPC.Service
+ klog.V(4).InfoS("GRPC-Probe", "host", host, "service", service, "port", p.GRPC.Port, "timeout", timeout)
+ return pb.grpc.Probe(*host, *service, int(p.GRPC.Port), timeout)
+ }
+
klog.InfoS("Failed to find probe builder for container", "containerName", container.Name)
return probe.Unknown, "", fmt.Errorf("missing probe handler for %s:%s", format.Pod(pod), container.Name)
}
diff --git a/pkg/kubelet/server/server.go b/pkg/kubelet/server/server.go
index 5d230755ab8..28dfc44977c 100644
--- a/pkg/kubelet/server/server.go
+++ b/pkg/kubelet/server/server.go
@@ -353,7 +353,7 @@ func (s *Server) InstallDefaultHandlers() {
s.addMetricsBucketMatcher("metrics/cadvisor")
s.addMetricsBucketMatcher("metrics/probes")
s.addMetricsBucketMatcher("metrics/resource")
- //lint:ignore SA1019 https://github.com/kubernetes/enhancements/issues/1206
+ //nolint:staticcheck // SA1019 https://github.com/kubernetes/enhancements/issues/1206
s.restfulCont.Handle(metricsPath, legacyregistry.Handler())
// cAdvisor metrics are exposed under the secured handler as well
diff --git a/pkg/kubelet/stats/cri_stats_provider.go b/pkg/kubelet/stats/cri_stats_provider.go
index 10fe4d55b33..3690e0c09af 100644
--- a/pkg/kubelet/stats/cri_stats_provider.go
+++ b/pkg/kubelet/stats/cri_stats_provider.go
@@ -68,9 +68,8 @@ type criStatsProvider struct {
imageService internalapi.ImageManagerService
// hostStatsProvider is used to get the status of the host filesystem consumed by pods.
hostStatsProvider HostStatsProvider
- //lint:ignore U1000 We can't import hcsshim due to Build constraints in hcsshim
// windowsNetworkStatsProvider is used by kubelet to gather networking stats on Windows
- windowsNetworkStatsProvider interface{}
+ windowsNetworkStatsProvider interface{} //nolint:unused // U1000 We can't import hcsshim due to Build constraints in hcsshim
// clock is used report current time
clock clock.Clock
diff --git a/pkg/kubelet/status/status_manager.go b/pkg/kubelet/status/status_manager.go
index 9c93a746b58..051f0edda90 100644
--- a/pkg/kubelet/status/status_manager.go
+++ b/pkg/kubelet/status/status_manager.go
@@ -157,8 +157,10 @@ func (m *manager) Start() {
}
klog.InfoS("Starting to sync pod status with apiserver")
- //lint:ignore SA1015 Ticker can link since this is only called once and doesn't handle termination.
- syncTicker := time.Tick(syncPeriod)
+
+ //nolint:staticcheck // SA1015 Ticker can leak since this is only called once and doesn't handle termination.
+ syncTicker := time.NewTicker(syncPeriod).C
+
// syncPod and syncBatch share the same go routine to avoid sync races.
go wait.Forever(func() {
for {
diff --git a/pkg/probe/grpc/grpc.go b/pkg/probe/grpc/grpc.go
new file mode 100644
index 00000000000..4d873acee4c
--- /dev/null
+++ b/pkg/probe/grpc/grpc.go
@@ -0,0 +1,111 @@
+/*
+Copyright 2021 The Kubernetes Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+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 grpc
+
+import (
+ "context"
+ "fmt"
+ "net"
+ "time"
+
+ "google.golang.org/grpc"
+ "google.golang.org/grpc/codes"
+ grpchealth "google.golang.org/grpc/health/grpc_health_v1"
+ "google.golang.org/grpc/metadata"
+ "google.golang.org/grpc/status"
+ "k8s.io/component-base/version"
+ "k8s.io/klog/v2"
+ "k8s.io/kubernetes/pkg/probe"
+)
+
+// Prober is an interface that defines the Probe function for doing GRPC readiness/liveness/startup checks.
+type Prober interface {
+ Probe(host, service string, port int, timeout time.Duration, opts ...grpc.DialOption) (probe.Result, string, error)
+}
+
+type grpcProber struct {
+}
+
+// New Prober for execute grpc probe
+func New() Prober {
+ return grpcProber{}
+}
+
+// Probe executes a grpc call to check the liveness/readiness/startup of container.
+// Returns the Result status, command output, and errors if any.
+// Only return non-nil error when service is unavailable and/or not implementing the interface,
+// otherwise result status is failed,BUT err is nil
+func (p grpcProber) Probe(host, service string, port int, timeout time.Duration, opts ...grpc.DialOption) (probe.Result, string, error) {
+ v := version.Get()
+
+ md := metadata.New(map[string]string{
+ "User-Agent": fmt.Sprintf("kube-probe/%s.%s", v.Major, v.Minor),
+ })
+
+ ctx, cancel := context.WithTimeout(context.Background(), timeout)
+
+ defer cancel()
+
+ addr := net.JoinHostPort(host, fmt.Sprintf("%d", port))
+ conn, err := grpc.DialContext(ctx, addr, opts...)
+
+ if err != nil {
+ if err == context.DeadlineExceeded {
+ klog.V(4).ErrorS(err, "failed to connect grpc service due to timeout", "addr", addr, "service", service, "timeout", timeout)
+ return probe.Failure, fmt.Sprintf("GRPC probe failed to dial: %s", err), nil
+ } else {
+ klog.V(4).ErrorS(err, "failed to connect grpc service", "service", addr)
+ return probe.Failure, "", fmt.Errorf("GRPC probe failed to dial: %w", err)
+ }
+ }
+
+ defer func() {
+ _ = conn.Close()
+ }()
+
+ client := grpchealth.NewHealthClient(conn)
+
+ resp, err := client.Check(metadata.NewOutgoingContext(ctx, md), &grpchealth.HealthCheckRequest{
+ Service: service,
+ })
+
+ if err != nil {
+ state, ok := status.FromError(err)
+ if ok {
+ switch state.Code() {
+ case codes.Unimplemented:
+ klog.V(4).ErrorS(err, "server does not implement the grpc health protocol (grpc.health.v1.Health)", "addr", addr, "service", service)
+ return probe.Failure, "", fmt.Errorf("server does not implement the grpc health protocol: %w", err)
+ case codes.DeadlineExceeded:
+ klog.V(4).ErrorS(err, "rpc request not finished within timeout", "addr", addr, "service", service, "timeout", timeout)
+ return probe.Failure, fmt.Sprintf("GRPC probe failed with DeadlineExceeded"), nil
+ default:
+ klog.V(4).ErrorS(err, "rpc probe failed")
+ }
+ } else {
+ klog.V(4).ErrorS(err, "health rpc probe failed")
+ }
+
+ return probe.Failure, "", fmt.Errorf("health rpc probe failed: %w", err)
+ }
+
+ if resp.Status != grpchealth.HealthCheckResponse_SERVING {
+ return probe.Failure, fmt.Sprintf("GRPC probe failed with status: %s", resp.Status.String()), nil
+ }
+
+ return probe.Success, fmt.Sprintf("GRPC probe success"), nil
+}
diff --git a/pkg/probe/grpc/grpc_test.go b/pkg/probe/grpc/grpc_test.go
new file mode 100644
index 00000000000..60b66a0c185
--- /dev/null
+++ b/pkg/probe/grpc/grpc_test.go
@@ -0,0 +1,186 @@
+/*
+Copyright 2021 The Kubernetes Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+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 grpc
+
+import (
+ "context"
+ "fmt"
+ "net"
+ "net/http"
+ "net/http/httptest"
+ "strconv"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/stretchr/testify/assert"
+ "google.golang.org/grpc"
+ grpchealth "google.golang.org/grpc/health/grpc_health_v1"
+
+ "k8s.io/kubernetes/pkg/probe"
+)
+
+func TestNew(t *testing.T) {
+ t.Run("Should: implement Probe interface", func(t *testing.T) {
+ s := New()
+ assert.Implements(t, (*Prober)(nil), s)
+ })
+}
+
+type successServerMock struct {
+}
+
+func (s successServerMock) Check(context.Context, *grpchealth.HealthCheckRequest) (*grpchealth.HealthCheckResponse, error) {
+ return &grpchealth.HealthCheckResponse{
+ Status: grpchealth.HealthCheckResponse_SERVING,
+ }, nil
+}
+
+func (s successServerMock) Watch(_ *grpchealth.HealthCheckRequest, stream grpchealth.Health_WatchServer) error {
+ return stream.Send(&grpchealth.HealthCheckResponse{
+ Status: grpchealth.HealthCheckResponse_SERVING,
+ })
+}
+
+type errorTimeoutServerMock struct {
+}
+
+func (e errorTimeoutServerMock) Check(context.Context, *grpchealth.HealthCheckRequest) (*grpchealth.HealthCheckResponse, error) {
+ time.Sleep(time.Second * 4)
+ return &grpchealth.HealthCheckResponse{
+ Status: grpchealth.HealthCheckResponse_SERVING,
+ }, nil
+}
+
+func (e errorTimeoutServerMock) Watch(_ *grpchealth.HealthCheckRequest, stream grpchealth.Health_WatchServer) error {
+ time.Sleep(time.Second * 4)
+ return stream.Send(&grpchealth.HealthCheckResponse{
+ Status: grpchealth.HealthCheckResponse_SERVING,
+ })
+}
+
+type errorNotServeServerMock struct {
+}
+
+func (e errorNotServeServerMock) Check(context.Context, *grpchealth.HealthCheckRequest) (*grpchealth.HealthCheckResponse, error) {
+ return &grpchealth.HealthCheckResponse{
+ Status: grpchealth.HealthCheckResponse_NOT_SERVING,
+ }, nil
+}
+
+func (e errorNotServeServerMock) Watch(_ *grpchealth.HealthCheckRequest, stream grpchealth.Health_WatchServer) error {
+ return stream.Send(&grpchealth.HealthCheckResponse{
+ Status: grpchealth.HealthCheckResponse_NOT_SERVING,
+ })
+}
+
+func TestGrpcProber_Probe(t *testing.T) {
+ t.Run("Should: failed but return nil error because cant find host", func(t *testing.T) {
+ s := New()
+ p, o, err := s.Probe("", "", 32, time.Second, grpc.WithInsecure(), grpc.WithBlock())
+ assert.Equal(t, probe.Failure, p)
+ assert.Equal(t, nil, err)
+ assert.Equal(t, "GRPC probe failed to dial: context deadline exceeded", o)
+ })
+ t.Run("Should: return nil error because connection closed", func(t *testing.T) {
+ s := New()
+ server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+ fmt.Fprint(w, "res")
+ }))
+ u := strings.Split(server.URL, ":")
+ assert.Equal(t, 3, len(u))
+
+ port, err := strconv.Atoi(u[2])
+ assert.Equal(t, nil, err)
+
+ // take some time to wait server boot
+ time.Sleep(2 * time.Second)
+ p, _, err := s.Probe("127.0.0.1", "", port, time.Second, grpc.WithInsecure())
+ assert.Equal(t, probe.Failure, p)
+ assert.NotEqual(t, nil, err)
+ })
+ t.Run("Should: return nil error because server response not served", func(t *testing.T) {
+ s := New()
+ lis, _ := net.Listen("tcp", ":0")
+ port := lis.Addr().(*net.TCPAddr).Port
+ grpcServer := grpc.NewServer()
+ defer grpcServer.Stop()
+ grpchealth.RegisterHealthServer(grpcServer, &errorNotServeServerMock{})
+ go func() {
+ _ = grpcServer.Serve(lis)
+ }()
+ // take some time to wait server boot
+ time.Sleep(2 * time.Second)
+ p, o, err := s.Probe("0.0.0.0", "", port, time.Second, grpc.WithInsecure())
+ assert.Equal(t, probe.Failure, p)
+ assert.Equal(t, nil, err)
+ assert.Equal(t, "GRPC probe failed with status: NOT_SERVING", o)
+ })
+ t.Run("Should: return nil-error because server not response in time", func(t *testing.T) {
+ s := New()
+ lis, _ := net.Listen("tcp", ":0")
+ port := lis.Addr().(*net.TCPAddr).Port
+
+ grpcServer := grpc.NewServer()
+ defer grpcServer.Stop()
+ grpchealth.RegisterHealthServer(grpcServer, &errorTimeoutServerMock{})
+ go func() {
+ _ = grpcServer.Serve(lis)
+ }()
+ // take some time to wait server boot
+ time.Sleep(2 * time.Second)
+ p, o, err := s.Probe("0.0.0.0", "", port, time.Second*2, grpc.WithInsecure())
+ assert.Equal(t, probe.Failure, p)
+ assert.Equal(t, nil, err)
+ assert.Equal(t, "GRPC probe failed with DeadlineExceeded", o)
+
+ })
+ t.Run("Should: not return error because check was success", func(t *testing.T) {
+ s := New()
+ lis, _ := net.Listen("tcp", ":0")
+ port := lis.Addr().(*net.TCPAddr).Port
+
+ grpcServer := grpc.NewServer()
+ defer grpcServer.Stop()
+ grpchealth.RegisterHealthServer(grpcServer, &successServerMock{})
+ go func() {
+ _ = grpcServer.Serve(lis)
+ }()
+ // take some time to wait server boot
+ time.Sleep(2 * time.Second)
+ p, _, err := s.Probe("0.0.0.0", "", port, time.Second*2, grpc.WithInsecure())
+ assert.Equal(t, probe.Success, p)
+ assert.Equal(t, nil, err)
+ })
+ t.Run("Should: not return error because check was success, when listen port is 0", func(t *testing.T) {
+ s := New()
+ lis, _ := net.Listen("tcp", ":0")
+ port := lis.Addr().(*net.TCPAddr).Port
+
+ grpcServer := grpc.NewServer()
+ defer grpcServer.Stop()
+ grpchealth.RegisterHealthServer(grpcServer, &successServerMock{})
+ go func() {
+ _ = grpcServer.Serve(lis)
+ }()
+ // take some time to wait server boot
+ time.Sleep(2 * time.Second)
+ p, _, err := s.Probe("0.0.0.0", "", port, time.Second*2, grpc.WithInsecure())
+ assert.Equal(t, probe.Success, p)
+ assert.Equal(t, nil, err)
+ })
+}
diff --git a/pkg/registry/batch/job/storage/storage.go b/pkg/registry/batch/job/storage/storage.go
index 2fdb108158f..e87b1bc0a8e 100644
--- a/pkg/registry/batch/job/storage/storage.go
+++ b/pkg/registry/batch/job/storage/storage.go
@@ -18,6 +18,7 @@ package storage
import (
"context"
+
"k8s.io/apimachinery/pkg/apis/meta/internalversion"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
@@ -96,7 +97,7 @@ func (r *REST) Categories() []string {
}
func (r *REST) Delete(ctx context.Context, name string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
//nolint: staticcheck
if options != nil && options.PropagationPolicy == nil && options.OrphanDependents == nil &&
job.Strategy.DefaultGarbageCollectionPolicy(ctx) == rest.OrphanDependents {
@@ -108,8 +109,7 @@ func (r *REST) Delete(ctx context.Context, name string, deleteValidation rest.Va
}
func (r *REST) DeleteCollection(ctx context.Context, deleteValidation rest.ValidateObjectFunc, deleteOptions *metav1.DeleteOptions, listOptions *internalversion.ListOptions) (runtime.Object, error) {
- //lint:ignore SA1019 backwards compatibility
- //nolint: staticcheck
+ //nolint:staticcheck // SA1019 backwards compatibility
if deleteOptions.PropagationPolicy == nil && deleteOptions.OrphanDependents == nil &&
job.Strategy.DefaultGarbageCollectionPolicy(ctx) == rest.OrphanDependents {
// Throw a warning if delete options are not explicitly set as Job deletion strategy by default is orphaning
diff --git a/pkg/registry/core/namespace/storage/storage.go b/pkg/registry/core/namespace/storage/storage.go
index 375445e3a0f..a453d43f75e 100644
--- a/pkg/registry/core/namespace/storage/storage.go
+++ b/pkg/registry/core/namespace/storage/storage.go
@@ -253,9 +253,8 @@ func ShouldDeleteNamespaceDuringUpdate(ctx context.Context, key string, obj, exi
}
func shouldHaveOrphanFinalizer(options *metav1.DeleteOptions, haveOrphanFinalizer bool) bool {
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
if options.OrphanDependents != nil {
- //lint:ignore SA1019 backwards compatibility
return *options.OrphanDependents
}
if options.PropagationPolicy != nil {
@@ -265,9 +264,8 @@ func shouldHaveOrphanFinalizer(options *metav1.DeleteOptions, haveOrphanFinalize
}
func shouldHaveDeleteDependentsFinalizer(options *metav1.DeleteOptions, haveDeleteDependentsFinalizer bool) bool {
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
if options.OrphanDependents != nil {
- //lint:ignore SA1019 backwards compatibility
return *options.OrphanDependents == false
}
if options.PropagationPolicy != nil {
diff --git a/pkg/util/coverage/fake_test_deps.go b/pkg/util/coverage/fake_test_deps.go
index a03fc9171e3..a9506d4c77f 100644
--- a/pkg/util/coverage/fake_test_deps.go
+++ b/pkg/util/coverage/fake_test_deps.go
@@ -23,33 +23,41 @@ import (
// This is an implementation of testing.testDeps. It doesn't need to do anything, because
// no tests are actually run. It does need a concrete implementation of at least ImportPath,
// which is called unconditionally when running tests.
-//lint:ignore U1000 see comment above, we know it's unused normally.
+//nolint:unused // U1000 see comment above, we know it's unused normally.
type fakeTestDeps struct{}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) ImportPath() string {
return ""
}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) MatchString(pat, str string) (bool, error) {
return false, nil
}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) StartCPUProfile(io.Writer) error {
return nil
}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) StopCPUProfile() {}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) StartTestLog(io.Writer) {}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) StopTestLog() error {
return nil
}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) WriteHeapProfile(io.Writer) error {
return nil
}
+//nolint:unused // U1000 see comment above, we know it's unused normally.
func (fakeTestDeps) WriteProfileTo(string, io.Writer, int) error {
return nil
}
diff --git a/pkg/util/flag/flags.go b/pkg/util/flag/flags.go
index 5ecc283974e..63c48e413d6 100644
--- a/pkg/util/flag/flags.go
+++ b/pkg/util/flag/flags.go
@@ -50,7 +50,7 @@ type IPVar struct {
}
// Set sets the flag value
-func (v IPVar) Set(s string) error {
+func (v *IPVar) Set(s string) error {
if len(s) == 0 {
v.Val = nil
return nil
@@ -67,7 +67,7 @@ func (v IPVar) Set(s string) error {
}
// String returns the flag value
-func (v IPVar) String() string {
+func (v *IPVar) String() string {
if v.Val == nil {
return ""
}
@@ -75,7 +75,7 @@ func (v IPVar) String() string {
}
// Type gets the flag type
-func (v IPVar) Type() string {
+func (v *IPVar) Type() string {
return "ip"
}
@@ -85,7 +85,7 @@ type IPPortVar struct {
}
// Set sets the flag value
-func (v IPPortVar) Set(s string) error {
+func (v *IPPortVar) Set(s string) error {
if len(s) == 0 {
v.Val = nil
return nil
@@ -119,7 +119,7 @@ func (v IPPortVar) Set(s string) error {
}
// String returns the flag value
-func (v IPPortVar) String() string {
+func (v *IPPortVar) String() string {
if v.Val == nil {
return ""
}
@@ -127,7 +127,7 @@ func (v IPPortVar) String() string {
}
// Type gets the flag type
-func (v IPPortVar) Type() string {
+func (v *IPPortVar) Type() string {
return "ipport"
}
diff --git a/pkg/util/flag/flags_test.go b/pkg/util/flag/flags_test.go
index 04daa8ddb2f..938715b3537 100644
--- a/pkg/util/flag/flags_test.go
+++ b/pkg/util/flag/flags_test.go
@@ -51,7 +51,7 @@ func TestIPVar(t *testing.T) {
for _, tc := range testCases {
fs := pflag.NewFlagSet("blah", pflag.PanicOnError)
ip := defaultIP
- fs.Var(IPVar{&ip}, "ip", "the ip")
+ fs.Var(&IPVar{&ip}, "ip", "the ip")
var err error
func() {
@@ -145,7 +145,7 @@ func TestIPPortVar(t *testing.T) {
for _, tc := range testCases {
fs := pflag.NewFlagSet("blah", pflag.PanicOnError)
ipport := defaultIPPort
- fs.Var(IPPortVar{&ipport}, "ipport", "the ip:port")
+ fs.Var(&IPPortVar{&ipport}, "ipport", "the ip:port")
var err error
func() {
diff --git a/pkg/volume/util/fsquota/quota_linux.go b/pkg/volume/util/fsquota/quota_linux.go
index 2da7d263997..85784204aa1 100644
--- a/pkg/volume/util/fsquota/quota_linux.go
+++ b/pkg/volume/util/fsquota/quota_linux.go
@@ -304,8 +304,7 @@ func SupportsQuotas(m mount.Interface, path string) (bool, error) {
// AssignQuota chooses the quota ID based on the pod UID and path.
// If the pod UID is identical to another one known, it may (but presently
// doesn't) choose the same quota ID as other volumes in the pod.
-//lint:ignore SA4009 poduid is overwritten by design, see comment below
-func AssignQuota(m mount.Interface, path string, poduid types.UID, bytes *resource.Quantity) error {
+func AssignQuota(m mount.Interface, path string, poduid types.UID, bytes *resource.Quantity) error { //nolint:staticcheck // SA4009 poduid is overwritten by design, see comment below
if bytes == nil {
return fmt.Errorf("attempting to assign null quota to %s", path)
}
@@ -320,7 +319,7 @@ func AssignQuota(m mount.Interface, path string, poduid types.UID, bytes *resour
// volumes in a pod, we can simply remove this line of code.
// If and when we decide permanently that we're going to adopt
// one quota per volume, we can rip all of the pod code out.
- poduid = types.UID(uuid.NewUUID())
+ poduid = types.UID(uuid.NewUUID()) //nolint:staticcheck // SA4009 poduid is overwritten by design, see comment above
if pod, ok := dirPodMap[path]; ok && pod != poduid {
return fmt.Errorf("requesting quota on existing directory %s but different pod %s %s", path, pod, poduid)
}
diff --git a/staging/src/k8s.io/api/core/v1/generated.pb.go b/staging/src/k8s.io/api/core/v1/generated.pb.go
index 4878881fdd0..0418699e633 100644
--- a/staging/src/k8s.io/api/core/v1/generated.pb.go
+++ b/staging/src/k8s.io/api/core/v1/generated.pb.go
@@ -1729,10 +1729,38 @@ func (m *GCEPersistentDiskVolumeSource) XXX_DiscardUnknown() {
var xxx_messageInfo_GCEPersistentDiskVolumeSource proto.InternalMessageInfo
+func (m *GRPCAction) Reset() { *m = GRPCAction{} }
+func (*GRPCAction) ProtoMessage() {}
+func (*GRPCAction) Descriptor() ([]byte, []int) {
+ return fileDescriptor_83c10c24ec417dc9, []int{60}
+}
+func (m *GRPCAction) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+func (m *GRPCAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ b = b[:cap(b)]
+ n, err := m.MarshalToSizedBuffer(b)
+ if err != nil {
+ return nil, err
+ }
+ return b[:n], nil
+}
+func (m *GRPCAction) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GRPCAction.Merge(m, src)
+}
+func (m *GRPCAction) XXX_Size() int {
+ return m.Size()
+}
+func (m *GRPCAction) XXX_DiscardUnknown() {
+ xxx_messageInfo_GRPCAction.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GRPCAction proto.InternalMessageInfo
+
func (m *GitRepoVolumeSource) Reset() { *m = GitRepoVolumeSource{} }
func (*GitRepoVolumeSource) ProtoMessage() {}
func (*GitRepoVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{60}
+ return fileDescriptor_83c10c24ec417dc9, []int{61}
}
func (m *GitRepoVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1760,7 +1788,7 @@ var xxx_messageInfo_GitRepoVolumeSource proto.InternalMessageInfo
func (m *GlusterfsPersistentVolumeSource) Reset() { *m = GlusterfsPersistentVolumeSource{} }
func (*GlusterfsPersistentVolumeSource) ProtoMessage() {}
func (*GlusterfsPersistentVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{61}
+ return fileDescriptor_83c10c24ec417dc9, []int{62}
}
func (m *GlusterfsPersistentVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1788,7 +1816,7 @@ var xxx_messageInfo_GlusterfsPersistentVolumeSource proto.InternalMessageInfo
func (m *GlusterfsVolumeSource) Reset() { *m = GlusterfsVolumeSource{} }
func (*GlusterfsVolumeSource) ProtoMessage() {}
func (*GlusterfsVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{62}
+ return fileDescriptor_83c10c24ec417dc9, []int{63}
}
func (m *GlusterfsVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1816,7 +1844,7 @@ var xxx_messageInfo_GlusterfsVolumeSource proto.InternalMessageInfo
func (m *HTTPGetAction) Reset() { *m = HTTPGetAction{} }
func (*HTTPGetAction) ProtoMessage() {}
func (*HTTPGetAction) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{63}
+ return fileDescriptor_83c10c24ec417dc9, []int{64}
}
func (m *HTTPGetAction) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1844,7 +1872,7 @@ var xxx_messageInfo_HTTPGetAction proto.InternalMessageInfo
func (m *HTTPHeader) Reset() { *m = HTTPHeader{} }
func (*HTTPHeader) ProtoMessage() {}
func (*HTTPHeader) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{64}
+ return fileDescriptor_83c10c24ec417dc9, []int{65}
}
func (m *HTTPHeader) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1872,7 +1900,7 @@ var xxx_messageInfo_HTTPHeader proto.InternalMessageInfo
func (m *HostAlias) Reset() { *m = HostAlias{} }
func (*HostAlias) ProtoMessage() {}
func (*HostAlias) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{65}
+ return fileDescriptor_83c10c24ec417dc9, []int{66}
}
func (m *HostAlias) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1900,7 +1928,7 @@ var xxx_messageInfo_HostAlias proto.InternalMessageInfo
func (m *HostPathVolumeSource) Reset() { *m = HostPathVolumeSource{} }
func (*HostPathVolumeSource) ProtoMessage() {}
func (*HostPathVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{66}
+ return fileDescriptor_83c10c24ec417dc9, []int{67}
}
func (m *HostPathVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1928,7 +1956,7 @@ var xxx_messageInfo_HostPathVolumeSource proto.InternalMessageInfo
func (m *ISCSIPersistentVolumeSource) Reset() { *m = ISCSIPersistentVolumeSource{} }
func (*ISCSIPersistentVolumeSource) ProtoMessage() {}
func (*ISCSIPersistentVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{67}
+ return fileDescriptor_83c10c24ec417dc9, []int{68}
}
func (m *ISCSIPersistentVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1956,7 +1984,7 @@ var xxx_messageInfo_ISCSIPersistentVolumeSource proto.InternalMessageInfo
func (m *ISCSIVolumeSource) Reset() { *m = ISCSIVolumeSource{} }
func (*ISCSIVolumeSource) ProtoMessage() {}
func (*ISCSIVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{68}
+ return fileDescriptor_83c10c24ec417dc9, []int{69}
}
func (m *ISCSIVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -1984,7 +2012,7 @@ var xxx_messageInfo_ISCSIVolumeSource proto.InternalMessageInfo
func (m *KeyToPath) Reset() { *m = KeyToPath{} }
func (*KeyToPath) ProtoMessage() {}
func (*KeyToPath) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{69}
+ return fileDescriptor_83c10c24ec417dc9, []int{70}
}
func (m *KeyToPath) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2012,7 +2040,7 @@ var xxx_messageInfo_KeyToPath proto.InternalMessageInfo
func (m *Lifecycle) Reset() { *m = Lifecycle{} }
func (*Lifecycle) ProtoMessage() {}
func (*Lifecycle) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{70}
+ return fileDescriptor_83c10c24ec417dc9, []int{71}
}
func (m *Lifecycle) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2040,7 +2068,7 @@ var xxx_messageInfo_Lifecycle proto.InternalMessageInfo
func (m *LifecycleHandler) Reset() { *m = LifecycleHandler{} }
func (*LifecycleHandler) ProtoMessage() {}
func (*LifecycleHandler) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{71}
+ return fileDescriptor_83c10c24ec417dc9, []int{72}
}
func (m *LifecycleHandler) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2068,7 +2096,7 @@ var xxx_messageInfo_LifecycleHandler proto.InternalMessageInfo
func (m *LimitRange) Reset() { *m = LimitRange{} }
func (*LimitRange) ProtoMessage() {}
func (*LimitRange) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{72}
+ return fileDescriptor_83c10c24ec417dc9, []int{73}
}
func (m *LimitRange) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2096,7 +2124,7 @@ var xxx_messageInfo_LimitRange proto.InternalMessageInfo
func (m *LimitRangeItem) Reset() { *m = LimitRangeItem{} }
func (*LimitRangeItem) ProtoMessage() {}
func (*LimitRangeItem) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{73}
+ return fileDescriptor_83c10c24ec417dc9, []int{74}
}
func (m *LimitRangeItem) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2124,7 +2152,7 @@ var xxx_messageInfo_LimitRangeItem proto.InternalMessageInfo
func (m *LimitRangeList) Reset() { *m = LimitRangeList{} }
func (*LimitRangeList) ProtoMessage() {}
func (*LimitRangeList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{74}
+ return fileDescriptor_83c10c24ec417dc9, []int{75}
}
func (m *LimitRangeList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2152,7 +2180,7 @@ var xxx_messageInfo_LimitRangeList proto.InternalMessageInfo
func (m *LimitRangeSpec) Reset() { *m = LimitRangeSpec{} }
func (*LimitRangeSpec) ProtoMessage() {}
func (*LimitRangeSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{75}
+ return fileDescriptor_83c10c24ec417dc9, []int{76}
}
func (m *LimitRangeSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2180,7 +2208,7 @@ var xxx_messageInfo_LimitRangeSpec proto.InternalMessageInfo
func (m *List) Reset() { *m = List{} }
func (*List) ProtoMessage() {}
func (*List) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{76}
+ return fileDescriptor_83c10c24ec417dc9, []int{77}
}
func (m *List) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2208,7 +2236,7 @@ var xxx_messageInfo_List proto.InternalMessageInfo
func (m *LoadBalancerIngress) Reset() { *m = LoadBalancerIngress{} }
func (*LoadBalancerIngress) ProtoMessage() {}
func (*LoadBalancerIngress) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{77}
+ return fileDescriptor_83c10c24ec417dc9, []int{78}
}
func (m *LoadBalancerIngress) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2236,7 +2264,7 @@ var xxx_messageInfo_LoadBalancerIngress proto.InternalMessageInfo
func (m *LoadBalancerStatus) Reset() { *m = LoadBalancerStatus{} }
func (*LoadBalancerStatus) ProtoMessage() {}
func (*LoadBalancerStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{78}
+ return fileDescriptor_83c10c24ec417dc9, []int{79}
}
func (m *LoadBalancerStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2264,7 +2292,7 @@ var xxx_messageInfo_LoadBalancerStatus proto.InternalMessageInfo
func (m *LocalObjectReference) Reset() { *m = LocalObjectReference{} }
func (*LocalObjectReference) ProtoMessage() {}
func (*LocalObjectReference) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{79}
+ return fileDescriptor_83c10c24ec417dc9, []int{80}
}
func (m *LocalObjectReference) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2292,7 +2320,7 @@ var xxx_messageInfo_LocalObjectReference proto.InternalMessageInfo
func (m *LocalVolumeSource) Reset() { *m = LocalVolumeSource{} }
func (*LocalVolumeSource) ProtoMessage() {}
func (*LocalVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{80}
+ return fileDescriptor_83c10c24ec417dc9, []int{81}
}
func (m *LocalVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2320,7 +2348,7 @@ var xxx_messageInfo_LocalVolumeSource proto.InternalMessageInfo
func (m *NFSVolumeSource) Reset() { *m = NFSVolumeSource{} }
func (*NFSVolumeSource) ProtoMessage() {}
func (*NFSVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{81}
+ return fileDescriptor_83c10c24ec417dc9, []int{82}
}
func (m *NFSVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2348,7 +2376,7 @@ var xxx_messageInfo_NFSVolumeSource proto.InternalMessageInfo
func (m *Namespace) Reset() { *m = Namespace{} }
func (*Namespace) ProtoMessage() {}
func (*Namespace) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{82}
+ return fileDescriptor_83c10c24ec417dc9, []int{83}
}
func (m *Namespace) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2376,7 +2404,7 @@ var xxx_messageInfo_Namespace proto.InternalMessageInfo
func (m *NamespaceCondition) Reset() { *m = NamespaceCondition{} }
func (*NamespaceCondition) ProtoMessage() {}
func (*NamespaceCondition) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{83}
+ return fileDescriptor_83c10c24ec417dc9, []int{84}
}
func (m *NamespaceCondition) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2404,7 +2432,7 @@ var xxx_messageInfo_NamespaceCondition proto.InternalMessageInfo
func (m *NamespaceList) Reset() { *m = NamespaceList{} }
func (*NamespaceList) ProtoMessage() {}
func (*NamespaceList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{84}
+ return fileDescriptor_83c10c24ec417dc9, []int{85}
}
func (m *NamespaceList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2432,7 +2460,7 @@ var xxx_messageInfo_NamespaceList proto.InternalMessageInfo
func (m *NamespaceSpec) Reset() { *m = NamespaceSpec{} }
func (*NamespaceSpec) ProtoMessage() {}
func (*NamespaceSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{85}
+ return fileDescriptor_83c10c24ec417dc9, []int{86}
}
func (m *NamespaceSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2460,7 +2488,7 @@ var xxx_messageInfo_NamespaceSpec proto.InternalMessageInfo
func (m *NamespaceStatus) Reset() { *m = NamespaceStatus{} }
func (*NamespaceStatus) ProtoMessage() {}
func (*NamespaceStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{86}
+ return fileDescriptor_83c10c24ec417dc9, []int{87}
}
func (m *NamespaceStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2488,7 +2516,7 @@ var xxx_messageInfo_NamespaceStatus proto.InternalMessageInfo
func (m *Node) Reset() { *m = Node{} }
func (*Node) ProtoMessage() {}
func (*Node) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{87}
+ return fileDescriptor_83c10c24ec417dc9, []int{88}
}
func (m *Node) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2516,7 +2544,7 @@ var xxx_messageInfo_Node proto.InternalMessageInfo
func (m *NodeAddress) Reset() { *m = NodeAddress{} }
func (*NodeAddress) ProtoMessage() {}
func (*NodeAddress) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{88}
+ return fileDescriptor_83c10c24ec417dc9, []int{89}
}
func (m *NodeAddress) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2544,7 +2572,7 @@ var xxx_messageInfo_NodeAddress proto.InternalMessageInfo
func (m *NodeAffinity) Reset() { *m = NodeAffinity{} }
func (*NodeAffinity) ProtoMessage() {}
func (*NodeAffinity) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{89}
+ return fileDescriptor_83c10c24ec417dc9, []int{90}
}
func (m *NodeAffinity) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2572,7 +2600,7 @@ var xxx_messageInfo_NodeAffinity proto.InternalMessageInfo
func (m *NodeCondition) Reset() { *m = NodeCondition{} }
func (*NodeCondition) ProtoMessage() {}
func (*NodeCondition) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{90}
+ return fileDescriptor_83c10c24ec417dc9, []int{91}
}
func (m *NodeCondition) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2600,7 +2628,7 @@ var xxx_messageInfo_NodeCondition proto.InternalMessageInfo
func (m *NodeConfigSource) Reset() { *m = NodeConfigSource{} }
func (*NodeConfigSource) ProtoMessage() {}
func (*NodeConfigSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{91}
+ return fileDescriptor_83c10c24ec417dc9, []int{92}
}
func (m *NodeConfigSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2628,7 +2656,7 @@ var xxx_messageInfo_NodeConfigSource proto.InternalMessageInfo
func (m *NodeConfigStatus) Reset() { *m = NodeConfigStatus{} }
func (*NodeConfigStatus) ProtoMessage() {}
func (*NodeConfigStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{92}
+ return fileDescriptor_83c10c24ec417dc9, []int{93}
}
func (m *NodeConfigStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2656,7 +2684,7 @@ var xxx_messageInfo_NodeConfigStatus proto.InternalMessageInfo
func (m *NodeDaemonEndpoints) Reset() { *m = NodeDaemonEndpoints{} }
func (*NodeDaemonEndpoints) ProtoMessage() {}
func (*NodeDaemonEndpoints) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{93}
+ return fileDescriptor_83c10c24ec417dc9, []int{94}
}
func (m *NodeDaemonEndpoints) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2684,7 +2712,7 @@ var xxx_messageInfo_NodeDaemonEndpoints proto.InternalMessageInfo
func (m *NodeList) Reset() { *m = NodeList{} }
func (*NodeList) ProtoMessage() {}
func (*NodeList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{94}
+ return fileDescriptor_83c10c24ec417dc9, []int{95}
}
func (m *NodeList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2712,7 +2740,7 @@ var xxx_messageInfo_NodeList proto.InternalMessageInfo
func (m *NodeProxyOptions) Reset() { *m = NodeProxyOptions{} }
func (*NodeProxyOptions) ProtoMessage() {}
func (*NodeProxyOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{95}
+ return fileDescriptor_83c10c24ec417dc9, []int{96}
}
func (m *NodeProxyOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2740,7 +2768,7 @@ var xxx_messageInfo_NodeProxyOptions proto.InternalMessageInfo
func (m *NodeResources) Reset() { *m = NodeResources{} }
func (*NodeResources) ProtoMessage() {}
func (*NodeResources) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{96}
+ return fileDescriptor_83c10c24ec417dc9, []int{97}
}
func (m *NodeResources) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2768,7 +2796,7 @@ var xxx_messageInfo_NodeResources proto.InternalMessageInfo
func (m *NodeSelector) Reset() { *m = NodeSelector{} }
func (*NodeSelector) ProtoMessage() {}
func (*NodeSelector) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{97}
+ return fileDescriptor_83c10c24ec417dc9, []int{98}
}
func (m *NodeSelector) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2796,7 +2824,7 @@ var xxx_messageInfo_NodeSelector proto.InternalMessageInfo
func (m *NodeSelectorRequirement) Reset() { *m = NodeSelectorRequirement{} }
func (*NodeSelectorRequirement) ProtoMessage() {}
func (*NodeSelectorRequirement) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{98}
+ return fileDescriptor_83c10c24ec417dc9, []int{99}
}
func (m *NodeSelectorRequirement) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2824,7 +2852,7 @@ var xxx_messageInfo_NodeSelectorRequirement proto.InternalMessageInfo
func (m *NodeSelectorTerm) Reset() { *m = NodeSelectorTerm{} }
func (*NodeSelectorTerm) ProtoMessage() {}
func (*NodeSelectorTerm) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{99}
+ return fileDescriptor_83c10c24ec417dc9, []int{100}
}
func (m *NodeSelectorTerm) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2852,7 +2880,7 @@ var xxx_messageInfo_NodeSelectorTerm proto.InternalMessageInfo
func (m *NodeSpec) Reset() { *m = NodeSpec{} }
func (*NodeSpec) ProtoMessage() {}
func (*NodeSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{100}
+ return fileDescriptor_83c10c24ec417dc9, []int{101}
}
func (m *NodeSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2880,7 +2908,7 @@ var xxx_messageInfo_NodeSpec proto.InternalMessageInfo
func (m *NodeStatus) Reset() { *m = NodeStatus{} }
func (*NodeStatus) ProtoMessage() {}
func (*NodeStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{101}
+ return fileDescriptor_83c10c24ec417dc9, []int{102}
}
func (m *NodeStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2908,7 +2936,7 @@ var xxx_messageInfo_NodeStatus proto.InternalMessageInfo
func (m *NodeSystemInfo) Reset() { *m = NodeSystemInfo{} }
func (*NodeSystemInfo) ProtoMessage() {}
func (*NodeSystemInfo) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{102}
+ return fileDescriptor_83c10c24ec417dc9, []int{103}
}
func (m *NodeSystemInfo) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2936,7 +2964,7 @@ var xxx_messageInfo_NodeSystemInfo proto.InternalMessageInfo
func (m *ObjectFieldSelector) Reset() { *m = ObjectFieldSelector{} }
func (*ObjectFieldSelector) ProtoMessage() {}
func (*ObjectFieldSelector) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{103}
+ return fileDescriptor_83c10c24ec417dc9, []int{104}
}
func (m *ObjectFieldSelector) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2964,7 +2992,7 @@ var xxx_messageInfo_ObjectFieldSelector proto.InternalMessageInfo
func (m *ObjectReference) Reset() { *m = ObjectReference{} }
func (*ObjectReference) ProtoMessage() {}
func (*ObjectReference) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{104}
+ return fileDescriptor_83c10c24ec417dc9, []int{105}
}
func (m *ObjectReference) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -2992,7 +3020,7 @@ var xxx_messageInfo_ObjectReference proto.InternalMessageInfo
func (m *PersistentVolume) Reset() { *m = PersistentVolume{} }
func (*PersistentVolume) ProtoMessage() {}
func (*PersistentVolume) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{105}
+ return fileDescriptor_83c10c24ec417dc9, []int{106}
}
func (m *PersistentVolume) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3020,7 +3048,7 @@ var xxx_messageInfo_PersistentVolume proto.InternalMessageInfo
func (m *PersistentVolumeClaim) Reset() { *m = PersistentVolumeClaim{} }
func (*PersistentVolumeClaim) ProtoMessage() {}
func (*PersistentVolumeClaim) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{106}
+ return fileDescriptor_83c10c24ec417dc9, []int{107}
}
func (m *PersistentVolumeClaim) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3048,7 +3076,7 @@ var xxx_messageInfo_PersistentVolumeClaim proto.InternalMessageInfo
func (m *PersistentVolumeClaimCondition) Reset() { *m = PersistentVolumeClaimCondition{} }
func (*PersistentVolumeClaimCondition) ProtoMessage() {}
func (*PersistentVolumeClaimCondition) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{107}
+ return fileDescriptor_83c10c24ec417dc9, []int{108}
}
func (m *PersistentVolumeClaimCondition) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3076,7 +3104,7 @@ var xxx_messageInfo_PersistentVolumeClaimCondition proto.InternalMessageInfo
func (m *PersistentVolumeClaimList) Reset() { *m = PersistentVolumeClaimList{} }
func (*PersistentVolumeClaimList) ProtoMessage() {}
func (*PersistentVolumeClaimList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{108}
+ return fileDescriptor_83c10c24ec417dc9, []int{109}
}
func (m *PersistentVolumeClaimList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3104,7 +3132,7 @@ var xxx_messageInfo_PersistentVolumeClaimList proto.InternalMessageInfo
func (m *PersistentVolumeClaimSpec) Reset() { *m = PersistentVolumeClaimSpec{} }
func (*PersistentVolumeClaimSpec) ProtoMessage() {}
func (*PersistentVolumeClaimSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{109}
+ return fileDescriptor_83c10c24ec417dc9, []int{110}
}
func (m *PersistentVolumeClaimSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3132,7 +3160,7 @@ var xxx_messageInfo_PersistentVolumeClaimSpec proto.InternalMessageInfo
func (m *PersistentVolumeClaimStatus) Reset() { *m = PersistentVolumeClaimStatus{} }
func (*PersistentVolumeClaimStatus) ProtoMessage() {}
func (*PersistentVolumeClaimStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{110}
+ return fileDescriptor_83c10c24ec417dc9, []int{111}
}
func (m *PersistentVolumeClaimStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3160,7 +3188,7 @@ var xxx_messageInfo_PersistentVolumeClaimStatus proto.InternalMessageInfo
func (m *PersistentVolumeClaimTemplate) Reset() { *m = PersistentVolumeClaimTemplate{} }
func (*PersistentVolumeClaimTemplate) ProtoMessage() {}
func (*PersistentVolumeClaimTemplate) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{111}
+ return fileDescriptor_83c10c24ec417dc9, []int{112}
}
func (m *PersistentVolumeClaimTemplate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3188,7 +3216,7 @@ var xxx_messageInfo_PersistentVolumeClaimTemplate proto.InternalMessageInfo
func (m *PersistentVolumeClaimVolumeSource) Reset() { *m = PersistentVolumeClaimVolumeSource{} }
func (*PersistentVolumeClaimVolumeSource) ProtoMessage() {}
func (*PersistentVolumeClaimVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{112}
+ return fileDescriptor_83c10c24ec417dc9, []int{113}
}
func (m *PersistentVolumeClaimVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3216,7 +3244,7 @@ var xxx_messageInfo_PersistentVolumeClaimVolumeSource proto.InternalMessageInfo
func (m *PersistentVolumeList) Reset() { *m = PersistentVolumeList{} }
func (*PersistentVolumeList) ProtoMessage() {}
func (*PersistentVolumeList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{113}
+ return fileDescriptor_83c10c24ec417dc9, []int{114}
}
func (m *PersistentVolumeList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3244,7 +3272,7 @@ var xxx_messageInfo_PersistentVolumeList proto.InternalMessageInfo
func (m *PersistentVolumeSource) Reset() { *m = PersistentVolumeSource{} }
func (*PersistentVolumeSource) ProtoMessage() {}
func (*PersistentVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{114}
+ return fileDescriptor_83c10c24ec417dc9, []int{115}
}
func (m *PersistentVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3272,7 +3300,7 @@ var xxx_messageInfo_PersistentVolumeSource proto.InternalMessageInfo
func (m *PersistentVolumeSpec) Reset() { *m = PersistentVolumeSpec{} }
func (*PersistentVolumeSpec) ProtoMessage() {}
func (*PersistentVolumeSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{115}
+ return fileDescriptor_83c10c24ec417dc9, []int{116}
}
func (m *PersistentVolumeSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3300,7 +3328,7 @@ var xxx_messageInfo_PersistentVolumeSpec proto.InternalMessageInfo
func (m *PersistentVolumeStatus) Reset() { *m = PersistentVolumeStatus{} }
func (*PersistentVolumeStatus) ProtoMessage() {}
func (*PersistentVolumeStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{116}
+ return fileDescriptor_83c10c24ec417dc9, []int{117}
}
func (m *PersistentVolumeStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3328,7 +3356,7 @@ var xxx_messageInfo_PersistentVolumeStatus proto.InternalMessageInfo
func (m *PhotonPersistentDiskVolumeSource) Reset() { *m = PhotonPersistentDiskVolumeSource{} }
func (*PhotonPersistentDiskVolumeSource) ProtoMessage() {}
func (*PhotonPersistentDiskVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{117}
+ return fileDescriptor_83c10c24ec417dc9, []int{118}
}
func (m *PhotonPersistentDiskVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3356,7 +3384,7 @@ var xxx_messageInfo_PhotonPersistentDiskVolumeSource proto.InternalMessageInfo
func (m *Pod) Reset() { *m = Pod{} }
func (*Pod) ProtoMessage() {}
func (*Pod) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{118}
+ return fileDescriptor_83c10c24ec417dc9, []int{119}
}
func (m *Pod) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3384,7 +3412,7 @@ var xxx_messageInfo_Pod proto.InternalMessageInfo
func (m *PodAffinity) Reset() { *m = PodAffinity{} }
func (*PodAffinity) ProtoMessage() {}
func (*PodAffinity) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{119}
+ return fileDescriptor_83c10c24ec417dc9, []int{120}
}
func (m *PodAffinity) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3412,7 +3440,7 @@ var xxx_messageInfo_PodAffinity proto.InternalMessageInfo
func (m *PodAffinityTerm) Reset() { *m = PodAffinityTerm{} }
func (*PodAffinityTerm) ProtoMessage() {}
func (*PodAffinityTerm) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{120}
+ return fileDescriptor_83c10c24ec417dc9, []int{121}
}
func (m *PodAffinityTerm) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3440,7 +3468,7 @@ var xxx_messageInfo_PodAffinityTerm proto.InternalMessageInfo
func (m *PodAntiAffinity) Reset() { *m = PodAntiAffinity{} }
func (*PodAntiAffinity) ProtoMessage() {}
func (*PodAntiAffinity) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{121}
+ return fileDescriptor_83c10c24ec417dc9, []int{122}
}
func (m *PodAntiAffinity) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3468,7 +3496,7 @@ var xxx_messageInfo_PodAntiAffinity proto.InternalMessageInfo
func (m *PodAttachOptions) Reset() { *m = PodAttachOptions{} }
func (*PodAttachOptions) ProtoMessage() {}
func (*PodAttachOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{122}
+ return fileDescriptor_83c10c24ec417dc9, []int{123}
}
func (m *PodAttachOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3496,7 +3524,7 @@ var xxx_messageInfo_PodAttachOptions proto.InternalMessageInfo
func (m *PodCondition) Reset() { *m = PodCondition{} }
func (*PodCondition) ProtoMessage() {}
func (*PodCondition) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{123}
+ return fileDescriptor_83c10c24ec417dc9, []int{124}
}
func (m *PodCondition) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3524,7 +3552,7 @@ var xxx_messageInfo_PodCondition proto.InternalMessageInfo
func (m *PodDNSConfig) Reset() { *m = PodDNSConfig{} }
func (*PodDNSConfig) ProtoMessage() {}
func (*PodDNSConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{124}
+ return fileDescriptor_83c10c24ec417dc9, []int{125}
}
func (m *PodDNSConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3552,7 +3580,7 @@ var xxx_messageInfo_PodDNSConfig proto.InternalMessageInfo
func (m *PodDNSConfigOption) Reset() { *m = PodDNSConfigOption{} }
func (*PodDNSConfigOption) ProtoMessage() {}
func (*PodDNSConfigOption) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{125}
+ return fileDescriptor_83c10c24ec417dc9, []int{126}
}
func (m *PodDNSConfigOption) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3580,7 +3608,7 @@ var xxx_messageInfo_PodDNSConfigOption proto.InternalMessageInfo
func (m *PodExecOptions) Reset() { *m = PodExecOptions{} }
func (*PodExecOptions) ProtoMessage() {}
func (*PodExecOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{126}
+ return fileDescriptor_83c10c24ec417dc9, []int{127}
}
func (m *PodExecOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3608,7 +3636,7 @@ var xxx_messageInfo_PodExecOptions proto.InternalMessageInfo
func (m *PodIP) Reset() { *m = PodIP{} }
func (*PodIP) ProtoMessage() {}
func (*PodIP) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{127}
+ return fileDescriptor_83c10c24ec417dc9, []int{128}
}
func (m *PodIP) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3636,7 +3664,7 @@ var xxx_messageInfo_PodIP proto.InternalMessageInfo
func (m *PodList) Reset() { *m = PodList{} }
func (*PodList) ProtoMessage() {}
func (*PodList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{128}
+ return fileDescriptor_83c10c24ec417dc9, []int{129}
}
func (m *PodList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3664,7 +3692,7 @@ var xxx_messageInfo_PodList proto.InternalMessageInfo
func (m *PodLogOptions) Reset() { *m = PodLogOptions{} }
func (*PodLogOptions) ProtoMessage() {}
func (*PodLogOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{129}
+ return fileDescriptor_83c10c24ec417dc9, []int{130}
}
func (m *PodLogOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3692,7 +3720,7 @@ var xxx_messageInfo_PodLogOptions proto.InternalMessageInfo
func (m *PodOS) Reset() { *m = PodOS{} }
func (*PodOS) ProtoMessage() {}
func (*PodOS) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{130}
+ return fileDescriptor_83c10c24ec417dc9, []int{131}
}
func (m *PodOS) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3720,7 +3748,7 @@ var xxx_messageInfo_PodOS proto.InternalMessageInfo
func (m *PodPortForwardOptions) Reset() { *m = PodPortForwardOptions{} }
func (*PodPortForwardOptions) ProtoMessage() {}
func (*PodPortForwardOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{131}
+ return fileDescriptor_83c10c24ec417dc9, []int{132}
}
func (m *PodPortForwardOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3748,7 +3776,7 @@ var xxx_messageInfo_PodPortForwardOptions proto.InternalMessageInfo
func (m *PodProxyOptions) Reset() { *m = PodProxyOptions{} }
func (*PodProxyOptions) ProtoMessage() {}
func (*PodProxyOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{132}
+ return fileDescriptor_83c10c24ec417dc9, []int{133}
}
func (m *PodProxyOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3776,7 +3804,7 @@ var xxx_messageInfo_PodProxyOptions proto.InternalMessageInfo
func (m *PodReadinessGate) Reset() { *m = PodReadinessGate{} }
func (*PodReadinessGate) ProtoMessage() {}
func (*PodReadinessGate) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{133}
+ return fileDescriptor_83c10c24ec417dc9, []int{134}
}
func (m *PodReadinessGate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3804,7 +3832,7 @@ var xxx_messageInfo_PodReadinessGate proto.InternalMessageInfo
func (m *PodSecurityContext) Reset() { *m = PodSecurityContext{} }
func (*PodSecurityContext) ProtoMessage() {}
func (*PodSecurityContext) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{134}
+ return fileDescriptor_83c10c24ec417dc9, []int{135}
}
func (m *PodSecurityContext) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3832,7 +3860,7 @@ var xxx_messageInfo_PodSecurityContext proto.InternalMessageInfo
func (m *PodSignature) Reset() { *m = PodSignature{} }
func (*PodSignature) ProtoMessage() {}
func (*PodSignature) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{135}
+ return fileDescriptor_83c10c24ec417dc9, []int{136}
}
func (m *PodSignature) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3860,7 +3888,7 @@ var xxx_messageInfo_PodSignature proto.InternalMessageInfo
func (m *PodSpec) Reset() { *m = PodSpec{} }
func (*PodSpec) ProtoMessage() {}
func (*PodSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{136}
+ return fileDescriptor_83c10c24ec417dc9, []int{137}
}
func (m *PodSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3888,7 +3916,7 @@ var xxx_messageInfo_PodSpec proto.InternalMessageInfo
func (m *PodStatus) Reset() { *m = PodStatus{} }
func (*PodStatus) ProtoMessage() {}
func (*PodStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{137}
+ return fileDescriptor_83c10c24ec417dc9, []int{138}
}
func (m *PodStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3916,7 +3944,7 @@ var xxx_messageInfo_PodStatus proto.InternalMessageInfo
func (m *PodStatusResult) Reset() { *m = PodStatusResult{} }
func (*PodStatusResult) ProtoMessage() {}
func (*PodStatusResult) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{138}
+ return fileDescriptor_83c10c24ec417dc9, []int{139}
}
func (m *PodStatusResult) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3944,7 +3972,7 @@ var xxx_messageInfo_PodStatusResult proto.InternalMessageInfo
func (m *PodTemplate) Reset() { *m = PodTemplate{} }
func (*PodTemplate) ProtoMessage() {}
func (*PodTemplate) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{139}
+ return fileDescriptor_83c10c24ec417dc9, []int{140}
}
func (m *PodTemplate) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -3972,7 +4000,7 @@ var xxx_messageInfo_PodTemplate proto.InternalMessageInfo
func (m *PodTemplateList) Reset() { *m = PodTemplateList{} }
func (*PodTemplateList) ProtoMessage() {}
func (*PodTemplateList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{140}
+ return fileDescriptor_83c10c24ec417dc9, []int{141}
}
func (m *PodTemplateList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4000,7 +4028,7 @@ var xxx_messageInfo_PodTemplateList proto.InternalMessageInfo
func (m *PodTemplateSpec) Reset() { *m = PodTemplateSpec{} }
func (*PodTemplateSpec) ProtoMessage() {}
func (*PodTemplateSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{141}
+ return fileDescriptor_83c10c24ec417dc9, []int{142}
}
func (m *PodTemplateSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4028,7 +4056,7 @@ var xxx_messageInfo_PodTemplateSpec proto.InternalMessageInfo
func (m *PortStatus) Reset() { *m = PortStatus{} }
func (*PortStatus) ProtoMessage() {}
func (*PortStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{142}
+ return fileDescriptor_83c10c24ec417dc9, []int{143}
}
func (m *PortStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4056,7 +4084,7 @@ var xxx_messageInfo_PortStatus proto.InternalMessageInfo
func (m *PortworxVolumeSource) Reset() { *m = PortworxVolumeSource{} }
func (*PortworxVolumeSource) ProtoMessage() {}
func (*PortworxVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{143}
+ return fileDescriptor_83c10c24ec417dc9, []int{144}
}
func (m *PortworxVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4084,7 +4112,7 @@ var xxx_messageInfo_PortworxVolumeSource proto.InternalMessageInfo
func (m *Preconditions) Reset() { *m = Preconditions{} }
func (*Preconditions) ProtoMessage() {}
func (*Preconditions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{144}
+ return fileDescriptor_83c10c24ec417dc9, []int{145}
}
func (m *Preconditions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4112,7 +4140,7 @@ var xxx_messageInfo_Preconditions proto.InternalMessageInfo
func (m *PreferAvoidPodsEntry) Reset() { *m = PreferAvoidPodsEntry{} }
func (*PreferAvoidPodsEntry) ProtoMessage() {}
func (*PreferAvoidPodsEntry) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{145}
+ return fileDescriptor_83c10c24ec417dc9, []int{146}
}
func (m *PreferAvoidPodsEntry) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4140,7 +4168,7 @@ var xxx_messageInfo_PreferAvoidPodsEntry proto.InternalMessageInfo
func (m *PreferredSchedulingTerm) Reset() { *m = PreferredSchedulingTerm{} }
func (*PreferredSchedulingTerm) ProtoMessage() {}
func (*PreferredSchedulingTerm) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{146}
+ return fileDescriptor_83c10c24ec417dc9, []int{147}
}
func (m *PreferredSchedulingTerm) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4168,7 +4196,7 @@ var xxx_messageInfo_PreferredSchedulingTerm proto.InternalMessageInfo
func (m *Probe) Reset() { *m = Probe{} }
func (*Probe) ProtoMessage() {}
func (*Probe) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{147}
+ return fileDescriptor_83c10c24ec417dc9, []int{148}
}
func (m *Probe) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4196,7 +4224,7 @@ var xxx_messageInfo_Probe proto.InternalMessageInfo
func (m *ProbeHandler) Reset() { *m = ProbeHandler{} }
func (*ProbeHandler) ProtoMessage() {}
func (*ProbeHandler) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{148}
+ return fileDescriptor_83c10c24ec417dc9, []int{149}
}
func (m *ProbeHandler) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4224,7 +4252,7 @@ var xxx_messageInfo_ProbeHandler proto.InternalMessageInfo
func (m *ProjectedVolumeSource) Reset() { *m = ProjectedVolumeSource{} }
func (*ProjectedVolumeSource) ProtoMessage() {}
func (*ProjectedVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{149}
+ return fileDescriptor_83c10c24ec417dc9, []int{150}
}
func (m *ProjectedVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4252,7 +4280,7 @@ var xxx_messageInfo_ProjectedVolumeSource proto.InternalMessageInfo
func (m *QuobyteVolumeSource) Reset() { *m = QuobyteVolumeSource{} }
func (*QuobyteVolumeSource) ProtoMessage() {}
func (*QuobyteVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{150}
+ return fileDescriptor_83c10c24ec417dc9, []int{151}
}
func (m *QuobyteVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4280,7 +4308,7 @@ var xxx_messageInfo_QuobyteVolumeSource proto.InternalMessageInfo
func (m *RBDPersistentVolumeSource) Reset() { *m = RBDPersistentVolumeSource{} }
func (*RBDPersistentVolumeSource) ProtoMessage() {}
func (*RBDPersistentVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{151}
+ return fileDescriptor_83c10c24ec417dc9, []int{152}
}
func (m *RBDPersistentVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4308,7 +4336,7 @@ var xxx_messageInfo_RBDPersistentVolumeSource proto.InternalMessageInfo
func (m *RBDVolumeSource) Reset() { *m = RBDVolumeSource{} }
func (*RBDVolumeSource) ProtoMessage() {}
func (*RBDVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{152}
+ return fileDescriptor_83c10c24ec417dc9, []int{153}
}
func (m *RBDVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4336,7 +4364,7 @@ var xxx_messageInfo_RBDVolumeSource proto.InternalMessageInfo
func (m *RangeAllocation) Reset() { *m = RangeAllocation{} }
func (*RangeAllocation) ProtoMessage() {}
func (*RangeAllocation) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{153}
+ return fileDescriptor_83c10c24ec417dc9, []int{154}
}
func (m *RangeAllocation) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4364,7 +4392,7 @@ var xxx_messageInfo_RangeAllocation proto.InternalMessageInfo
func (m *ReplicationController) Reset() { *m = ReplicationController{} }
func (*ReplicationController) ProtoMessage() {}
func (*ReplicationController) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{154}
+ return fileDescriptor_83c10c24ec417dc9, []int{155}
}
func (m *ReplicationController) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4392,7 +4420,7 @@ var xxx_messageInfo_ReplicationController proto.InternalMessageInfo
func (m *ReplicationControllerCondition) Reset() { *m = ReplicationControllerCondition{} }
func (*ReplicationControllerCondition) ProtoMessage() {}
func (*ReplicationControllerCondition) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{155}
+ return fileDescriptor_83c10c24ec417dc9, []int{156}
}
func (m *ReplicationControllerCondition) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4420,7 +4448,7 @@ var xxx_messageInfo_ReplicationControllerCondition proto.InternalMessageInfo
func (m *ReplicationControllerList) Reset() { *m = ReplicationControllerList{} }
func (*ReplicationControllerList) ProtoMessage() {}
func (*ReplicationControllerList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{156}
+ return fileDescriptor_83c10c24ec417dc9, []int{157}
}
func (m *ReplicationControllerList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4448,7 +4476,7 @@ var xxx_messageInfo_ReplicationControllerList proto.InternalMessageInfo
func (m *ReplicationControllerSpec) Reset() { *m = ReplicationControllerSpec{} }
func (*ReplicationControllerSpec) ProtoMessage() {}
func (*ReplicationControllerSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{157}
+ return fileDescriptor_83c10c24ec417dc9, []int{158}
}
func (m *ReplicationControllerSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4476,7 +4504,7 @@ var xxx_messageInfo_ReplicationControllerSpec proto.InternalMessageInfo
func (m *ReplicationControllerStatus) Reset() { *m = ReplicationControllerStatus{} }
func (*ReplicationControllerStatus) ProtoMessage() {}
func (*ReplicationControllerStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{158}
+ return fileDescriptor_83c10c24ec417dc9, []int{159}
}
func (m *ReplicationControllerStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4504,7 +4532,7 @@ var xxx_messageInfo_ReplicationControllerStatus proto.InternalMessageInfo
func (m *ResourceFieldSelector) Reset() { *m = ResourceFieldSelector{} }
func (*ResourceFieldSelector) ProtoMessage() {}
func (*ResourceFieldSelector) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{159}
+ return fileDescriptor_83c10c24ec417dc9, []int{160}
}
func (m *ResourceFieldSelector) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4532,7 +4560,7 @@ var xxx_messageInfo_ResourceFieldSelector proto.InternalMessageInfo
func (m *ResourceQuota) Reset() { *m = ResourceQuota{} }
func (*ResourceQuota) ProtoMessage() {}
func (*ResourceQuota) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{160}
+ return fileDescriptor_83c10c24ec417dc9, []int{161}
}
func (m *ResourceQuota) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4560,7 +4588,7 @@ var xxx_messageInfo_ResourceQuota proto.InternalMessageInfo
func (m *ResourceQuotaList) Reset() { *m = ResourceQuotaList{} }
func (*ResourceQuotaList) ProtoMessage() {}
func (*ResourceQuotaList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{161}
+ return fileDescriptor_83c10c24ec417dc9, []int{162}
}
func (m *ResourceQuotaList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4588,7 +4616,7 @@ var xxx_messageInfo_ResourceQuotaList proto.InternalMessageInfo
func (m *ResourceQuotaSpec) Reset() { *m = ResourceQuotaSpec{} }
func (*ResourceQuotaSpec) ProtoMessage() {}
func (*ResourceQuotaSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{162}
+ return fileDescriptor_83c10c24ec417dc9, []int{163}
}
func (m *ResourceQuotaSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4616,7 +4644,7 @@ var xxx_messageInfo_ResourceQuotaSpec proto.InternalMessageInfo
func (m *ResourceQuotaStatus) Reset() { *m = ResourceQuotaStatus{} }
func (*ResourceQuotaStatus) ProtoMessage() {}
func (*ResourceQuotaStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{163}
+ return fileDescriptor_83c10c24ec417dc9, []int{164}
}
func (m *ResourceQuotaStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4644,7 +4672,7 @@ var xxx_messageInfo_ResourceQuotaStatus proto.InternalMessageInfo
func (m *ResourceRequirements) Reset() { *m = ResourceRequirements{} }
func (*ResourceRequirements) ProtoMessage() {}
func (*ResourceRequirements) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{164}
+ return fileDescriptor_83c10c24ec417dc9, []int{165}
}
func (m *ResourceRequirements) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4672,7 +4700,7 @@ var xxx_messageInfo_ResourceRequirements proto.InternalMessageInfo
func (m *SELinuxOptions) Reset() { *m = SELinuxOptions{} }
func (*SELinuxOptions) ProtoMessage() {}
func (*SELinuxOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{165}
+ return fileDescriptor_83c10c24ec417dc9, []int{166}
}
func (m *SELinuxOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4700,7 +4728,7 @@ var xxx_messageInfo_SELinuxOptions proto.InternalMessageInfo
func (m *ScaleIOPersistentVolumeSource) Reset() { *m = ScaleIOPersistentVolumeSource{} }
func (*ScaleIOPersistentVolumeSource) ProtoMessage() {}
func (*ScaleIOPersistentVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{166}
+ return fileDescriptor_83c10c24ec417dc9, []int{167}
}
func (m *ScaleIOPersistentVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4728,7 +4756,7 @@ var xxx_messageInfo_ScaleIOPersistentVolumeSource proto.InternalMessageInfo
func (m *ScaleIOVolumeSource) Reset() { *m = ScaleIOVolumeSource{} }
func (*ScaleIOVolumeSource) ProtoMessage() {}
func (*ScaleIOVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{167}
+ return fileDescriptor_83c10c24ec417dc9, []int{168}
}
func (m *ScaleIOVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4756,7 +4784,7 @@ var xxx_messageInfo_ScaleIOVolumeSource proto.InternalMessageInfo
func (m *ScopeSelector) Reset() { *m = ScopeSelector{} }
func (*ScopeSelector) ProtoMessage() {}
func (*ScopeSelector) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{168}
+ return fileDescriptor_83c10c24ec417dc9, []int{169}
}
func (m *ScopeSelector) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4784,7 +4812,7 @@ var xxx_messageInfo_ScopeSelector proto.InternalMessageInfo
func (m *ScopedResourceSelectorRequirement) Reset() { *m = ScopedResourceSelectorRequirement{} }
func (*ScopedResourceSelectorRequirement) ProtoMessage() {}
func (*ScopedResourceSelectorRequirement) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{169}
+ return fileDescriptor_83c10c24ec417dc9, []int{170}
}
func (m *ScopedResourceSelectorRequirement) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4812,7 +4840,7 @@ var xxx_messageInfo_ScopedResourceSelectorRequirement proto.InternalMessageInfo
func (m *SeccompProfile) Reset() { *m = SeccompProfile{} }
func (*SeccompProfile) ProtoMessage() {}
func (*SeccompProfile) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{170}
+ return fileDescriptor_83c10c24ec417dc9, []int{171}
}
func (m *SeccompProfile) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4840,7 +4868,7 @@ var xxx_messageInfo_SeccompProfile proto.InternalMessageInfo
func (m *Secret) Reset() { *m = Secret{} }
func (*Secret) ProtoMessage() {}
func (*Secret) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{171}
+ return fileDescriptor_83c10c24ec417dc9, []int{172}
}
func (m *Secret) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4868,7 +4896,7 @@ var xxx_messageInfo_Secret proto.InternalMessageInfo
func (m *SecretEnvSource) Reset() { *m = SecretEnvSource{} }
func (*SecretEnvSource) ProtoMessage() {}
func (*SecretEnvSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{172}
+ return fileDescriptor_83c10c24ec417dc9, []int{173}
}
func (m *SecretEnvSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4896,7 +4924,7 @@ var xxx_messageInfo_SecretEnvSource proto.InternalMessageInfo
func (m *SecretKeySelector) Reset() { *m = SecretKeySelector{} }
func (*SecretKeySelector) ProtoMessage() {}
func (*SecretKeySelector) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{173}
+ return fileDescriptor_83c10c24ec417dc9, []int{174}
}
func (m *SecretKeySelector) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4924,7 +4952,7 @@ var xxx_messageInfo_SecretKeySelector proto.InternalMessageInfo
func (m *SecretList) Reset() { *m = SecretList{} }
func (*SecretList) ProtoMessage() {}
func (*SecretList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{174}
+ return fileDescriptor_83c10c24ec417dc9, []int{175}
}
func (m *SecretList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4952,7 +4980,7 @@ var xxx_messageInfo_SecretList proto.InternalMessageInfo
func (m *SecretProjection) Reset() { *m = SecretProjection{} }
func (*SecretProjection) ProtoMessage() {}
func (*SecretProjection) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{175}
+ return fileDescriptor_83c10c24ec417dc9, []int{176}
}
func (m *SecretProjection) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -4980,7 +5008,7 @@ var xxx_messageInfo_SecretProjection proto.InternalMessageInfo
func (m *SecretReference) Reset() { *m = SecretReference{} }
func (*SecretReference) ProtoMessage() {}
func (*SecretReference) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{176}
+ return fileDescriptor_83c10c24ec417dc9, []int{177}
}
func (m *SecretReference) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5008,7 +5036,7 @@ var xxx_messageInfo_SecretReference proto.InternalMessageInfo
func (m *SecretVolumeSource) Reset() { *m = SecretVolumeSource{} }
func (*SecretVolumeSource) ProtoMessage() {}
func (*SecretVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{177}
+ return fileDescriptor_83c10c24ec417dc9, []int{178}
}
func (m *SecretVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5036,7 +5064,7 @@ var xxx_messageInfo_SecretVolumeSource proto.InternalMessageInfo
func (m *SecurityContext) Reset() { *m = SecurityContext{} }
func (*SecurityContext) ProtoMessage() {}
func (*SecurityContext) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{178}
+ return fileDescriptor_83c10c24ec417dc9, []int{179}
}
func (m *SecurityContext) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5064,7 +5092,7 @@ var xxx_messageInfo_SecurityContext proto.InternalMessageInfo
func (m *SerializedReference) Reset() { *m = SerializedReference{} }
func (*SerializedReference) ProtoMessage() {}
func (*SerializedReference) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{179}
+ return fileDescriptor_83c10c24ec417dc9, []int{180}
}
func (m *SerializedReference) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5092,7 +5120,7 @@ var xxx_messageInfo_SerializedReference proto.InternalMessageInfo
func (m *Service) Reset() { *m = Service{} }
func (*Service) ProtoMessage() {}
func (*Service) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{180}
+ return fileDescriptor_83c10c24ec417dc9, []int{181}
}
func (m *Service) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5120,7 +5148,7 @@ var xxx_messageInfo_Service proto.InternalMessageInfo
func (m *ServiceAccount) Reset() { *m = ServiceAccount{} }
func (*ServiceAccount) ProtoMessage() {}
func (*ServiceAccount) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{181}
+ return fileDescriptor_83c10c24ec417dc9, []int{182}
}
func (m *ServiceAccount) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5148,7 +5176,7 @@ var xxx_messageInfo_ServiceAccount proto.InternalMessageInfo
func (m *ServiceAccountList) Reset() { *m = ServiceAccountList{} }
func (*ServiceAccountList) ProtoMessage() {}
func (*ServiceAccountList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{182}
+ return fileDescriptor_83c10c24ec417dc9, []int{183}
}
func (m *ServiceAccountList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5176,7 +5204,7 @@ var xxx_messageInfo_ServiceAccountList proto.InternalMessageInfo
func (m *ServiceAccountTokenProjection) Reset() { *m = ServiceAccountTokenProjection{} }
func (*ServiceAccountTokenProjection) ProtoMessage() {}
func (*ServiceAccountTokenProjection) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{183}
+ return fileDescriptor_83c10c24ec417dc9, []int{184}
}
func (m *ServiceAccountTokenProjection) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5204,7 +5232,7 @@ var xxx_messageInfo_ServiceAccountTokenProjection proto.InternalMessageInfo
func (m *ServiceList) Reset() { *m = ServiceList{} }
func (*ServiceList) ProtoMessage() {}
func (*ServiceList) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{184}
+ return fileDescriptor_83c10c24ec417dc9, []int{185}
}
func (m *ServiceList) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5232,7 +5260,7 @@ var xxx_messageInfo_ServiceList proto.InternalMessageInfo
func (m *ServicePort) Reset() { *m = ServicePort{} }
func (*ServicePort) ProtoMessage() {}
func (*ServicePort) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{185}
+ return fileDescriptor_83c10c24ec417dc9, []int{186}
}
func (m *ServicePort) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5260,7 +5288,7 @@ var xxx_messageInfo_ServicePort proto.InternalMessageInfo
func (m *ServiceProxyOptions) Reset() { *m = ServiceProxyOptions{} }
func (*ServiceProxyOptions) ProtoMessage() {}
func (*ServiceProxyOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{186}
+ return fileDescriptor_83c10c24ec417dc9, []int{187}
}
func (m *ServiceProxyOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5288,7 +5316,7 @@ var xxx_messageInfo_ServiceProxyOptions proto.InternalMessageInfo
func (m *ServiceSpec) Reset() { *m = ServiceSpec{} }
func (*ServiceSpec) ProtoMessage() {}
func (*ServiceSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{187}
+ return fileDescriptor_83c10c24ec417dc9, []int{188}
}
func (m *ServiceSpec) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5316,7 +5344,7 @@ var xxx_messageInfo_ServiceSpec proto.InternalMessageInfo
func (m *ServiceStatus) Reset() { *m = ServiceStatus{} }
func (*ServiceStatus) ProtoMessage() {}
func (*ServiceStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{188}
+ return fileDescriptor_83c10c24ec417dc9, []int{189}
}
func (m *ServiceStatus) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5344,7 +5372,7 @@ var xxx_messageInfo_ServiceStatus proto.InternalMessageInfo
func (m *SessionAffinityConfig) Reset() { *m = SessionAffinityConfig{} }
func (*SessionAffinityConfig) ProtoMessage() {}
func (*SessionAffinityConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{189}
+ return fileDescriptor_83c10c24ec417dc9, []int{190}
}
func (m *SessionAffinityConfig) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5372,7 +5400,7 @@ var xxx_messageInfo_SessionAffinityConfig proto.InternalMessageInfo
func (m *StorageOSPersistentVolumeSource) Reset() { *m = StorageOSPersistentVolumeSource{} }
func (*StorageOSPersistentVolumeSource) ProtoMessage() {}
func (*StorageOSPersistentVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{190}
+ return fileDescriptor_83c10c24ec417dc9, []int{191}
}
func (m *StorageOSPersistentVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5400,7 +5428,7 @@ var xxx_messageInfo_StorageOSPersistentVolumeSource proto.InternalMessageInfo
func (m *StorageOSVolumeSource) Reset() { *m = StorageOSVolumeSource{} }
func (*StorageOSVolumeSource) ProtoMessage() {}
func (*StorageOSVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{191}
+ return fileDescriptor_83c10c24ec417dc9, []int{192}
}
func (m *StorageOSVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5428,7 +5456,7 @@ var xxx_messageInfo_StorageOSVolumeSource proto.InternalMessageInfo
func (m *Sysctl) Reset() { *m = Sysctl{} }
func (*Sysctl) ProtoMessage() {}
func (*Sysctl) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{192}
+ return fileDescriptor_83c10c24ec417dc9, []int{193}
}
func (m *Sysctl) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5456,7 +5484,7 @@ var xxx_messageInfo_Sysctl proto.InternalMessageInfo
func (m *TCPSocketAction) Reset() { *m = TCPSocketAction{} }
func (*TCPSocketAction) ProtoMessage() {}
func (*TCPSocketAction) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{193}
+ return fileDescriptor_83c10c24ec417dc9, []int{194}
}
func (m *TCPSocketAction) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5484,7 +5512,7 @@ var xxx_messageInfo_TCPSocketAction proto.InternalMessageInfo
func (m *Taint) Reset() { *m = Taint{} }
func (*Taint) ProtoMessage() {}
func (*Taint) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{194}
+ return fileDescriptor_83c10c24ec417dc9, []int{195}
}
func (m *Taint) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5512,7 +5540,7 @@ var xxx_messageInfo_Taint proto.InternalMessageInfo
func (m *Toleration) Reset() { *m = Toleration{} }
func (*Toleration) ProtoMessage() {}
func (*Toleration) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{195}
+ return fileDescriptor_83c10c24ec417dc9, []int{196}
}
func (m *Toleration) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5540,7 +5568,7 @@ var xxx_messageInfo_Toleration proto.InternalMessageInfo
func (m *TopologySelectorLabelRequirement) Reset() { *m = TopologySelectorLabelRequirement{} }
func (*TopologySelectorLabelRequirement) ProtoMessage() {}
func (*TopologySelectorLabelRequirement) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{196}
+ return fileDescriptor_83c10c24ec417dc9, []int{197}
}
func (m *TopologySelectorLabelRequirement) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5568,7 +5596,7 @@ var xxx_messageInfo_TopologySelectorLabelRequirement proto.InternalMessageInfo
func (m *TopologySelectorTerm) Reset() { *m = TopologySelectorTerm{} }
func (*TopologySelectorTerm) ProtoMessage() {}
func (*TopologySelectorTerm) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{197}
+ return fileDescriptor_83c10c24ec417dc9, []int{198}
}
func (m *TopologySelectorTerm) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5596,7 +5624,7 @@ var xxx_messageInfo_TopologySelectorTerm proto.InternalMessageInfo
func (m *TopologySpreadConstraint) Reset() { *m = TopologySpreadConstraint{} }
func (*TopologySpreadConstraint) ProtoMessage() {}
func (*TopologySpreadConstraint) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{198}
+ return fileDescriptor_83c10c24ec417dc9, []int{199}
}
func (m *TopologySpreadConstraint) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5624,7 +5652,7 @@ var xxx_messageInfo_TopologySpreadConstraint proto.InternalMessageInfo
func (m *TypedLocalObjectReference) Reset() { *m = TypedLocalObjectReference{} }
func (*TypedLocalObjectReference) ProtoMessage() {}
func (*TypedLocalObjectReference) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{199}
+ return fileDescriptor_83c10c24ec417dc9, []int{200}
}
func (m *TypedLocalObjectReference) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5652,7 +5680,7 @@ var xxx_messageInfo_TypedLocalObjectReference proto.InternalMessageInfo
func (m *Volume) Reset() { *m = Volume{} }
func (*Volume) ProtoMessage() {}
func (*Volume) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{200}
+ return fileDescriptor_83c10c24ec417dc9, []int{201}
}
func (m *Volume) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5680,7 +5708,7 @@ var xxx_messageInfo_Volume proto.InternalMessageInfo
func (m *VolumeDevice) Reset() { *m = VolumeDevice{} }
func (*VolumeDevice) ProtoMessage() {}
func (*VolumeDevice) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{201}
+ return fileDescriptor_83c10c24ec417dc9, []int{202}
}
func (m *VolumeDevice) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5708,7 +5736,7 @@ var xxx_messageInfo_VolumeDevice proto.InternalMessageInfo
func (m *VolumeMount) Reset() { *m = VolumeMount{} }
func (*VolumeMount) ProtoMessage() {}
func (*VolumeMount) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{202}
+ return fileDescriptor_83c10c24ec417dc9, []int{203}
}
func (m *VolumeMount) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5736,7 +5764,7 @@ var xxx_messageInfo_VolumeMount proto.InternalMessageInfo
func (m *VolumeNodeAffinity) Reset() { *m = VolumeNodeAffinity{} }
func (*VolumeNodeAffinity) ProtoMessage() {}
func (*VolumeNodeAffinity) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{203}
+ return fileDescriptor_83c10c24ec417dc9, []int{204}
}
func (m *VolumeNodeAffinity) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5764,7 +5792,7 @@ var xxx_messageInfo_VolumeNodeAffinity proto.InternalMessageInfo
func (m *VolumeProjection) Reset() { *m = VolumeProjection{} }
func (*VolumeProjection) ProtoMessage() {}
func (*VolumeProjection) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{204}
+ return fileDescriptor_83c10c24ec417dc9, []int{205}
}
func (m *VolumeProjection) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5792,7 +5820,7 @@ var xxx_messageInfo_VolumeProjection proto.InternalMessageInfo
func (m *VolumeSource) Reset() { *m = VolumeSource{} }
func (*VolumeSource) ProtoMessage() {}
func (*VolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{205}
+ return fileDescriptor_83c10c24ec417dc9, []int{206}
}
func (m *VolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5820,7 +5848,7 @@ var xxx_messageInfo_VolumeSource proto.InternalMessageInfo
func (m *VsphereVirtualDiskVolumeSource) Reset() { *m = VsphereVirtualDiskVolumeSource{} }
func (*VsphereVirtualDiskVolumeSource) ProtoMessage() {}
func (*VsphereVirtualDiskVolumeSource) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{206}
+ return fileDescriptor_83c10c24ec417dc9, []int{207}
}
func (m *VsphereVirtualDiskVolumeSource) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5848,7 +5876,7 @@ var xxx_messageInfo_VsphereVirtualDiskVolumeSource proto.InternalMessageInfo
func (m *WeightedPodAffinityTerm) Reset() { *m = WeightedPodAffinityTerm{} }
func (*WeightedPodAffinityTerm) ProtoMessage() {}
func (*WeightedPodAffinityTerm) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{207}
+ return fileDescriptor_83c10c24ec417dc9, []int{208}
}
func (m *WeightedPodAffinityTerm) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5876,7 +5904,7 @@ var xxx_messageInfo_WeightedPodAffinityTerm proto.InternalMessageInfo
func (m *WindowsSecurityContextOptions) Reset() { *m = WindowsSecurityContextOptions{} }
func (*WindowsSecurityContextOptions) ProtoMessage() {}
func (*WindowsSecurityContextOptions) Descriptor() ([]byte, []int) {
- return fileDescriptor_83c10c24ec417dc9, []int{208}
+ return fileDescriptor_83c10c24ec417dc9, []int{209}
}
func (m *WindowsSecurityContextOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
@@ -5968,6 +5996,7 @@ func init() {
proto.RegisterMapType((map[string]string)(nil), "k8s.io.api.core.v1.FlexVolumeSource.OptionsEntry")
proto.RegisterType((*FlockerVolumeSource)(nil), "k8s.io.api.core.v1.FlockerVolumeSource")
proto.RegisterType((*GCEPersistentDiskVolumeSource)(nil), "k8s.io.api.core.v1.GCEPersistentDiskVolumeSource")
+ proto.RegisterType((*GRPCAction)(nil), "k8s.io.api.core.v1.GRPCAction")
proto.RegisterType((*GitRepoVolumeSource)(nil), "k8s.io.api.core.v1.GitRepoVolumeSource")
proto.RegisterType((*GlusterfsPersistentVolumeSource)(nil), "k8s.io.api.core.v1.GlusterfsPersistentVolumeSource")
proto.RegisterType((*GlusterfsVolumeSource)(nil), "k8s.io.api.core.v1.GlusterfsVolumeSource")
@@ -6146,895 +6175,897 @@ func init() {
}
var fileDescriptor_83c10c24ec417dc9 = []byte{
- // 14201 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x69, 0x70, 0x24, 0xc9,
- 0x79, 0x18, 0xca, 0xea, 0xc6, 0xd5, 0x1f, 0xee, 0x9c, 0x63, 0x31, 0xd8, 0x9d, 0xc1, 0x6c, 0x2d,
- 0x39, 0x3b, 0xcb, 0xdd, 0xc5, 0x70, 0xf6, 0x20, 0x57, 0xbb, 0xe4, 0x8a, 0x00, 0x1a, 0x98, 0xc1,
- 0xce, 0x00, 0xd3, 0x9b, 0x8d, 0x99, 0x21, 0xa9, 0x25, 0x83, 0x85, 0xee, 0x04, 0x50, 0x44, 0x77,
- 0x55, 0x6f, 0x55, 0x35, 0x66, 0xb0, 0x8f, 0x8a, 0xa7, 0x47, 0x9d, 0xd4, 0xf1, 0x82, 0xf1, 0x42,
- 0xcf, 0x76, 0x90, 0x0a, 0x85, 0x43, 0x96, 0x43, 0xa2, 0xe9, 0x4b, 0xa6, 0x2c, 0xc9, 0xa2, 0x6c,
- 0xc9, 0xb7, 0xec, 0x1f, 0x92, 0xac, 0xb0, 0x45, 0x45, 0x28, 0x0c, 0x4b, 0x23, 0x47, 0xc8, 0x8c,
- 0xb0, 0x25, 0xd9, 0xb2, 0x7f, 0x78, 0xac, 0xb0, 0x1c, 0x79, 0x56, 0x66, 0x5d, 0xdd, 0x98, 0xc5,
- 0x80, 0x4b, 0xc6, 0xfe, 0xeb, 0xce, 0xef, 0xcb, 0x2f, 0xb3, 0xf2, 0xfc, 0xf2, 0x3b, 0xe1, 0x95,
- 0xdd, 0x97, 0xc2, 0x79, 0xd7, 0xbf, 0xb4, 0xdb, 0xdd, 0x24, 0x81, 0x47, 0x22, 0x12, 0x5e, 0xda,
- 0x23, 0x5e, 0xd3, 0x0f, 0x2e, 0x09, 0x80, 0xd3, 0x71, 0x2f, 0x35, 0xfc, 0x80, 0x5c, 0xda, 0xbb,
- 0x7c, 0x69, 0x9b, 0x78, 0x24, 0x70, 0x22, 0xd2, 0x9c, 0xef, 0x04, 0x7e, 0xe4, 0x23, 0xc4, 0x71,
- 0xe6, 0x9d, 0x8e, 0x3b, 0x4f, 0x71, 0xe6, 0xf7, 0x2e, 0xcf, 0x3e, 0xbb, 0xed, 0x46, 0x3b, 0xdd,
- 0xcd, 0xf9, 0x86, 0xdf, 0xbe, 0xb4, 0xed, 0x6f, 0xfb, 0x97, 0x18, 0xea, 0x66, 0x77, 0x8b, 0xfd,
- 0x63, 0x7f, 0xd8, 0x2f, 0x4e, 0x62, 0xf6, 0x85, 0xb8, 0x99, 0xb6, 0xd3, 0xd8, 0x71, 0x3d, 0x12,
- 0xec, 0x5f, 0xea, 0xec, 0x6e, 0xb3, 0x76, 0x03, 0x12, 0xfa, 0xdd, 0xa0, 0x41, 0x92, 0x0d, 0x17,
- 0xd6, 0x0a, 0x2f, 0xb5, 0x49, 0xe4, 0x64, 0x74, 0x77, 0xf6, 0x52, 0x5e, 0xad, 0xa0, 0xeb, 0x45,
- 0x6e, 0x3b, 0xdd, 0xcc, 0x07, 0x7b, 0x55, 0x08, 0x1b, 0x3b, 0xa4, 0xed, 0xa4, 0xea, 0x3d, 0x9f,
- 0x57, 0xaf, 0x1b, 0xb9, 0xad, 0x4b, 0xae, 0x17, 0x85, 0x51, 0x90, 0xac, 0x64, 0x7f, 0xdd, 0x82,
- 0xf3, 0x0b, 0xb7, 0xeb, 0xcb, 0x2d, 0x27, 0x8c, 0xdc, 0xc6, 0x62, 0xcb, 0x6f, 0xec, 0xd6, 0x23,
- 0x3f, 0x20, 0xb7, 0xfc, 0x56, 0xb7, 0x4d, 0xea, 0x6c, 0x20, 0xd0, 0x33, 0x30, 0xb2, 0xc7, 0xfe,
- 0xaf, 0x56, 0x67, 0xac, 0xf3, 0xd6, 0xc5, 0xca, 0xe2, 0xd4, 0xaf, 0x1f, 0xcc, 0xbd, 0xe7, 0xde,
- 0xc1, 0xdc, 0xc8, 0x2d, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x00, 0x43, 0x5b, 0xe1, 0xc6, 0x7e, 0x87,
- 0xcc, 0x94, 0x18, 0xee, 0x84, 0xc0, 0x1d, 0x5a, 0xa9, 0xd3, 0x52, 0x2c, 0xa0, 0xe8, 0x12, 0x54,
- 0x3a, 0x4e, 0x10, 0xb9, 0x91, 0xeb, 0x7b, 0x33, 0xe5, 0xf3, 0xd6, 0xc5, 0xc1, 0xc5, 0x69, 0x81,
- 0x5a, 0xa9, 0x49, 0x00, 0x8e, 0x71, 0x68, 0x37, 0x02, 0xe2, 0x34, 0x6f, 0x78, 0xad, 0xfd, 0x99,
- 0x81, 0xf3, 0xd6, 0xc5, 0x91, 0xb8, 0x1b, 0x58, 0x94, 0x63, 0x85, 0x61, 0x7f, 0xb1, 0x04, 0x23,
- 0x0b, 0x5b, 0x5b, 0xae, 0xe7, 0x46, 0xfb, 0xe8, 0x16, 0x8c, 0x79, 0x7e, 0x93, 0xc8, 0xff, 0xec,
- 0x2b, 0x46, 0x9f, 0x3b, 0x3f, 0x9f, 0x5e, 0x4a, 0xf3, 0xeb, 0x1a, 0xde, 0xe2, 0xd4, 0xbd, 0x83,
- 0xb9, 0x31, 0xbd, 0x04, 0x1b, 0x74, 0x10, 0x86, 0xd1, 0x8e, 0xdf, 0x54, 0x64, 0x4b, 0x8c, 0xec,
- 0x5c, 0x16, 0xd9, 0x5a, 0x8c, 0xb6, 0x38, 0x79, 0xef, 0x60, 0x6e, 0x54, 0x2b, 0xc0, 0x3a, 0x11,
- 0xb4, 0x09, 0x93, 0xf4, 0xaf, 0x17, 0xb9, 0x8a, 0x6e, 0x99, 0xd1, 0x7d, 0x22, 0x8f, 0xae, 0x86,
- 0xba, 0x78, 0xe2, 0xde, 0xc1, 0xdc, 0x64, 0xa2, 0x10, 0x27, 0x09, 0xda, 0x6f, 0xc1, 0xc4, 0x42,
- 0x14, 0x39, 0x8d, 0x1d, 0xd2, 0xe4, 0x33, 0x88, 0x5e, 0x80, 0x01, 0xcf, 0x69, 0x13, 0x31, 0xbf,
- 0xe7, 0xc5, 0xc0, 0x0e, 0xac, 0x3b, 0x6d, 0x72, 0xff, 0x60, 0x6e, 0xea, 0xa6, 0xe7, 0xbe, 0xd9,
- 0x15, 0xab, 0x82, 0x96, 0x61, 0x86, 0x8d, 0x9e, 0x03, 0x68, 0x92, 0x3d, 0xb7, 0x41, 0x6a, 0x4e,
- 0xb4, 0x23, 0xe6, 0x1b, 0x89, 0xba, 0x50, 0x55, 0x10, 0xac, 0x61, 0xd9, 0x77, 0xa1, 0xb2, 0xb0,
- 0xe7, 0xbb, 0xcd, 0x9a, 0xdf, 0x0c, 0xd1, 0x2e, 0x4c, 0x76, 0x02, 0xb2, 0x45, 0x02, 0x55, 0x34,
- 0x63, 0x9d, 0x2f, 0x5f, 0x1c, 0x7d, 0xee, 0x62, 0xe6, 0xc7, 0x9a, 0xa8, 0xcb, 0x5e, 0x14, 0xec,
- 0x2f, 0x3e, 0x22, 0xda, 0x9b, 0x4c, 0x40, 0x71, 0x92, 0xb2, 0xfd, 0xcf, 0x4a, 0x70, 0x6a, 0xe1,
- 0xad, 0x6e, 0x40, 0xaa, 0x6e, 0xb8, 0x9b, 0x5c, 0xe1, 0x4d, 0x37, 0xdc, 0x5d, 0x8f, 0x47, 0x40,
- 0x2d, 0xad, 0xaa, 0x28, 0xc7, 0x0a, 0x03, 0x3d, 0x0b, 0xc3, 0xf4, 0xf7, 0x4d, 0xbc, 0x2a, 0x3e,
- 0xf9, 0x84, 0x40, 0x1e, 0xad, 0x3a, 0x91, 0x53, 0xe5, 0x20, 0x2c, 0x71, 0xd0, 0x1a, 0x8c, 0x36,
- 0xd8, 0x86, 0xdc, 0x5e, 0xf3, 0x9b, 0x84, 0x4d, 0x66, 0x65, 0xf1, 0x69, 0x8a, 0xbe, 0x14, 0x17,
- 0xdf, 0x3f, 0x98, 0x9b, 0xe1, 0x7d, 0x13, 0x24, 0x34, 0x18, 0xd6, 0xeb, 0x23, 0x5b, 0xed, 0xaf,
- 0x01, 0x46, 0x09, 0x32, 0xf6, 0xd6, 0x45, 0x6d, 0xab, 0x0c, 0xb2, 0xad, 0x32, 0x96, 0xbd, 0x4d,
- 0xd0, 0x65, 0x18, 0xd8, 0x75, 0xbd, 0xe6, 0xcc, 0x10, 0xa3, 0x75, 0x96, 0xce, 0xf9, 0x35, 0xd7,
- 0x6b, 0xde, 0x3f, 0x98, 0x9b, 0x36, 0xba, 0x43, 0x0b, 0x31, 0x43, 0xb5, 0xff, 0xcc, 0x82, 0x39,
- 0x06, 0x5b, 0x71, 0x5b, 0xa4, 0x46, 0x82, 0xd0, 0x0d, 0x23, 0xe2, 0x45, 0xc6, 0x80, 0x3e, 0x07,
- 0x10, 0x92, 0x46, 0x40, 0x22, 0x6d, 0x48, 0xd5, 0xc2, 0xa8, 0x2b, 0x08, 0xd6, 0xb0, 0xe8, 0x81,
- 0x10, 0xee, 0x38, 0x01, 0x5b, 0x5f, 0x62, 0x60, 0xd5, 0x81, 0x50, 0x97, 0x00, 0x1c, 0xe3, 0x18,
- 0x07, 0x42, 0xb9, 0xd7, 0x81, 0x80, 0x3e, 0x02, 0x93, 0x71, 0x63, 0x61, 0xc7, 0x69, 0xc8, 0x01,
- 0x64, 0x5b, 0xa6, 0x6e, 0x82, 0x70, 0x12, 0xd7, 0xfe, 0x1b, 0x96, 0x58, 0x3c, 0xf4, 0xab, 0xdf,
- 0xe1, 0xdf, 0x6a, 0xff, 0x92, 0x05, 0xc3, 0x8b, 0xae, 0xd7, 0x74, 0xbd, 0x6d, 0xf4, 0x69, 0x18,
- 0xa1, 0x77, 0x53, 0xd3, 0x89, 0x1c, 0x71, 0xee, 0x7d, 0x40, 0xdb, 0x5b, 0xea, 0xaa, 0x98, 0xef,
- 0xec, 0x6e, 0xd3, 0x82, 0x70, 0x9e, 0x62, 0xd3, 0xdd, 0x76, 0x63, 0xf3, 0x33, 0xa4, 0x11, 0xad,
- 0x91, 0xc8, 0x89, 0x3f, 0x27, 0x2e, 0xc3, 0x8a, 0x2a, 0xba, 0x06, 0x43, 0x91, 0x13, 0x6c, 0x93,
- 0x48, 0x1c, 0x80, 0x99, 0x07, 0x15, 0xaf, 0x89, 0xe9, 0x8e, 0x24, 0x5e, 0x83, 0xc4, 0xd7, 0xc2,
- 0x06, 0xab, 0x8a, 0x05, 0x09, 0xfb, 0xc7, 0x86, 0xe1, 0xcc, 0x52, 0x7d, 0x35, 0x67, 0x5d, 0x5d,
- 0x80, 0xa1, 0x66, 0xe0, 0xee, 0x91, 0x40, 0x8c, 0xb3, 0xa2, 0x52, 0x65, 0xa5, 0x58, 0x40, 0xd1,
- 0x4b, 0x30, 0xc6, 0x2f, 0xa4, 0xab, 0x8e, 0xd7, 0x6c, 0xc9, 0x21, 0x3e, 0x29, 0xb0, 0xc7, 0x6e,
- 0x69, 0x30, 0x6c, 0x60, 0x1e, 0x72, 0x51, 0x5d, 0x48, 0x6c, 0xc6, 0xbc, 0xcb, 0xee, 0xf3, 0x16,
- 0x4c, 0xf1, 0x66, 0x16, 0xa2, 0x28, 0x70, 0x37, 0xbb, 0x11, 0x09, 0x67, 0x06, 0xd9, 0x49, 0xb7,
- 0x94, 0x35, 0x5a, 0xb9, 0x23, 0x30, 0x7f, 0x2b, 0x41, 0x85, 0x1f, 0x82, 0x33, 0xa2, 0xdd, 0xa9,
- 0x24, 0x18, 0xa7, 0x9a, 0x45, 0xdf, 0x6b, 0xc1, 0x6c, 0xc3, 0xf7, 0xa2, 0xc0, 0x6f, 0xb5, 0x48,
- 0x50, 0xeb, 0x6e, 0xb6, 0xdc, 0x70, 0x87, 0xaf, 0x53, 0x4c, 0xb6, 0xd8, 0x49, 0x90, 0x33, 0x87,
- 0x0a, 0x49, 0xcc, 0xe1, 0xb9, 0x7b, 0x07, 0x73, 0xb3, 0x4b, 0xb9, 0xa4, 0x70, 0x41, 0x33, 0x68,
- 0x17, 0x10, 0xbd, 0x4a, 0xeb, 0x91, 0xb3, 0x4d, 0xe2, 0xc6, 0x87, 0xfb, 0x6f, 0xfc, 0xf4, 0xbd,
- 0x83, 0x39, 0xb4, 0x9e, 0x22, 0x81, 0x33, 0xc8, 0xa2, 0x37, 0xe1, 0x24, 0x2d, 0x4d, 0x7d, 0xeb,
- 0x48, 0xff, 0xcd, 0xcd, 0xdc, 0x3b, 0x98, 0x3b, 0xb9, 0x9e, 0x41, 0x04, 0x67, 0x92, 0x46, 0xdf,
- 0x63, 0xc1, 0x99, 0xf8, 0xf3, 0x97, 0xef, 0x76, 0x1c, 0xaf, 0x19, 0x37, 0x5c, 0xe9, 0xbf, 0x61,
- 0x7a, 0x26, 0x9f, 0x59, 0xca, 0xa3, 0x84, 0xf3, 0x1b, 0x99, 0x5d, 0x82, 0x53, 0x99, 0xab, 0x05,
- 0x4d, 0x41, 0x79, 0x97, 0x70, 0x2e, 0xa8, 0x82, 0xe9, 0x4f, 0x74, 0x12, 0x06, 0xf7, 0x9c, 0x56,
- 0x57, 0x6c, 0x14, 0xcc, 0xff, 0xbc, 0x5c, 0x7a, 0xc9, 0xb2, 0xff, 0x79, 0x19, 0x26, 0x97, 0xea,
- 0xab, 0x0f, 0xb4, 0x0b, 0xf5, 0x6b, 0xa8, 0x54, 0x78, 0x0d, 0xc5, 0x97, 0x5a, 0x39, 0xf7, 0x52,
- 0xfb, 0xbf, 0x33, 0xb6, 0xd0, 0x00, 0xdb, 0x42, 0xdf, 0x91, 0xb3, 0x85, 0x8e, 0x78, 0xe3, 0xec,
- 0xe5, 0xac, 0xa2, 0x41, 0x36, 0x99, 0x99, 0x1c, 0xcb, 0x75, 0xbf, 0xe1, 0xb4, 0x92, 0x47, 0xdf,
- 0x21, 0x97, 0xd2, 0xd1, 0xcc, 0x63, 0x03, 0xc6, 0x96, 0x9c, 0x8e, 0xb3, 0xe9, 0xb6, 0xdc, 0xc8,
- 0x25, 0x21, 0x7a, 0x12, 0xca, 0x4e, 0xb3, 0xc9, 0xb8, 0xad, 0xca, 0xe2, 0xa9, 0x7b, 0x07, 0x73,
- 0xe5, 0x85, 0x26, 0xbd, 0xf6, 0x41, 0x61, 0xed, 0x63, 0x8a, 0x81, 0xde, 0x0f, 0x03, 0xcd, 0xc0,
- 0xef, 0xcc, 0x94, 0x18, 0x26, 0xdd, 0x75, 0x03, 0xd5, 0xc0, 0xef, 0x24, 0x50, 0x19, 0x8e, 0xfd,
- 0x6b, 0x25, 0x78, 0x6c, 0x89, 0x74, 0x76, 0x56, 0xea, 0x39, 0xe7, 0xf7, 0x45, 0x18, 0x69, 0xfb,
- 0x9e, 0x1b, 0xf9, 0x41, 0x28, 0x9a, 0x66, 0x2b, 0x62, 0x4d, 0x94, 0x61, 0x05, 0x45, 0xe7, 0x61,
- 0xa0, 0x13, 0x33, 0x95, 0x63, 0x92, 0x21, 0x65, 0xec, 0x24, 0x83, 0x50, 0x8c, 0x6e, 0x48, 0x02,
- 0xb1, 0x62, 0x14, 0xc6, 0xcd, 0x90, 0x04, 0x98, 0x41, 0xe2, 0x9b, 0x99, 0xde, 0xd9, 0xe2, 0x84,
- 0x4e, 0xdc, 0xcc, 0x14, 0x82, 0x35, 0x2c, 0x54, 0x83, 0x4a, 0x98, 0x98, 0xd9, 0xbe, 0xb6, 0xe9,
- 0x38, 0xbb, 0xba, 0xd5, 0x4c, 0xc6, 0x44, 0x8c, 0x1b, 0x65, 0xa8, 0xe7, 0xd5, 0xfd, 0xb5, 0x12,
- 0x20, 0x3e, 0x84, 0xdf, 0x62, 0x03, 0x77, 0x33, 0x3d, 0x70, 0xfd, 0x6f, 0x89, 0xa3, 0x1a, 0xbd,
- 0xff, 0x6e, 0xc1, 0x63, 0x4b, 0xae, 0xd7, 0x24, 0x41, 0xce, 0x02, 0x7c, 0x38, 0x6f, 0xd9, 0xc3,
- 0x31, 0x0d, 0xc6, 0x12, 0x1b, 0x38, 0x82, 0x25, 0x66, 0xff, 0x89, 0x05, 0x88, 0x7f, 0xf6, 0x3b,
- 0xee, 0x63, 0x6f, 0xa6, 0x3f, 0xf6, 0x08, 0x96, 0x85, 0x7d, 0x1d, 0x26, 0x96, 0x5a, 0x2e, 0xf1,
- 0xa2, 0xd5, 0xda, 0x92, 0xef, 0x6d, 0xb9, 0xdb, 0xe8, 0x65, 0x98, 0x88, 0xdc, 0x36, 0xf1, 0xbb,
- 0x51, 0x9d, 0x34, 0x7c, 0x8f, 0xbd, 0x24, 0xad, 0x8b, 0x83, 0x8b, 0xe8, 0xde, 0xc1, 0xdc, 0xc4,
- 0x86, 0x01, 0xc1, 0x09, 0x4c, 0xfb, 0xf7, 0xe8, 0xf8, 0xf9, 0xed, 0x8e, 0xef, 0x11, 0x2f, 0x5a,
- 0xf2, 0xbd, 0x26, 0x97, 0x38, 0xbc, 0x0c, 0x03, 0x11, 0x1d, 0x0f, 0x3e, 0x76, 0x17, 0xe4, 0x46,
- 0xa1, 0xa3, 0x70, 0xff, 0x60, 0xee, 0x74, 0xba, 0x06, 0x1b, 0x27, 0x56, 0x07, 0x7d, 0x07, 0x0c,
- 0x85, 0x91, 0x13, 0x75, 0x43, 0x31, 0x9a, 0x8f, 0xcb, 0xd1, 0xac, 0xb3, 0xd2, 0xfb, 0x07, 0x73,
- 0x93, 0xaa, 0x1a, 0x2f, 0xc2, 0xa2, 0x02, 0x7a, 0x0a, 0x86, 0xdb, 0x24, 0x0c, 0x9d, 0x6d, 0x79,
- 0x1b, 0x4e, 0x8a, 0xba, 0xc3, 0x6b, 0xbc, 0x18, 0x4b, 0x38, 0x7a, 0x02, 0x06, 0x49, 0x10, 0xf8,
- 0x81, 0xd8, 0xa3, 0xe3, 0x02, 0x71, 0x70, 0x99, 0x16, 0x62, 0x0e, 0xb3, 0x7f, 0xd3, 0x82, 0x49,
- 0xd5, 0x57, 0xde, 0xd6, 0x31, 0xbc, 0x0a, 0x3e, 0x01, 0xd0, 0x90, 0x1f, 0x18, 0xb2, 0xdb, 0x63,
- 0xf4, 0xb9, 0x0b, 0x99, 0x17, 0x75, 0x6a, 0x18, 0x63, 0xca, 0xaa, 0x28, 0xc4, 0x1a, 0x35, 0xfb,
- 0x1f, 0x5a, 0x70, 0x22, 0xf1, 0x45, 0xd7, 0xdd, 0x30, 0x42, 0x6f, 0xa4, 0xbe, 0x6a, 0xbe, 0xbf,
- 0xaf, 0xa2, 0xb5, 0xd9, 0x37, 0xa9, 0xa5, 0x2c, 0x4b, 0xb4, 0x2f, 0xba, 0x0a, 0x83, 0x6e, 0x44,
- 0xda, 0xf2, 0x63, 0x9e, 0x28, 0xfc, 0x18, 0xde, 0xab, 0x78, 0x46, 0x56, 0x69, 0x4d, 0xcc, 0x09,
- 0xd8, 0xbf, 0x56, 0x86, 0x0a, 0x5f, 0xb6, 0x6b, 0x4e, 0xe7, 0x18, 0xe6, 0xe2, 0x69, 0xa8, 0xb8,
- 0xed, 0x76, 0x37, 0x72, 0x36, 0xc5, 0x71, 0x3e, 0xc2, 0xb7, 0xd6, 0xaa, 0x2c, 0xc4, 0x31, 0x1c,
- 0xad, 0xc2, 0x00, 0xeb, 0x0a, 0xff, 0xca, 0x27, 0xb3, 0xbf, 0x52, 0xf4, 0x7d, 0xbe, 0xea, 0x44,
- 0x0e, 0xe7, 0xa4, 0xd4, 0x3d, 0x42, 0x8b, 0x30, 0x23, 0x81, 0x1c, 0x80, 0x4d, 0xd7, 0x73, 0x82,
- 0x7d, 0x5a, 0x36, 0x53, 0x66, 0x04, 0x9f, 0x2d, 0x26, 0xb8, 0xa8, 0xf0, 0x39, 0x59, 0xf5, 0x61,
- 0x31, 0x00, 0x6b, 0x44, 0x67, 0x3f, 0x04, 0x15, 0x85, 0x7c, 0x18, 0x86, 0x68, 0xf6, 0x23, 0x30,
- 0x99, 0x68, 0xab, 0x57, 0xf5, 0x31, 0x9d, 0x9f, 0xfa, 0x65, 0x76, 0x64, 0x88, 0x5e, 0x2f, 0x7b,
- 0x7b, 0xe2, 0xc8, 0x7d, 0x0b, 0x4e, 0xb6, 0x32, 0x4e, 0x32, 0x31, 0xaf, 0xfd, 0x9f, 0x7c, 0x8f,
- 0x89, 0xcf, 0x3e, 0x99, 0x05, 0xc5, 0x99, 0x6d, 0x50, 0x1e, 0xc1, 0xef, 0xd0, 0x0d, 0xe2, 0xb4,
- 0x74, 0x76, 0xfb, 0x86, 0x28, 0xc3, 0x0a, 0x4a, 0xcf, 0xbb, 0x93, 0xaa, 0xf3, 0xd7, 0xc8, 0x7e,
- 0x9d, 0xb4, 0x48, 0x23, 0xf2, 0x83, 0x6f, 0x6a, 0xf7, 0xcf, 0xf2, 0xd1, 0xe7, 0xc7, 0xe5, 0xa8,
- 0x20, 0x50, 0xbe, 0x46, 0xf6, 0xf9, 0x54, 0xe8, 0x5f, 0x57, 0x2e, 0xfc, 0xba, 0x9f, 0xb3, 0x60,
- 0x5c, 0x7d, 0xdd, 0x31, 0x9c, 0x0b, 0x8b, 0xe6, 0xb9, 0x70, 0xb6, 0x70, 0x81, 0xe7, 0x9c, 0x08,
- 0x5f, 0x2b, 0xc1, 0x19, 0x85, 0x43, 0xdf, 0x06, 0xfc, 0x8f, 0x58, 0x55, 0x97, 0xa0, 0xe2, 0x29,
- 0xa9, 0x95, 0x65, 0x8a, 0x8b, 0x62, 0x99, 0x55, 0x8c, 0x43, 0x59, 0x3c, 0x2f, 0x16, 0x2d, 0x8d,
- 0xe9, 0xe2, 0x5c, 0x21, 0xba, 0x5d, 0x84, 0x72, 0xd7, 0x6d, 0x8a, 0x0b, 0xe6, 0x03, 0x72, 0xb4,
- 0x6f, 0xae, 0x56, 0xef, 0x1f, 0xcc, 0x3d, 0x9e, 0xa7, 0x4a, 0xa0, 0x37, 0x5b, 0x38, 0x7f, 0x73,
- 0xb5, 0x8a, 0x69, 0x65, 0xb4, 0x00, 0x93, 0x52, 0x5b, 0x72, 0x8b, 0xb2, 0x5b, 0xbe, 0x27, 0xee,
- 0x21, 0x25, 0x93, 0xc5, 0x26, 0x18, 0x27, 0xf1, 0x51, 0x15, 0xa6, 0x76, 0xbb, 0x9b, 0xa4, 0x45,
- 0x22, 0xfe, 0xc1, 0xd7, 0x08, 0x97, 0x58, 0x56, 0xe2, 0x97, 0xd9, 0xb5, 0x04, 0x1c, 0xa7, 0x6a,
- 0xd8, 0x7f, 0xc1, 0xee, 0x03, 0x31, 0x7a, 0xb5, 0xc0, 0xa7, 0x0b, 0x8b, 0x52, 0xff, 0x66, 0x2e,
- 0xe7, 0x7e, 0x56, 0xc5, 0x35, 0xb2, 0xbf, 0xe1, 0x53, 0xce, 0x3c, 0x7b, 0x55, 0x18, 0x6b, 0x7e,
- 0xa0, 0x70, 0xcd, 0xff, 0x7c, 0x09, 0x4e, 0xa9, 0x11, 0x30, 0x98, 0xc0, 0x6f, 0xf5, 0x31, 0xb8,
- 0x0c, 0xa3, 0x4d, 0xb2, 0xe5, 0x74, 0x5b, 0x91, 0x12, 0x9f, 0x0f, 0x72, 0x15, 0x4a, 0x35, 0x2e,
- 0xc6, 0x3a, 0xce, 0x21, 0x86, 0xed, 0x7f, 0x8c, 0xb2, 0x8b, 0x38, 0x72, 0xe8, 0x1a, 0x57, 0xbb,
- 0xc6, 0xca, 0xdd, 0x35, 0x4f, 0xc0, 0xa0, 0xdb, 0xa6, 0x8c, 0x59, 0xc9, 0xe4, 0xb7, 0x56, 0x69,
- 0x21, 0xe6, 0x30, 0xf4, 0x3e, 0x18, 0x6e, 0xf8, 0xed, 0xb6, 0xe3, 0x35, 0xd9, 0x95, 0x57, 0x59,
- 0x1c, 0xa5, 0xbc, 0xdb, 0x12, 0x2f, 0xc2, 0x12, 0x86, 0x1e, 0x83, 0x01, 0x27, 0xd8, 0xe6, 0x32,
- 0x8c, 0xca, 0xe2, 0x08, 0x6d, 0x69, 0x21, 0xd8, 0x0e, 0x31, 0x2b, 0xa5, 0x4f, 0xb0, 0x3b, 0x7e,
- 0xb0, 0xeb, 0x7a, 0xdb, 0x55, 0x37, 0x10, 0x5b, 0x42, 0xdd, 0x85, 0xb7, 0x15, 0x04, 0x6b, 0x58,
- 0x68, 0x05, 0x06, 0x3b, 0x7e, 0x10, 0x85, 0x33, 0x43, 0x6c, 0xb8, 0x1f, 0xcf, 0x39, 0x88, 0xf8,
- 0xd7, 0xd6, 0xfc, 0x20, 0x8a, 0x3f, 0x80, 0xfe, 0x0b, 0x31, 0xaf, 0x8e, 0xae, 0xc3, 0x30, 0xf1,
- 0xf6, 0x56, 0x02, 0xbf, 0x3d, 0x73, 0x22, 0x9f, 0xd2, 0x32, 0x47, 0xe1, 0xcb, 0x2c, 0xe6, 0x51,
- 0x45, 0x31, 0x96, 0x24, 0xd0, 0x77, 0x40, 0x99, 0x78, 0x7b, 0x33, 0xc3, 0x8c, 0xd2, 0x6c, 0x0e,
- 0xa5, 0x5b, 0x4e, 0x10, 0x9f, 0xf9, 0xcb, 0xde, 0x1e, 0xa6, 0x75, 0xd0, 0xc7, 0xa1, 0x22, 0x0f,
- 0x8c, 0x50, 0x08, 0xeb, 0x32, 0x17, 0xac, 0x3c, 0x66, 0x30, 0x79, 0xb3, 0xeb, 0x06, 0xa4, 0x4d,
- 0xbc, 0x28, 0x8c, 0x4f, 0x48, 0x09, 0x0d, 0x71, 0x4c, 0x0d, 0x7d, 0x5c, 0x4a, 0x88, 0xd7, 0xfc,
- 0xae, 0x17, 0x85, 0x33, 0x15, 0xd6, 0xbd, 0x4c, 0xdd, 0xdd, 0xad, 0x18, 0x2f, 0x29, 0x42, 0xe6,
- 0x95, 0xb1, 0x41, 0x0a, 0x7d, 0x12, 0xc6, 0xf9, 0x7f, 0xae, 0x01, 0x0b, 0x67, 0x4e, 0x31, 0xda,
- 0xe7, 0xf3, 0x69, 0x73, 0xc4, 0xc5, 0x53, 0x82, 0xf8, 0xb8, 0x5e, 0x1a, 0x62, 0x93, 0x1a, 0xc2,
- 0x30, 0xde, 0x72, 0xf7, 0x88, 0x47, 0xc2, 0xb0, 0x16, 0xf8, 0x9b, 0x64, 0x06, 0xd8, 0xc0, 0x9c,
- 0xc9, 0xd6, 0x98, 0xf9, 0x9b, 0x64, 0x71, 0x9a, 0xd2, 0xbc, 0xae, 0xd7, 0xc1, 0x26, 0x09, 0x74,
- 0x13, 0x26, 0xe8, 0x8b, 0xcd, 0x8d, 0x89, 0x8e, 0xf6, 0x22, 0xca, 0xde, 0x55, 0xd8, 0xa8, 0x84,
- 0x13, 0x44, 0xd0, 0x0d, 0x18, 0x0b, 0x23, 0x27, 0x88, 0xba, 0x1d, 0x4e, 0xf4, 0x74, 0x2f, 0xa2,
- 0x4c, 0xe1, 0x5a, 0xd7, 0xaa, 0x60, 0x83, 0x00, 0x7a, 0x0d, 0x2a, 0x2d, 0x77, 0x8b, 0x34, 0xf6,
- 0x1b, 0x2d, 0x32, 0x33, 0xc6, 0xa8, 0x65, 0x1e, 0x2a, 0xd7, 0x25, 0x12, 0xe7, 0x73, 0xd5, 0x5f,
- 0x1c, 0x57, 0x47, 0xb7, 0xe0, 0x74, 0x44, 0x82, 0xb6, 0xeb, 0x39, 0xf4, 0x30, 0x10, 0x4f, 0x2b,
- 0xa6, 0xc8, 0x1c, 0x67, 0xbb, 0xed, 0x9c, 0x98, 0x8d, 0xd3, 0x1b, 0x99, 0x58, 0x38, 0xa7, 0x36,
- 0xba, 0x0b, 0x33, 0x19, 0x10, 0xbf, 0xe5, 0x36, 0xf6, 0x67, 0x4e, 0x32, 0xca, 0x1f, 0x16, 0x94,
- 0x67, 0x36, 0x72, 0xf0, 0xee, 0x17, 0xc0, 0x70, 0x2e, 0x75, 0x74, 0x03, 0x26, 0xd9, 0x09, 0x54,
- 0xeb, 0xb6, 0x5a, 0xa2, 0xc1, 0x09, 0xd6, 0xe0, 0xfb, 0xe4, 0x7d, 0xbc, 0x6a, 0x82, 0xef, 0x1f,
- 0xcc, 0x41, 0xfc, 0x0f, 0x27, 0x6b, 0xa3, 0x4d, 0xa6, 0x33, 0xeb, 0x06, 0x6e, 0xb4, 0x4f, 0xcf,
- 0x0d, 0x72, 0x37, 0x9a, 0x99, 0x2c, 0x94, 0x57, 0xe8, 0xa8, 0x4a, 0xb1, 0xa6, 0x17, 0xe2, 0x24,
- 0x41, 0x7a, 0xa4, 0x86, 0x51, 0xd3, 0xf5, 0x66, 0xa6, 0xf8, 0xbb, 0x44, 0x9e, 0x48, 0x75, 0x5a,
- 0x88, 0x39, 0x8c, 0xe9, 0xcb, 0xe8, 0x8f, 0x1b, 0xf4, 0xe6, 0x9a, 0x66, 0x88, 0xb1, 0xbe, 0x4c,
- 0x02, 0x70, 0x8c, 0x43, 0x99, 0xc9, 0x28, 0xda, 0x9f, 0x41, 0x0c, 0x55, 0x1d, 0x2c, 0x1b, 0x1b,
- 0x1f, 0xc7, 0xb4, 0xdc, 0xde, 0x84, 0x09, 0x75, 0x10, 0xb2, 0x31, 0x41, 0x73, 0x30, 0xc8, 0xd8,
- 0x27, 0x21, 0x5d, 0xab, 0xd0, 0x2e, 0x30, 0xd6, 0x0a, 0xf3, 0x72, 0xd6, 0x05, 0xf7, 0x2d, 0xb2,
- 0xb8, 0x1f, 0x11, 0xfe, 0xa6, 0x2f, 0x6b, 0x5d, 0x90, 0x00, 0x1c, 0xe3, 0xd8, 0xff, 0x9b, 0xb3,
- 0xa1, 0xf1, 0x69, 0xdb, 0xc7, 0xfd, 0xf2, 0x0c, 0x8c, 0xec, 0xf8, 0x61, 0x44, 0xb1, 0x59, 0x1b,
- 0x83, 0x31, 0xe3, 0x79, 0x55, 0x94, 0x63, 0x85, 0x81, 0x5e, 0x81, 0xf1, 0x86, 0xde, 0x80, 0xb8,
- 0x1c, 0xd5, 0x31, 0x62, 0xb4, 0x8e, 0x4d, 0x5c, 0xf4, 0x12, 0x8c, 0x30, 0x1b, 0x90, 0x86, 0xdf,
- 0x12, 0x5c, 0x9b, 0xbc, 0xe1, 0x47, 0x6a, 0xa2, 0xfc, 0xbe, 0xf6, 0x1b, 0x2b, 0x6c, 0x74, 0x01,
- 0x86, 0x68, 0x17, 0x56, 0x6b, 0xe2, 0x5a, 0x52, 0x82, 0xa2, 0xab, 0xac, 0x14, 0x0b, 0xa8, 0xfd,
- 0xff, 0x95, 0xb4, 0x51, 0xa6, 0xef, 0x61, 0x82, 0x6a, 0x30, 0x7c, 0xc7, 0x71, 0x23, 0xd7, 0xdb,
- 0x16, 0xfc, 0xc7, 0x53, 0x85, 0x77, 0x14, 0xab, 0x74, 0x9b, 0x57, 0xe0, 0xb7, 0xa8, 0xf8, 0x83,
- 0x25, 0x19, 0x4a, 0x31, 0xe8, 0x7a, 0x1e, 0xa5, 0x58, 0xea, 0x97, 0x22, 0xe6, 0x15, 0x38, 0x45,
- 0xf1, 0x07, 0x4b, 0x32, 0xe8, 0x0d, 0x00, 0xb9, 0xc3, 0x48, 0x53, 0xd8, 0x5e, 0x3c, 0xd3, 0x9b,
- 0xe8, 0x86, 0xaa, 0xb3, 0x38, 0x41, 0xef, 0xe8, 0xf8, 0x3f, 0xd6, 0xe8, 0xd9, 0x11, 0xe3, 0xd3,
- 0xd2, 0x9d, 0x41, 0xdf, 0x45, 0x97, 0xb8, 0x13, 0x44, 0xa4, 0xb9, 0x10, 0x89, 0xc1, 0x79, 0x7f,
- 0x7f, 0x8f, 0x94, 0x0d, 0xb7, 0x4d, 0xf4, 0xed, 0x20, 0x88, 0xe0, 0x98, 0x9e, 0xfd, 0x8b, 0x65,
- 0x98, 0xc9, 0xeb, 0x2e, 0x5d, 0x74, 0xe4, 0xae, 0x1b, 0x2d, 0x51, 0xf6, 0xca, 0x32, 0x17, 0xdd,
- 0xb2, 0x28, 0xc7, 0x0a, 0x83, 0xce, 0x7e, 0xe8, 0x6e, 0xcb, 0x37, 0xe6, 0x60, 0x3c, 0xfb, 0x75,
- 0x56, 0x8a, 0x05, 0x94, 0xe2, 0x05, 0xc4, 0x09, 0x85, 0x71, 0x8f, 0xb6, 0x4a, 0x30, 0x2b, 0xc5,
- 0x02, 0xaa, 0x4b, 0xbb, 0x06, 0x7a, 0x48, 0xbb, 0x8c, 0x21, 0x1a, 0x3c, 0xda, 0x21, 0x42, 0x9f,
- 0x02, 0xd8, 0x72, 0x3d, 0x37, 0xdc, 0x61, 0xd4, 0x87, 0x0e, 0x4d, 0x5d, 0x31, 0x67, 0x2b, 0x8a,
- 0x0a, 0xd6, 0x28, 0xa2, 0x17, 0x61, 0x54, 0x6d, 0xc0, 0xd5, 0x2a, 0xd3, 0x74, 0x6a, 0x96, 0x23,
- 0xf1, 0x69, 0x54, 0xc5, 0x3a, 0x9e, 0xfd, 0x99, 0xe4, 0x7a, 0x11, 0x3b, 0x40, 0x1b, 0x5f, 0xab,
- 0xdf, 0xf1, 0x2d, 0x15, 0x8f, 0xaf, 0xfd, 0x8d, 0x32, 0x4c, 0x1a, 0x8d, 0x75, 0xc3, 0x3e, 0xce,
- 0xac, 0x2b, 0xf4, 0x00, 0x77, 0x22, 0x22, 0xf6, 0x9f, 0xdd, 0x7b, 0xab, 0xe8, 0x87, 0x3c, 0xdd,
- 0x01, 0xbc, 0x3e, 0xfa, 0x14, 0x54, 0x5a, 0x4e, 0xc8, 0x24, 0x67, 0x44, 0xec, 0xbb, 0x7e, 0x88,
- 0xc5, 0x0f, 0x13, 0x27, 0x8c, 0xb4, 0x5b, 0x93, 0xd3, 0x8e, 0x49, 0xd2, 0x9b, 0x86, 0xf2, 0x27,
- 0xd2, 0x7a, 0x4c, 0x75, 0x82, 0x32, 0x31, 0xfb, 0x98, 0xc3, 0xd0, 0x4b, 0x30, 0x16, 0x10, 0xb6,
- 0x2a, 0x96, 0x28, 0x37, 0xc7, 0x96, 0xd9, 0x60, 0xcc, 0xf6, 0x61, 0x0d, 0x86, 0x0d, 0xcc, 0xf8,
- 0x6d, 0x30, 0x54, 0xf0, 0x36, 0x78, 0x0a, 0x86, 0xd9, 0x0f, 0xb5, 0x02, 0xd4, 0x6c, 0xac, 0xf2,
- 0x62, 0x2c, 0xe1, 0xc9, 0x05, 0x33, 0xd2, 0xdf, 0x82, 0xa1, 0xaf, 0x0f, 0xb1, 0xa8, 0x99, 0x96,
- 0x79, 0x84, 0x9f, 0x72, 0x62, 0xc9, 0x63, 0x09, 0xb3, 0xdf, 0x0f, 0x13, 0x55, 0x87, 0xb4, 0x7d,
- 0x6f, 0xd9, 0x6b, 0x76, 0x7c, 0xd7, 0x8b, 0xd0, 0x0c, 0x0c, 0xb0, 0x4b, 0x84, 0x1f, 0x01, 0x03,
- 0xb4, 0x21, 0xcc, 0x4a, 0xec, 0x6d, 0x38, 0x55, 0xf5, 0xef, 0x78, 0x77, 0x9c, 0xa0, 0xb9, 0x50,
- 0x5b, 0xd5, 0xde, 0xd7, 0xeb, 0xf2, 0x7d, 0xc7, 0x8d, 0xb6, 0x32, 0x8f, 0x5e, 0xad, 0x26, 0x67,
- 0x6b, 0x57, 0xdc, 0x16, 0xc9, 0x91, 0x82, 0xfc, 0xe5, 0x92, 0xd1, 0x52, 0x8c, 0xaf, 0xb4, 0x5a,
- 0x56, 0xae, 0x56, 0xeb, 0x75, 0x18, 0xd9, 0x72, 0x49, 0xab, 0x89, 0xc9, 0x96, 0x58, 0x89, 0x4f,
- 0xe6, 0xdb, 0xa1, 0xac, 0x50, 0x4c, 0x29, 0xf5, 0xe2, 0xaf, 0xc3, 0x15, 0x51, 0x19, 0x2b, 0x32,
- 0x68, 0x17, 0xa6, 0xe4, 0x83, 0x41, 0x42, 0xc5, 0xba, 0x7c, 0xaa, 0xe8, 0x15, 0x62, 0x12, 0x3f,
- 0x79, 0xef, 0x60, 0x6e, 0x0a, 0x27, 0xc8, 0xe0, 0x14, 0x61, 0xfa, 0x1c, 0x6c, 0xd3, 0x13, 0x78,
- 0x80, 0x0d, 0x3f, 0x7b, 0x0e, 0xb2, 0x97, 0x2d, 0x2b, 0xb5, 0x7f, 0xc2, 0x82, 0x47, 0x52, 0x23,
- 0x23, 0x5e, 0xf8, 0x47, 0x3c, 0x0b, 0xc9, 0x17, 0x77, 0xa9, 0xf7, 0x8b, 0xdb, 0xfe, 0x9b, 0x16,
- 0x9c, 0x5c, 0x6e, 0x77, 0xa2, 0xfd, 0xaa, 0x6b, 0xaa, 0xa0, 0x3e, 0x04, 0x43, 0x6d, 0xd2, 0x74,
- 0xbb, 0x6d, 0x31, 0x73, 0x73, 0xf2, 0x94, 0x5a, 0x63, 0xa5, 0xf7, 0x0f, 0xe6, 0xc6, 0xeb, 0x91,
- 0x1f, 0x38, 0xdb, 0x84, 0x17, 0x60, 0x81, 0xce, 0xce, 0x7a, 0xf7, 0x2d, 0x72, 0xdd, 0x6d, 0xbb,
- 0xd2, 0xae, 0xa8, 0x50, 0x66, 0x37, 0x2f, 0x07, 0x74, 0xfe, 0xf5, 0xae, 0xe3, 0x45, 0x6e, 0xb4,
- 0x2f, 0xb4, 0x47, 0x92, 0x08, 0x8e, 0xe9, 0xd9, 0x5f, 0xb7, 0x60, 0x52, 0xae, 0xfb, 0x85, 0x66,
- 0x33, 0x20, 0x61, 0x88, 0x66, 0xa1, 0xe4, 0x76, 0x44, 0x2f, 0x41, 0xf4, 0xb2, 0xb4, 0x5a, 0xc3,
- 0x25, 0xb7, 0x23, 0xd9, 0x32, 0x76, 0x10, 0x96, 0x4d, 0x45, 0xda, 0x55, 0x51, 0x8e, 0x15, 0x06,
- 0xba, 0x08, 0x23, 0x9e, 0xdf, 0xe4, 0xb6, 0x5d, 0xfc, 0x4a, 0x63, 0x0b, 0x6c, 0x5d, 0x94, 0x61,
- 0x05, 0x45, 0x35, 0xa8, 0x70, 0xb3, 0xa7, 0x78, 0xd1, 0xf6, 0x65, 0x3c, 0xc5, 0xbe, 0x6c, 0x43,
- 0xd6, 0xc4, 0x31, 0x11, 0xfb, 0x57, 0x2d, 0x18, 0x93, 0x5f, 0xd6, 0x27, 0xcf, 0x49, 0xb7, 0x56,
- 0xcc, 0x6f, 0xc6, 0x5b, 0x8b, 0xf2, 0x8c, 0x0c, 0x62, 0xb0, 0x8a, 0xe5, 0x43, 0xb1, 0x8a, 0x97,
- 0x61, 0xd4, 0xe9, 0x74, 0x6a, 0x26, 0x9f, 0xc9, 0x96, 0xd2, 0x42, 0x5c, 0x8c, 0x75, 0x1c, 0xfb,
- 0x4b, 0x25, 0x98, 0x90, 0x5f, 0x50, 0xef, 0x6e, 0x86, 0x24, 0x42, 0x1b, 0x50, 0x71, 0xf8, 0x2c,
- 0x11, 0xb9, 0xc8, 0x9f, 0xc8, 0x96, 0x23, 0x18, 0x53, 0x1a, 0x5f, 0xf8, 0x0b, 0xb2, 0x36, 0x8e,
- 0x09, 0xa1, 0x16, 0x4c, 0x7b, 0x7e, 0xc4, 0x0e, 0x7f, 0x05, 0x2f, 0x52, 0xed, 0x24, 0xa9, 0x9f,
- 0x11, 0xd4, 0xa7, 0xd7, 0x93, 0x54, 0x70, 0x9a, 0x30, 0x5a, 0x96, 0xb2, 0x99, 0x72, 0xbe, 0x30,
- 0x40, 0x9f, 0xb8, 0x6c, 0xd1, 0x8c, 0xfd, 0x2b, 0x16, 0x54, 0x24, 0xda, 0x71, 0x68, 0xf1, 0xd6,
- 0x60, 0x38, 0x64, 0x93, 0x20, 0x87, 0xc6, 0x2e, 0xea, 0x38, 0x9f, 0xaf, 0xf8, 0x4e, 0xe3, 0xff,
- 0x43, 0x2c, 0x69, 0x30, 0xd1, 0xbc, 0xea, 0xfe, 0x3b, 0x44, 0x34, 0xaf, 0xfa, 0x93, 0x73, 0x29,
- 0xfd, 0x11, 0xeb, 0xb3, 0x26, 0xeb, 0xa2, 0xac, 0x57, 0x27, 0x20, 0x5b, 0xee, 0xdd, 0x24, 0xeb,
- 0x55, 0x63, 0xa5, 0x58, 0x40, 0xd1, 0x1b, 0x30, 0xd6, 0x90, 0x32, 0xd9, 0x78, 0x87, 0x5f, 0x28,
- 0xd4, 0x0f, 0x28, 0x55, 0x12, 0x97, 0x85, 0x2c, 0x69, 0xf5, 0xb1, 0x41, 0xcd, 0x34, 0x23, 0x28,
- 0xf7, 0x32, 0x23, 0x88, 0xe9, 0xe6, 0x2b, 0xd5, 0x7f, 0xd2, 0x82, 0x21, 0x2e, 0x8b, 0xeb, 0x4f,
- 0x14, 0xaa, 0x69, 0xd6, 0xe2, 0xb1, 0xbb, 0x45, 0x0b, 0x85, 0xa6, 0x0c, 0xad, 0x41, 0x85, 0xfd,
- 0x60, 0xb2, 0xc4, 0x72, 0xbe, 0xd5, 0x3d, 0x6f, 0x55, 0xef, 0xe0, 0x2d, 0x59, 0x0d, 0xc7, 0x14,
- 0xec, 0x1f, 0x2f, 0xd3, 0xd3, 0x2d, 0x46, 0x35, 0x2e, 0x7d, 0xeb, 0xe1, 0x5d, 0xfa, 0xa5, 0x87,
- 0x75, 0xe9, 0x6f, 0xc3, 0x64, 0x43, 0xd3, 0xc3, 0xc5, 0x33, 0x79, 0xb1, 0x70, 0x91, 0x68, 0x2a,
- 0x3b, 0x2e, 0x65, 0x59, 0x32, 0x89, 0xe0, 0x24, 0x55, 0xf4, 0x5d, 0x30, 0xc6, 0xe7, 0x59, 0xb4,
- 0xc2, 0x2d, 0x31, 0xde, 0x97, 0xbf, 0x5e, 0xf4, 0x26, 0xb8, 0x54, 0x4e, 0xab, 0x8e, 0x0d, 0x62,
- 0xf6, 0x9f, 0x5a, 0x80, 0x96, 0x3b, 0x3b, 0xa4, 0x4d, 0x02, 0xa7, 0x15, 0x8b, 0xd3, 0x7f, 0xd8,
- 0x82, 0x19, 0x92, 0x2a, 0x5e, 0xf2, 0xdb, 0x6d, 0xf1, 0x68, 0xc9, 0x79, 0x57, 0x2f, 0xe7, 0xd4,
- 0x51, 0x6e, 0x09, 0x33, 0x79, 0x18, 0x38, 0xb7, 0x3d, 0xb4, 0x06, 0x27, 0xf8, 0x2d, 0xa9, 0x00,
- 0x9a, 0xed, 0xf5, 0xa3, 0x82, 0xf0, 0x89, 0x8d, 0x34, 0x0a, 0xce, 0xaa, 0x67, 0x7f, 0xdf, 0x18,
- 0xe4, 0xf6, 0xe2, 0x5d, 0x3d, 0xc2, 0xbb, 0x7a, 0x84, 0x77, 0xf5, 0x08, 0xef, 0xea, 0x11, 0xde,
- 0xd5, 0x23, 0x7c, 0xdb, 0xeb, 0x11, 0xfe, 0x7f, 0x0b, 0x4e, 0xa9, 0x6b, 0xc0, 0x78, 0xf8, 0x7e,
- 0x16, 0x4e, 0xf0, 0xed, 0xb6, 0xd4, 0x72, 0xdc, 0xf6, 0x06, 0x69, 0x77, 0x5a, 0x4e, 0x24, 0xb5,
- 0xee, 0x97, 0x33, 0x57, 0x6e, 0xc2, 0x62, 0xd5, 0xa8, 0xb8, 0xf8, 0x08, 0xbd, 0x9e, 0x32, 0x00,
- 0x38, 0xab, 0x19, 0xfb, 0x17, 0x47, 0x60, 0x70, 0x79, 0x8f, 0x78, 0xd1, 0x31, 0x3c, 0x11, 0x1a,
- 0x30, 0xe1, 0x7a, 0x7b, 0x7e, 0x6b, 0x8f, 0x34, 0x39, 0xfc, 0x30, 0x2f, 0xd9, 0xd3, 0x82, 0xf4,
- 0xc4, 0xaa, 0x41, 0x02, 0x27, 0x48, 0x3e, 0x0c, 0x69, 0xf2, 0x15, 0x18, 0xe2, 0x87, 0xb8, 0x10,
- 0x25, 0x67, 0x9e, 0xd9, 0x6c, 0x10, 0xc5, 0xd5, 0x14, 0x4b, 0xba, 0xf9, 0x25, 0x21, 0xaa, 0xa3,
- 0xcf, 0xc0, 0xc4, 0x96, 0x1b, 0x84, 0xd1, 0x86, 0xdb, 0x26, 0x61, 0xe4, 0xb4, 0x3b, 0x0f, 0x20,
- 0x3d, 0x56, 0xe3, 0xb0, 0x62, 0x50, 0xc2, 0x09, 0xca, 0x68, 0x1b, 0xc6, 0x5b, 0x8e, 0xde, 0xd4,
- 0xf0, 0xa1, 0x9b, 0x52, 0xb7, 0xc3, 0x75, 0x9d, 0x10, 0x36, 0xe9, 0xd2, 0xed, 0xd4, 0x60, 0x02,
- 0xd0, 0x11, 0x26, 0x16, 0x50, 0xdb, 0x89, 0x4b, 0x3e, 0x39, 0x8c, 0x32, 0x3a, 0xcc, 0x40, 0xb6,
- 0x62, 0x32, 0x3a, 0x9a, 0x19, 0xec, 0xa7, 0xa1, 0x42, 0xe8, 0x10, 0x52, 0xc2, 0xe2, 0x82, 0xb9,
- 0xd4, 0x5f, 0x5f, 0xd7, 0xdc, 0x46, 0xe0, 0x9b, 0x72, 0xfb, 0x65, 0x49, 0x09, 0xc7, 0x44, 0xd1,
- 0x12, 0x0c, 0x85, 0x24, 0x70, 0x49, 0x28, 0xae, 0x9a, 0x82, 0x69, 0x64, 0x68, 0xdc, 0xb7, 0x84,
- 0xff, 0xc6, 0xa2, 0x2a, 0x5d, 0x5e, 0x0e, 0x13, 0x69, 0xb2, 0xcb, 0x40, 0x5b, 0x5e, 0x0b, 0xac,
- 0x14, 0x0b, 0x28, 0x7a, 0x0d, 0x86, 0x03, 0xd2, 0x62, 0x8a, 0xa1, 0xf1, 0xfe, 0x17, 0x39, 0xd7,
- 0x33, 0xf1, 0x7a, 0x58, 0x12, 0x40, 0xd7, 0x00, 0x05, 0x84, 0x32, 0x4a, 0xae, 0xb7, 0xad, 0xcc,
- 0x46, 0xc5, 0x41, 0xab, 0x18, 0x52, 0x1c, 0x63, 0x48, 0x37, 0x1f, 0x9c, 0x51, 0x0d, 0x5d, 0x81,
- 0x69, 0x55, 0xba, 0xea, 0x85, 0x91, 0x43, 0x0f, 0xb8, 0x49, 0x46, 0x4b, 0xc9, 0x29, 0x70, 0x12,
- 0x01, 0xa7, 0xeb, 0xd8, 0x5f, 0xb6, 0x80, 0x8f, 0xf3, 0x31, 0xbc, 0xce, 0x5f, 0x35, 0x5f, 0xe7,
- 0x67, 0x72, 0x67, 0x2e, 0xe7, 0x65, 0xfe, 0x65, 0x0b, 0x46, 0xb5, 0x99, 0x8d, 0xd7, 0xac, 0x55,
- 0xb0, 0x66, 0xbb, 0x30, 0x45, 0x57, 0xfa, 0x8d, 0xcd, 0x90, 0x04, 0x7b, 0xa4, 0xc9, 0x16, 0x66,
- 0xe9, 0xc1, 0x16, 0xa6, 0x32, 0x51, 0xbb, 0x9e, 0x20, 0x88, 0x53, 0x4d, 0xd8, 0x9f, 0x96, 0x5d,
- 0x55, 0x16, 0x7d, 0x0d, 0x35, 0xe7, 0x09, 0x8b, 0x3e, 0x35, 0xab, 0x38, 0xc6, 0xa1, 0x5b, 0x6d,
- 0xc7, 0x0f, 0xa3, 0xa4, 0x45, 0xdf, 0x55, 0x3f, 0x8c, 0x30, 0x83, 0xd8, 0xcf, 0x03, 0x2c, 0xdf,
- 0x25, 0x0d, 0xbe, 0x62, 0xf5, 0xc7, 0x83, 0x95, 0xff, 0x78, 0xb0, 0x7f, 0xdb, 0x82, 0x89, 0x95,
- 0x25, 0xe3, 0xe6, 0x9a, 0x07, 0xe0, 0x2f, 0x9e, 0xdb, 0xb7, 0xd7, 0xa5, 0x3a, 0x9c, 0x6b, 0x34,
- 0x55, 0x29, 0xd6, 0x30, 0xd0, 0x19, 0x28, 0xb7, 0xba, 0x9e, 0x10, 0x1f, 0x0e, 0xd3, 0xeb, 0xf1,
- 0x7a, 0xd7, 0xc3, 0xb4, 0x4c, 0x73, 0x29, 0x28, 0xf7, 0xed, 0x52, 0xd0, 0xd3, 0xb5, 0x1f, 0xcd,
- 0xc1, 0xe0, 0x9d, 0x3b, 0x6e, 0x93, 0x3b, 0x50, 0x0a, 0x55, 0xfd, 0xed, 0xdb, 0xab, 0xd5, 0x10,
- 0xf3, 0x72, 0xfb, 0x0b, 0x65, 0x98, 0x5d, 0x69, 0x91, 0xbb, 0x6f, 0xd3, 0x89, 0xb4, 0x5f, 0x87,
- 0x88, 0xc3, 0x09, 0x62, 0x0e, 0xeb, 0xf4, 0xd2, 0x7b, 0x3c, 0xb6, 0x60, 0x98, 0x1b, 0xb4, 0x49,
- 0x97, 0xd2, 0x57, 0xb2, 0x5a, 0xcf, 0x1f, 0x90, 0x79, 0x6e, 0x18, 0x27, 0x3c, 0xe2, 0xd4, 0x85,
- 0x29, 0x4a, 0xb1, 0x24, 0x3e, 0xfb, 0x32, 0x8c, 0xe9, 0x98, 0x87, 0x72, 0x3f, 0xfb, 0x7f, 0xca,
- 0x30, 0x45, 0x7b, 0xf0, 0x50, 0x27, 0xe2, 0x66, 0x7a, 0x22, 0x8e, 0xda, 0x05, 0xa9, 0xf7, 0x6c,
- 0xbc, 0x91, 0x9c, 0x8d, 0xcb, 0x79, 0xb3, 0x71, 0xdc, 0x73, 0xf0, 0xbd, 0x16, 0x9c, 0x58, 0x69,
- 0xf9, 0x8d, 0xdd, 0x84, 0x9b, 0xd0, 0x8b, 0x30, 0x4a, 0x8f, 0xe3, 0xd0, 0xf0, 0x60, 0x37, 0x62,
- 0x1a, 0x08, 0x10, 0xd6, 0xf1, 0xb4, 0x6a, 0x37, 0x6f, 0xae, 0x56, 0xb3, 0x42, 0x21, 0x08, 0x10,
- 0xd6, 0xf1, 0xec, 0xdf, 0xb0, 0xe0, 0xec, 0x95, 0xa5, 0xe5, 0x78, 0x29, 0xa6, 0xa2, 0x31, 0x5c,
- 0x80, 0xa1, 0x4e, 0x53, 0xeb, 0x4a, 0x2c, 0x5e, 0xad, 0xb2, 0x5e, 0x08, 0xe8, 0x3b, 0x25, 0xd2,
- 0xc8, 0xcf, 0x5a, 0x70, 0xe2, 0x8a, 0x1b, 0xd1, 0xdb, 0x35, 0x19, 0x17, 0x80, 0x5e, 0xaf, 0xa1,
- 0x1b, 0xf9, 0xc1, 0x7e, 0x32, 0x2e, 0x00, 0x56, 0x10, 0xac, 0x61, 0xf1, 0x96, 0xf7, 0x5c, 0x66,
- 0x4a, 0x5d, 0x32, 0x15, 0x4d, 0x58, 0x94, 0x63, 0x85, 0x41, 0x3f, 0xac, 0xe9, 0x06, 0x4c, 0x46,
- 0xb7, 0x2f, 0x4e, 0x58, 0xf5, 0x61, 0x55, 0x09, 0xc0, 0x31, 0x8e, 0xfd, 0xc7, 0x16, 0xcc, 0x5d,
- 0x69, 0x75, 0xc3, 0x88, 0x04, 0x5b, 0x61, 0xce, 0xe9, 0xf8, 0x3c, 0x54, 0x88, 0x94, 0x88, 0x8b,
- 0x5e, 0x2b, 0x8e, 0x51, 0x89, 0xca, 0x79, 0x78, 0x02, 0x85, 0xd7, 0x87, 0xd3, 0xe1, 0xe1, 0xbc,
- 0xc6, 0x56, 0x00, 0x11, 0xbd, 0x2d, 0x3d, 0x5e, 0x03, 0x73, 0xfc, 0x5e, 0x4e, 0x41, 0x71, 0x46,
- 0x0d, 0xfb, 0x27, 0x2c, 0x38, 0xa5, 0x3e, 0xf8, 0x1d, 0xf7, 0x99, 0xf6, 0x57, 0x4b, 0x30, 0x7e,
- 0x75, 0x63, 0xa3, 0x76, 0x85, 0x44, 0xe2, 0xda, 0xee, 0xad, 0xe7, 0xc6, 0x9a, 0xba, 0xae, 0xe8,
- 0x31, 0xd7, 0x8d, 0xdc, 0xd6, 0x3c, 0x0f, 0xfb, 0x33, 0xbf, 0xea, 0x45, 0x37, 0x82, 0x7a, 0x14,
- 0xb8, 0xde, 0x76, 0xa6, 0x82, 0x4f, 0x32, 0x17, 0xe5, 0x3c, 0xe6, 0x02, 0x3d, 0x0f, 0x43, 0x2c,
- 0xee, 0x90, 0x9c, 0x84, 0x47, 0xd5, 0x5b, 0x88, 0x95, 0xde, 0x3f, 0x98, 0xab, 0xdc, 0xc4, 0xab,
- 0xfc, 0x0f, 0x16, 0xa8, 0xe8, 0x26, 0x8c, 0xee, 0x44, 0x51, 0xe7, 0x2a, 0x71, 0x9a, 0x24, 0x90,
- 0xc7, 0xe1, 0xb9, 0xac, 0xe3, 0x90, 0x0e, 0x02, 0x47, 0x8b, 0x4f, 0x90, 0xb8, 0x2c, 0xc4, 0x3a,
- 0x1d, 0xbb, 0x0e, 0x10, 0xc3, 0x8e, 0x48, 0x53, 0x61, 0x6f, 0x40, 0x85, 0x7e, 0xee, 0x42, 0xcb,
- 0x75, 0x8a, 0x75, 0xc1, 0x4f, 0x43, 0x45, 0x6a, 0x7a, 0x43, 0xe1, 0x14, 0xcd, 0xae, 0x0e, 0xa9,
- 0x08, 0x0e, 0x71, 0x0c, 0xb7, 0xb7, 0xe0, 0x24, 0xb3, 0xdb, 0x73, 0xa2, 0x1d, 0x63, 0xf5, 0xf5,
- 0x9e, 0xe6, 0x67, 0xc4, 0xd3, 0x8a, 0xf7, 0x79, 0x46, 0xf3, 0x3b, 0x1c, 0x93, 0x14, 0xe3, 0x67,
- 0x96, 0xfd, 0x8d, 0x01, 0x78, 0x74, 0xb5, 0x9e, 0x1f, 0x37, 0xe3, 0x25, 0x18, 0xe3, 0x1c, 0x1b,
- 0x9d, 0x74, 0xa7, 0x25, 0xda, 0x55, 0x42, 0xc8, 0x0d, 0x0d, 0x86, 0x0d, 0x4c, 0x74, 0x16, 0xca,
- 0xee, 0x9b, 0x5e, 0xd2, 0x2b, 0x67, 0xf5, 0xf5, 0x75, 0x4c, 0xcb, 0x29, 0x98, 0x32, 0x7f, 0xfc,
- 0x54, 0x55, 0x60, 0xc5, 0x00, 0xbe, 0x0a, 0x13, 0x6e, 0xd8, 0x08, 0xdd, 0x55, 0x8f, 0xee, 0x40,
- 0x6d, 0x0f, 0xab, 0x67, 0x3f, 0xed, 0xb4, 0x82, 0xe2, 0x04, 0xb6, 0x76, 0xc4, 0x0f, 0xf6, 0xcd,
- 0x40, 0xf6, 0xf4, 0x12, 0xa6, 0xbc, 0x71, 0x87, 0x7d, 0x5d, 0xc8, 0xa4, 0xc9, 0x82, 0x37, 0xe6,
- 0x1f, 0x1c, 0x62, 0x09, 0xa3, 0x6f, 0xaa, 0xc6, 0x8e, 0xd3, 0x59, 0xe8, 0x46, 0x3b, 0x55, 0x37,
- 0x6c, 0xf8, 0x7b, 0x24, 0xd8, 0x67, 0xcf, 0xe1, 0x91, 0xf8, 0x4d, 0xa5, 0x00, 0x4b, 0x57, 0x17,
- 0x6a, 0x14, 0x13, 0xa7, 0xeb, 0xa0, 0x05, 0x98, 0x94, 0x85, 0x75, 0x12, 0xb2, 0xc3, 0x7d, 0x94,
- 0x91, 0x51, 0x7e, 0x32, 0xa2, 0x58, 0x11, 0x49, 0xe2, 0x9b, 0x3c, 0x26, 0x1c, 0x05, 0x8f, 0xf9,
- 0x21, 0x18, 0x77, 0x3d, 0x37, 0x72, 0x9d, 0xc8, 0xe7, 0xaa, 0x10, 0xfe, 0xf2, 0x65, 0x32, 0xde,
- 0x55, 0x1d, 0x80, 0x4d, 0x3c, 0xfb, 0x3f, 0x0e, 0xc0, 0x34, 0x9b, 0xb6, 0x77, 0x57, 0xd8, 0xb7,
- 0xd3, 0x0a, 0xbb, 0x99, 0x5e, 0x61, 0x47, 0xc1, 0x3c, 0x3f, 0xf0, 0x32, 0xfb, 0x0c, 0x54, 0x94,
- 0x6b, 0x90, 0xf4, 0x0d, 0xb4, 0x72, 0x7c, 0x03, 0x7b, 0xdf, 0xcb, 0xd2, 0xba, 0xaa, 0x9c, 0x69,
- 0x5d, 0xf5, 0x15, 0x0b, 0x62, 0xd9, 0x3e, 0x7a, 0x1d, 0x2a, 0x1d, 0x9f, 0x19, 0x0d, 0x06, 0xd2,
- 0x12, 0xf7, 0xbd, 0x85, 0xca, 0x01, 0x1e, 0x3a, 0x28, 0xe0, 0xa3, 0x50, 0x93, 0x55, 0x71, 0x4c,
- 0x05, 0x5d, 0x83, 0xe1, 0x4e, 0x40, 0xea, 0x11, 0x8b, 0xa3, 0xd1, 0x3f, 0x41, 0xbe, 0x6a, 0x78,
- 0x45, 0x2c, 0x29, 0xd8, 0xff, 0xd9, 0x82, 0xa9, 0x24, 0x2a, 0xfa, 0x30, 0x0c, 0x90, 0xbb, 0xa4,
- 0x21, 0xfa, 0x9b, 0x79, 0xc9, 0xc6, 0xd2, 0x01, 0x3e, 0x00, 0xf4, 0x3f, 0x66, 0xb5, 0xd0, 0x55,
- 0x18, 0xa6, 0x37, 0xec, 0x15, 0x15, 0xc3, 0xe9, 0xf1, 0xbc, 0x5b, 0x5a, 0xb1, 0x2a, 0xbc, 0x73,
- 0xa2, 0x08, 0xcb, 0xea, 0xcc, 0xa4, 0xa9, 0xd1, 0xa9, 0xd3, 0x57, 0x46, 0x54, 0xf4, 0x18, 0xde,
- 0x58, 0xaa, 0x71, 0x24, 0x41, 0x8d, 0x9b, 0x34, 0xc9, 0x42, 0x1c, 0x13, 0xb1, 0x7f, 0xde, 0x02,
- 0xe0, 0x16, 0x5c, 0x8e, 0xb7, 0x4d, 0x8e, 0x41, 0xa0, 0x5d, 0x85, 0x81, 0xb0, 0x43, 0x1a, 0x45,
- 0xf6, 0xac, 0x71, 0x7f, 0xea, 0x1d, 0xd2, 0x88, 0x57, 0x1c, 0xfd, 0x87, 0x59, 0x6d, 0xfb, 0xfb,
- 0x01, 0x26, 0x62, 0xb4, 0xd5, 0x88, 0xb4, 0xd1, 0xb3, 0x46, 0x3c, 0x81, 0x33, 0x89, 0x78, 0x02,
- 0x15, 0x86, 0xad, 0xc9, 0x4e, 0x3f, 0x03, 0xe5, 0xb6, 0x73, 0x57, 0x08, 0xc7, 0x9e, 0x2e, 0xee,
- 0x06, 0xa5, 0x3f, 0xbf, 0xe6, 0xdc, 0xe5, 0xef, 0xc7, 0xa7, 0xe5, 0x0e, 0x59, 0x73, 0xee, 0xde,
- 0xe7, 0x56, 0xab, 0xec, 0x94, 0xbe, 0xee, 0x86, 0xd1, 0xe7, 0xfe, 0x43, 0xfc, 0x9f, 0xed, 0x3b,
- 0xda, 0x08, 0x6b, 0xcb, 0xf5, 0x84, 0x71, 0x52, 0x5f, 0x6d, 0xb9, 0x5e, 0xb2, 0x2d, 0xd7, 0xeb,
- 0xa3, 0x2d, 0xd7, 0x43, 0x6f, 0xc1, 0xb0, 0xb0, 0x1d, 0x14, 0xf1, 0x7b, 0x2e, 0xf5, 0xd1, 0x9e,
- 0x30, 0x3d, 0xe4, 0x6d, 0x5e, 0x92, 0xef, 0x63, 0x51, 0xda, 0xb3, 0x5d, 0xd9, 0x20, 0xfa, 0x4b,
- 0x16, 0x4c, 0x88, 0xdf, 0x98, 0xbc, 0xd9, 0x25, 0x61, 0x24, 0xd8, 0xd2, 0x0f, 0xf6, 0xdf, 0x07,
- 0x51, 0x91, 0x77, 0xe5, 0x83, 0xf2, 0x9e, 0x31, 0x81, 0x3d, 0x7b, 0x94, 0xe8, 0x05, 0xfa, 0xdb,
- 0x16, 0x9c, 0x6c, 0x3b, 0x77, 0x79, 0x8b, 0xbc, 0x0c, 0x3b, 0x91, 0xeb, 0x0b, 0x1d, 0xfc, 0x87,
- 0xfb, 0x9b, 0xfe, 0x54, 0x75, 0xde, 0x49, 0xa9, 0x28, 0x3c, 0x99, 0x85, 0xd2, 0xb3, 0xab, 0x99,
- 0xfd, 0x9a, 0xdd, 0x82, 0x11, 0xb9, 0xde, 0x32, 0xa4, 0x10, 0x55, 0x9d, 0xe7, 0x3e, 0xb4, 0xe9,
- 0xa6, 0xee, 0xa7, 0x4f, 0xdb, 0x11, 0x6b, 0xed, 0xa1, 0xb6, 0xf3, 0x19, 0x18, 0xd3, 0xd7, 0xd8,
- 0x43, 0x6d, 0xeb, 0x4d, 0x38, 0x91, 0xb1, 0x96, 0x1e, 0x6a, 0x93, 0x77, 0xe0, 0x4c, 0xee, 0xfa,
- 0x78, 0x98, 0x0d, 0xdb, 0x5f, 0xb5, 0xf4, 0x73, 0xf0, 0x18, 0xb4, 0x0a, 0x4b, 0xa6, 0x56, 0xe1,
- 0x5c, 0xf1, 0xce, 0xc9, 0x51, 0x2d, 0xbc, 0xa1, 0x77, 0x9a, 0x9e, 0xea, 0xe8, 0x35, 0x18, 0x6a,
- 0xd1, 0x12, 0x69, 0x81, 0x6a, 0xf7, 0xde, 0x91, 0x31, 0x33, 0xc9, 0xca, 0x43, 0x2c, 0x28, 0xd8,
- 0xbf, 0x64, 0xc1, 0xc0, 0x31, 0x8c, 0x04, 0x36, 0x47, 0xe2, 0xd9, 0x5c, 0xd2, 0x22, 0xb4, 0xf0,
- 0x3c, 0x76, 0xee, 0x2c, 0xdf, 0x8d, 0x88, 0x17, 0xb2, 0x1b, 0x39, 0x73, 0x60, 0x7e, 0xda, 0x82,
- 0x13, 0xd7, 0x7d, 0xa7, 0xb9, 0xe8, 0xb4, 0x1c, 0xaf, 0x41, 0x82, 0x55, 0x6f, 0xfb, 0x50, 0xe6,
- 0xd3, 0xa5, 0x9e, 0xe6, 0xd3, 0x4b, 0xd2, 0xfa, 0x68, 0x20, 0x7f, 0xfe, 0x28, 0x27, 0x9d, 0x8c,
- 0xb0, 0x62, 0xd8, 0xc9, 0xee, 0x00, 0xd2, 0x7b, 0x29, 0x9c, 0x59, 0x30, 0x0c, 0xbb, 0xbc, 0xbf,
- 0x62, 0x12, 0x9f, 0xcc, 0xe6, 0x70, 0x53, 0x9f, 0xa7, 0xb9, 0x69, 0xf0, 0x02, 0x2c, 0x09, 0xd9,
- 0x2f, 0x41, 0xa6, 0x47, 0x7c, 0x6f, 0xb9, 0x84, 0xfd, 0x71, 0x98, 0x66, 0x35, 0x0f, 0x29, 0x19,
- 0xb0, 0x13, 0x62, 0xcf, 0x8c, 0x58, 0x79, 0xf6, 0xe7, 0x2d, 0x98, 0x5c, 0x4f, 0x84, 0x10, 0xbb,
- 0xc0, 0x14, 0xa5, 0x19, 0xd2, 0xf6, 0x3a, 0x2b, 0xc5, 0x02, 0x7a, 0xe4, 0x42, 0xae, 0xbf, 0xb0,
- 0x20, 0x0e, 0x52, 0x71, 0x0c, 0xec, 0xdb, 0x92, 0xc1, 0xbe, 0x65, 0x32, 0xb2, 0xaa, 0x3b, 0x79,
- 0xdc, 0x1b, 0xba, 0xa6, 0xc2, 0x37, 0x15, 0xf0, 0xb0, 0x31, 0x19, 0xbe, 0x14, 0x27, 0xcc, 0x18,
- 0x4f, 0x32, 0xa0, 0x93, 0xfd, 0x3b, 0x25, 0x40, 0x0a, 0xb7, 0xef, 0xf0, 0x52, 0xe9, 0x1a, 0x47,
- 0x13, 0x5e, 0x6a, 0x0f, 0x10, 0x53, 0xf5, 0x07, 0x8e, 0x17, 0x72, 0xb2, 0xae, 0x10, 0xeb, 0x1d,
- 0xce, 0x8e, 0x60, 0x56, 0x34, 0x89, 0xae, 0xa7, 0xa8, 0xe1, 0x8c, 0x16, 0x34, 0x13, 0x8e, 0xc1,
- 0x7e, 0x4d, 0x38, 0x86, 0x7a, 0x38, 0xac, 0xfd, 0x9c, 0x05, 0xe3, 0x6a, 0x98, 0xde, 0x21, 0xe6,
- 0xe4, 0xaa, 0x3f, 0x39, 0x07, 0x68, 0x4d, 0xeb, 0x32, 0xbb, 0x58, 0xbe, 0x93, 0x39, 0x1e, 0x3a,
- 0x2d, 0xf7, 0x2d, 0xa2, 0x82, 0xfb, 0xcd, 0x09, 0x47, 0x42, 0x51, 0x7a, 0xff, 0x60, 0x6e, 0x5c,
- 0xfd, 0xe3, 0xc1, 0x84, 0xe3, 0x2a, 0xf4, 0x48, 0x9e, 0x4c, 0x2c, 0x45, 0xf4, 0x22, 0x0c, 0x76,
- 0x76, 0x9c, 0x90, 0x24, 0xdc, 0x6e, 0x06, 0x6b, 0xb4, 0xf0, 0xfe, 0xc1, 0xdc, 0x84, 0xaa, 0xc0,
- 0x4a, 0x30, 0xc7, 0xee, 0x3f, 0x68, 0x57, 0x7a, 0x71, 0xf6, 0x0c, 0xda, 0xf5, 0xa7, 0x16, 0x0c,
- 0xac, 0xfb, 0xcd, 0xe3, 0x38, 0x02, 0x5e, 0x35, 0x8e, 0x80, 0xc7, 0xf2, 0xe2, 0xbc, 0xe7, 0xee,
- 0xfe, 0x95, 0xc4, 0xee, 0x3f, 0x97, 0x4b, 0xa1, 0x78, 0xe3, 0xb7, 0x61, 0x94, 0x45, 0x8f, 0x17,
- 0x2e, 0x46, 0xcf, 0x1b, 0x1b, 0x7e, 0x2e, 0xb1, 0xe1, 0x27, 0x35, 0x54, 0x6d, 0xa7, 0x3f, 0x05,
- 0xc3, 0xc2, 0x67, 0x25, 0xe9, 0xbf, 0x29, 0x70, 0xb1, 0x84, 0xdb, 0x3f, 0x59, 0x06, 0x23, 0x5a,
- 0x3d, 0xfa, 0x15, 0x0b, 0xe6, 0x03, 0x6e, 0xcb, 0xda, 0xac, 0x76, 0x03, 0xd7, 0xdb, 0xae, 0x37,
- 0x76, 0x48, 0xb3, 0xdb, 0x72, 0xbd, 0xed, 0xd5, 0x6d, 0xcf, 0x57, 0xc5, 0xcb, 0x77, 0x49, 0xa3,
- 0xcb, 0xf4, 0x63, 0x3d, 0x42, 0xe3, 0x2b, 0x9b, 0xf0, 0xe7, 0xee, 0x1d, 0xcc, 0xcd, 0xe3, 0x43,
- 0xd1, 0xc6, 0x87, 0xec, 0x0b, 0xfa, 0x0d, 0x0b, 0x2e, 0xf1, 0x20, 0xee, 0xfd, 0xf7, 0xbf, 0xe0,
- 0xb5, 0x5c, 0x93, 0xa4, 0x62, 0x22, 0x1b, 0x24, 0x68, 0x2f, 0x7e, 0x48, 0x0c, 0xe8, 0xa5, 0xda,
- 0xe1, 0xda, 0xc2, 0x87, 0xed, 0x9c, 0xfd, 0x8f, 0xcb, 0x30, 0x2e, 0x82, 0x3b, 0x89, 0x3b, 0xe0,
- 0x45, 0x63, 0x49, 0x3c, 0x9e, 0x58, 0x12, 0xd3, 0x06, 0xf2, 0xd1, 0x1c, 0xff, 0x21, 0x4c, 0xd3,
- 0xc3, 0xf9, 0x2a, 0x71, 0x82, 0x68, 0x93, 0x38, 0xdc, 0x32, 0xab, 0x7c, 0xe8, 0xd3, 0x5f, 0xc9,
- 0x27, 0xaf, 0x27, 0x89, 0xe1, 0x34, 0xfd, 0x6f, 0xa7, 0x3b, 0xc7, 0x83, 0xa9, 0x54, 0x7c, 0xae,
- 0x4f, 0x40, 0x45, 0x39, 0x5c, 0x88, 0x43, 0xa7, 0x38, 0xcc, 0x5d, 0x92, 0x02, 0x17, 0x7f, 0xc5,
- 0xce, 0x3e, 0x31, 0x39, 0xfb, 0xef, 0x96, 0x8c, 0x06, 0xf9, 0x24, 0xae, 0xc3, 0x88, 0x13, 0x86,
- 0xee, 0xb6, 0x47, 0x9a, 0x45, 0x12, 0xca, 0x54, 0x33, 0xcc, 0xe9, 0x65, 0x41, 0xd4, 0xc4, 0x8a,
- 0x06, 0xba, 0xca, 0xed, 0xdf, 0xf6, 0x48, 0x91, 0x78, 0x32, 0x45, 0x0d, 0xa4, 0x85, 0xdc, 0x1e,
- 0xc1, 0xa2, 0x3e, 0xfa, 0x24, 0x37, 0x50, 0xbc, 0xe6, 0xf9, 0x77, 0xbc, 0x2b, 0xbe, 0x2f, 0x03,
- 0x28, 0xf4, 0x47, 0x70, 0x5a, 0x9a, 0x25, 0xaa, 0xea, 0xd8, 0xa4, 0xd6, 0x5f, 0xc0, 0xcb, 0xcf,
- 0xc2, 0x09, 0x4a, 0xda, 0xf4, 0x6f, 0x0e, 0x11, 0x81, 0x49, 0x11, 0x39, 0x4c, 0x96, 0x89, 0xb1,
- 0xcb, 0x7c, 0xca, 0x99, 0xb5, 0x63, 0x41, 0xfa, 0x35, 0x93, 0x04, 0x4e, 0xd2, 0xb4, 0x7f, 0xc6,
- 0x02, 0xe6, 0xeb, 0x79, 0x0c, 0xfc, 0xc8, 0x47, 0x4c, 0x7e, 0x64, 0x26, 0x6f, 0x90, 0x73, 0x58,
- 0x91, 0x17, 0xf8, 0xca, 0xaa, 0x05, 0xfe, 0xdd, 0x7d, 0x61, 0x55, 0xd2, 0xfb, 0xfd, 0x61, 0xff,
- 0x2f, 0x8b, 0x1f, 0x62, 0xca, 0x1d, 0x02, 0x7d, 0x37, 0x8c, 0x34, 0x9c, 0x8e, 0xd3, 0xe0, 0xa9,
- 0x55, 0x72, 0x25, 0x7a, 0x46, 0xa5, 0xf9, 0x25, 0x51, 0x83, 0x4b, 0xa8, 0x64, 0x04, 0xba, 0x11,
- 0x59, 0xdc, 0x53, 0x2a, 0xa5, 0x9a, 0x9c, 0xdd, 0x85, 0x71, 0x83, 0xd8, 0x43, 0x15, 0x67, 0x7c,
- 0x37, 0xbf, 0x62, 0x55, 0xc4, 0xc4, 0x36, 0x4c, 0x7b, 0xda, 0x7f, 0x7a, 0xa1, 0xc8, 0xc7, 0xe5,
- 0x7b, 0x7b, 0x5d, 0xa2, 0xec, 0xf6, 0xd1, 0xdc, 0x48, 0x13, 0x64, 0x70, 0x9a, 0xb2, 0xfd, 0x53,
- 0x16, 0x3c, 0xa2, 0x23, 0x6a, 0x9e, 0x2a, 0xbd, 0x94, 0x24, 0x55, 0x18, 0xf1, 0x3b, 0x24, 0x70,
- 0x22, 0x3f, 0x10, 0xb7, 0xc6, 0x45, 0x39, 0xe8, 0x37, 0x44, 0xf9, 0x7d, 0x11, 0x98, 0x5c, 0x52,
- 0x97, 0xe5, 0x58, 0xd5, 0xa4, 0xaf, 0x4f, 0x36, 0x18, 0xa1, 0xf0, 0x49, 0x62, 0x67, 0x00, 0xd3,
- 0xa4, 0x87, 0x58, 0x40, 0xec, 0x6f, 0x58, 0x7c, 0x61, 0xe9, 0x5d, 0x47, 0x6f, 0xc2, 0x54, 0xdb,
- 0x89, 0x1a, 0x3b, 0xcb, 0x77, 0x3b, 0x01, 0x57, 0x39, 0xc9, 0x71, 0x7a, 0xba, 0xd7, 0x38, 0x69,
- 0x1f, 0x19, 0xdb, 0x5c, 0xae, 0x25, 0x88, 0xe1, 0x14, 0x79, 0xb4, 0x09, 0xa3, 0xac, 0x8c, 0xb9,
- 0xdb, 0x85, 0x45, 0xac, 0x41, 0x5e, 0x6b, 0xca, 0x18, 0x61, 0x2d, 0xa6, 0x83, 0x75, 0xa2, 0xf6,
- 0x57, 0xca, 0x7c, 0xb7, 0x33, 0x56, 0xfe, 0x29, 0x18, 0xee, 0xf8, 0xcd, 0xa5, 0xd5, 0x2a, 0x16,
- 0xb3, 0xa0, 0xae, 0x91, 0x1a, 0x2f, 0xc6, 0x12, 0x8e, 0x2e, 0xc2, 0x88, 0xf8, 0x29, 0x55, 0x84,
- 0xec, 0x6c, 0x16, 0x78, 0x21, 0x56, 0x50, 0xf4, 0x1c, 0x40, 0x27, 0xf0, 0xf7, 0xdc, 0x26, 0x0b,
- 0x03, 0x51, 0x36, 0xed, 0x88, 0x6a, 0x0a, 0x82, 0x35, 0x2c, 0xf4, 0x0a, 0x8c, 0x77, 0xbd, 0x90,
- 0xb3, 0x23, 0x5a, 0xd0, 0x57, 0x65, 0xe1, 0x72, 0x53, 0x07, 0x62, 0x13, 0x17, 0x2d, 0xc0, 0x50,
- 0xe4, 0x30, 0xbb, 0x98, 0xc1, 0x7c, 0xbb, 0xdc, 0x0d, 0x8a, 0xa1, 0x67, 0xf1, 0xa0, 0x15, 0xb0,
- 0xa8, 0x88, 0x3e, 0x21, 0x3d, 0x5f, 0xf9, 0xc1, 0x2e, 0x0c, 0xe2, 0xfb, 0xbb, 0x04, 0x34, 0xbf,
- 0x57, 0x61, 0x68, 0x6f, 0xd0, 0x42, 0x2f, 0x03, 0x90, 0xbb, 0x11, 0x09, 0x3c, 0xa7, 0xa5, 0xcc,
- 0xce, 0x14, 0x5f, 0x50, 0xf5, 0xd7, 0xfd, 0xe8, 0x66, 0x48, 0x96, 0x15, 0x06, 0xd6, 0xb0, 0xed,
- 0xdf, 0xa8, 0x00, 0xc4, 0x7c, 0x3b, 0x7a, 0x2b, 0x75, 0x70, 0x3d, 0x53, 0xcc, 0xe9, 0x1f, 0xdd,
- 0xa9, 0x85, 0x7e, 0xc0, 0x82, 0x51, 0xa7, 0xd5, 0xf2, 0x1b, 0x0e, 0x0f, 0xcb, 0x5b, 0x2a, 0x3e,
- 0x38, 0x45, 0xfb, 0x0b, 0x71, 0x0d, 0xde, 0x85, 0xe7, 0xe5, 0x0a, 0xd5, 0x20, 0x3d, 0x7b, 0xa1,
- 0x37, 0x8c, 0x3e, 0x20, 0x9f, 0x8a, 0x65, 0x63, 0x28, 0xd5, 0x53, 0xb1, 0xc2, 0xee, 0x08, 0xfd,
- 0x95, 0x78, 0xd3, 0x78, 0x25, 0x0e, 0xe4, 0xbb, 0xf6, 0x19, 0xec, 0x6b, 0xaf, 0x07, 0x22, 0xaa,
- 0xe9, 0x6e, 0xfe, 0x83, 0xf9, 0x7e, 0x74, 0xda, 0x3b, 0xa9, 0x87, 0x8b, 0xff, 0x67, 0x60, 0xb2,
- 0x69, 0x32, 0x01, 0x62, 0x25, 0x3e, 0x99, 0x47, 0x37, 0xc1, 0x33, 0xc4, 0xd7, 0x7e, 0x02, 0x80,
- 0x93, 0x84, 0x51, 0x8d, 0x47, 0x7d, 0x58, 0xf5, 0xb6, 0x7c, 0xe1, 0x94, 0x61, 0xe7, 0xce, 0xe5,
- 0x7e, 0x18, 0x91, 0x36, 0xc5, 0x8c, 0x6f, 0xf7, 0x75, 0x51, 0x17, 0x2b, 0x2a, 0xe8, 0x35, 0x18,
- 0x62, 0x8e, 0x54, 0xe1, 0xcc, 0x48, 0xbe, 0xc4, 0xd9, 0x0c, 0x63, 0x16, 0x6f, 0x48, 0xf6, 0x37,
- 0xc4, 0x82, 0x02, 0xba, 0x2a, 0xdd, 0x14, 0xc3, 0x55, 0xef, 0x66, 0x48, 0x98, 0x9b, 0x62, 0x65,
- 0xf1, 0xbd, 0xb1, 0x07, 0x22, 0x2f, 0xcf, 0xcc, 0xf5, 0x65, 0xd4, 0xa4, 0x5c, 0x94, 0xf8, 0x2f,
- 0x53, 0x88, 0xcd, 0x40, 0x7e, 0xf7, 0xcc, 0x34, 0x63, 0xf1, 0x70, 0xde, 0x32, 0x49, 0xe0, 0x24,
- 0x4d, 0xca, 0x91, 0xf2, 0x5d, 0x2f, 0xdc, 0x3a, 0x7a, 0x9d, 0x1d, 0xfc, 0x21, 0xce, 0x6e, 0x23,
- 0x5e, 0x82, 0x45, 0xfd, 0x63, 0x65, 0x0f, 0x66, 0x3d, 0x98, 0x4a, 0x6e, 0xd1, 0x87, 0xca, 0x8e,
- 0xfc, 0xe1, 0x00, 0x4c, 0x98, 0x4b, 0x0a, 0x5d, 0x82, 0x8a, 0x20, 0xa2, 0xc2, 0xfe, 0xab, 0x5d,
- 0xb2, 0x26, 0x01, 0x38, 0xc6, 0x61, 0xd9, 0x1e, 0x58, 0x75, 0xcd, 0x8e, 0x37, 0xce, 0xf6, 0xa0,
- 0x20, 0x58, 0xc3, 0xa2, 0x0f, 0xab, 0x4d, 0xdf, 0x8f, 0xd4, 0x85, 0xa4, 0xd6, 0xdd, 0x22, 0x2b,
- 0xc5, 0x02, 0x4a, 0x2f, 0xa2, 0x5d, 0x12, 0x78, 0xa4, 0x65, 0x06, 0x08, 0x56, 0x17, 0xd1, 0x35,
- 0x1d, 0x88, 0x4d, 0x5c, 0x7a, 0x9d, 0xfa, 0x21, 0x5b, 0xc8, 0xe2, 0xf9, 0x16, 0xdb, 0x45, 0xd7,
- 0xb9, 0xa7, 0xb4, 0x84, 0xa3, 0x8f, 0xc3, 0x23, 0x2a, 0x08, 0x12, 0xe6, 0xda, 0x0c, 0xd9, 0xe2,
- 0x90, 0x21, 0x6d, 0x79, 0x64, 0x29, 0x1b, 0x0d, 0xe7, 0xd5, 0x47, 0xaf, 0xc2, 0x84, 0x60, 0xf1,
- 0x25, 0xc5, 0x61, 0xd3, 0xc2, 0xe8, 0x9a, 0x01, 0xc5, 0x09, 0x6c, 0x19, 0xe2, 0x98, 0x71, 0xd9,
- 0x92, 0xc2, 0x48, 0x3a, 0xc4, 0xb1, 0x0e, 0xc7, 0xa9, 0x1a, 0x68, 0x01, 0x26, 0x39, 0x0f, 0xe6,
- 0x7a, 0xdb, 0x7c, 0x4e, 0x84, 0xd7, 0x95, 0xda, 0x52, 0x37, 0x4c, 0x30, 0x4e, 0xe2, 0xa3, 0x97,
- 0x60, 0xcc, 0x09, 0x1a, 0x3b, 0x6e, 0x44, 0x1a, 0x51, 0x37, 0xe0, 0xee, 0x58, 0x9a, 0x89, 0xd6,
- 0x82, 0x06, 0xc3, 0x06, 0xa6, 0xfd, 0x16, 0x9c, 0xc8, 0x08, 0xa1, 0x40, 0x17, 0x8e, 0xd3, 0x71,
- 0xe5, 0x37, 0x25, 0x2c, 0x9c, 0x17, 0x6a, 0xab, 0xf2, 0x6b, 0x34, 0x2c, 0xba, 0x3a, 0x59, 0xa8,
- 0x05, 0x2d, 0x63, 0xa0, 0x5a, 0x9d, 0x2b, 0x12, 0x80, 0x63, 0x1c, 0xfb, 0xbf, 0x95, 0x60, 0x32,
- 0x43, 0xb7, 0xc2, 0xb2, 0xd6, 0x25, 0x1e, 0x29, 0x71, 0x92, 0x3a, 0x33, 0x62, 0x76, 0xe9, 0x10,
- 0x11, 0xb3, 0xcb, 0xbd, 0x22, 0x66, 0x0f, 0xbc, 0x9d, 0x88, 0xd9, 0xe6, 0x88, 0x0d, 0xf6, 0x35,
- 0x62, 0x19, 0x51, 0xb6, 0x87, 0x0e, 0x19, 0x65, 0xdb, 0x18, 0xf4, 0xe1, 0x3e, 0x06, 0xfd, 0xc7,
- 0x4b, 0x30, 0x95, 0x34, 0x25, 0x3d, 0x06, 0xb9, 0xed, 0x6b, 0x86, 0xdc, 0xf6, 0x62, 0x3f, 0x5e,
- 0xb2, 0xb9, 0x32, 0x5c, 0x9c, 0x90, 0xe1, 0xbe, 0xbf, 0x2f, 0x6a, 0xc5, 0xf2, 0xdc, 0xbf, 0x56,
- 0x82, 0x53, 0x99, 0x6e, 0xba, 0xc7, 0x30, 0x36, 0x37, 0x8c, 0xb1, 0x79, 0xb6, 0x6f, 0x0f, 0xe2,
- 0xdc, 0x01, 0xba, 0x9d, 0x18, 0xa0, 0x4b, 0xfd, 0x93, 0x2c, 0x1e, 0xa5, 0xaf, 0x97, 0xe1, 0x5c,
- 0x66, 0xbd, 0x58, 0xec, 0xb9, 0x62, 0x88, 0x3d, 0x9f, 0x4b, 0x88, 0x3d, 0xed, 0xe2, 0xda, 0x47,
- 0x23, 0x07, 0x15, 0x9e, 0xb4, 0x2c, 0x1e, 0xc0, 0x03, 0xca, 0x40, 0x0d, 0x4f, 0x5a, 0x45, 0x08,
- 0x9b, 0x74, 0xbf, 0x9d, 0x64, 0x9f, 0xff, 0xca, 0x82, 0x33, 0x99, 0x73, 0x73, 0x0c, 0xb2, 0xae,
- 0x75, 0x53, 0xd6, 0xf5, 0x54, 0xdf, 0xab, 0x35, 0x47, 0xf8, 0xf5, 0x95, 0xc1, 0x9c, 0x6f, 0x61,
- 0x2f, 0xf9, 0x1b, 0x30, 0xea, 0x34, 0x1a, 0x24, 0x0c, 0xd7, 0xfc, 0xa6, 0x0a, 0x0a, 0xfc, 0x2c,
- 0x7b, 0x67, 0xc5, 0xc5, 0xf7, 0x0f, 0xe6, 0x66, 0x93, 0x24, 0x62, 0x30, 0xd6, 0x29, 0xa0, 0x4f,
- 0xc2, 0x48, 0x28, 0xee, 0x4d, 0x31, 0xf7, 0xcf, 0xf7, 0x39, 0x38, 0xce, 0x26, 0x69, 0x99, 0x51,
- 0x8b, 0x94, 0xa4, 0x42, 0x91, 0x34, 0x23, 0x9c, 0x94, 0x8e, 0x34, 0xc2, 0xc9, 0x73, 0x00, 0x7b,
- 0xea, 0x31, 0x90, 0x94, 0x3f, 0x68, 0xcf, 0x04, 0x0d, 0x0b, 0x7d, 0x14, 0xa6, 0x42, 0x1e, 0xd6,
- 0x6f, 0xa9, 0xe5, 0x84, 0xcc, 0x8f, 0x46, 0xac, 0x42, 0x16, 0x19, 0xa9, 0x9e, 0x80, 0xe1, 0x14,
- 0x36, 0x5a, 0x91, 0xad, 0xb2, 0x18, 0x84, 0x7c, 0x61, 0x5e, 0x88, 0x5b, 0x14, 0x39, 0x73, 0x4f,
- 0x26, 0x87, 0x9f, 0x0d, 0xbc, 0x56, 0x13, 0x7d, 0x12, 0x80, 0x2e, 0x1f, 0x21, 0x87, 0x18, 0xce,
- 0x3f, 0x3c, 0xe9, 0xa9, 0xd2, 0xcc, 0x34, 0x6e, 0x66, 0xce, 0xaf, 0x55, 0x45, 0x04, 0x6b, 0x04,
- 0xd1, 0x16, 0x8c, 0xc7, 0xff, 0xe2, 0x94, 0x92, 0x87, 0x6c, 0x81, 0xc9, 0xbd, 0xab, 0x3a, 0x1d,
- 0x6c, 0x92, 0xb5, 0x7f, 0x62, 0x18, 0x1e, 0x2d, 0x38, 0x8b, 0xd1, 0x82, 0xa9, 0xef, 0x7d, 0x3a,
- 0xf9, 0x88, 0x9f, 0xcd, 0xac, 0x6c, 0xbc, 0xea, 0x13, 0x4b, 0xbe, 0xf4, 0xb6, 0x97, 0xfc, 0x8f,
- 0x58, 0x9a, 0x78, 0x85, 0x5b, 0x96, 0x7e, 0xe4, 0x90, 0x77, 0xcc, 0x11, 0xca, 0x5b, 0xb6, 0x32,
- 0x84, 0x16, 0xcf, 0xf5, 0xdd, 0x9d, 0xfe, 0xa5, 0x18, 0x5f, 0xb5, 0x00, 0x09, 0xf1, 0x0a, 0x69,
- 0xaa, 0x0d, 0x25, 0xe4, 0x19, 0x57, 0x0e, 0xfb, 0xfd, 0x0b, 0x29, 0x4a, 0x7c, 0x24, 0x5e, 0x96,
- 0x97, 0x41, 0x1a, 0xa1, 0xe7, 0x98, 0x64, 0x74, 0x0f, 0x7d, 0x9c, 0x85, 0xbd, 0x75, 0xdf, 0x12,
- 0x1c, 0x90, 0xd8, 0x70, 0x2f, 0x8a, 0x90, 0xb7, 0xaa, 0x9c, 0xb2, 0xba, 0x99, 0xdd, 0xd5, 0x91,
- 0xb0, 0x41, 0xea, 0x78, 0xdf, 0xdf, 0x5d, 0x78, 0x24, 0x67, 0xc8, 0x1e, 0xea, 0x33, 0xfc, 0xb7,
- 0x2d, 0x38, 0x5b, 0x18, 0xbf, 0xe5, 0x5b, 0x90, 0x41, 0xb4, 0x3f, 0x67, 0x41, 0xf6, 0x64, 0x1b,
- 0x66, 0x65, 0x97, 0xa0, 0xd2, 0xa0, 0x85, 0x9a, 0xc3, 0x6e, 0x1c, 0xc9, 0x40, 0x02, 0x70, 0x8c,
- 0x63, 0x58, 0x8f, 0x95, 0x7a, 0x5a, 0x8f, 0xfd, 0xaa, 0x05, 0xa9, 0x43, 0xfe, 0x18, 0xb8, 0x8d,
- 0x55, 0x93, 0xdb, 0x78, 0x6f, 0x3f, 0xa3, 0x99, 0xc3, 0x68, 0xfc, 0xc9, 0x24, 0x9c, 0xce, 0x71,
- 0xcb, 0xdb, 0x83, 0xe9, 0xed, 0x06, 0x31, 0x5d, 0xa1, 0x8b, 0x42, 0x04, 0x15, 0xfa, 0x4d, 0xb3,
- 0x2c, 0xae, 0xd3, 0x29, 0x14, 0x9c, 0x6e, 0x02, 0x7d, 0xce, 0x82, 0x93, 0xce, 0x9d, 0x70, 0x99,
- 0x72, 0x8d, 0x6e, 0x63, 0xb1, 0xe5, 0x37, 0x76, 0xe9, 0x95, 0x2c, 0x37, 0xc2, 0x0b, 0x99, 0x92,
- 0xbc, 0xdb, 0xf5, 0x14, 0xbe, 0xd1, 0x3c, 0x4b, 0x6b, 0x9b, 0x85, 0x85, 0x33, 0xdb, 0x42, 0x58,
- 0xe4, 0x3a, 0xa0, 0x6f, 0xd2, 0x02, 0x67, 0xfd, 0x2c, 0xff, 0x49, 0xce, 0x06, 0x49, 0x08, 0x56,
- 0x74, 0xd0, 0xa7, 0xa1, 0xb2, 0x2d, 0xdd, 0x7d, 0x33, 0xd8, 0xac, 0x78, 0x20, 0x8b, 0x9d, 0xa0,
- 0xb9, 0x3a, 0x5e, 0x21, 0xe1, 0x98, 0x28, 0x7a, 0x15, 0xca, 0xde, 0x56, 0x58, 0x94, 0x19, 0x36,
- 0x61, 0x77, 0xc9, 0x43, 0x62, 0xac, 0xaf, 0xd4, 0x31, 0xad, 0x88, 0xae, 0x42, 0x39, 0xd8, 0x6c,
- 0x0a, 0x31, 0x74, 0xe6, 0x26, 0xc5, 0x8b, 0xd5, 0x9c, 0x5e, 0x31, 0x4a, 0x78, 0xb1, 0x8a, 0x29,
- 0x09, 0x54, 0x83, 0x41, 0xe6, 0xcb, 0x26, 0x98, 0x9a, 0xcc, 0xe7, 0x5b, 0x81, 0x4f, 0x28, 0x8f,
- 0x9b, 0xc1, 0x10, 0x30, 0x27, 0x84, 0x36, 0x60, 0xa8, 0xc1, 0xb2, 0x88, 0x0a, 0x2e, 0xe6, 0x03,
- 0x99, 0x02, 0xe7, 0x82, 0xf4, 0xaa, 0x42, 0xfe, 0xca, 0x30, 0xb0, 0xa0, 0xc5, 0xa8, 0x92, 0xce,
- 0xce, 0x56, 0x28, 0xb2, 0x5e, 0x67, 0x53, 0x2d, 0xc8, 0x1a, 0x2c, 0xa8, 0x32, 0x0c, 0x2c, 0x68,
- 0xa1, 0x97, 0xa1, 0xb4, 0xd5, 0x10, 0x7e, 0x6a, 0x99, 0x92, 0x67, 0x33, 0xaa, 0xc9, 0xe2, 0xd0,
- 0xbd, 0x83, 0xb9, 0xd2, 0xca, 0x12, 0x2e, 0x6d, 0x35, 0xd0, 0x3a, 0x0c, 0x6f, 0xf1, 0x38, 0x08,
- 0x42, 0xb8, 0xfc, 0x64, 0x76, 0x88, 0x86, 0x54, 0xa8, 0x04, 0xee, 0xf3, 0x24, 0x00, 0x58, 0x12,
- 0x61, 0xa9, 0x03, 0x54, 0x3c, 0x07, 0x11, 0x4e, 0x6e, 0xfe, 0x70, 0x31, 0x38, 0x38, 0x93, 0x19,
- 0x47, 0x85, 0xc0, 0x1a, 0x45, 0xba, 0xaa, 0x9d, 0xb7, 0xba, 0x01, 0x8b, 0xd9, 0x2d, 0xe2, 0x0e,
- 0x65, 0xae, 0xea, 0x05, 0x89, 0x54, 0xb4, 0xaa, 0x15, 0x12, 0x8e, 0x89, 0xa2, 0x5d, 0x18, 0xdf,
- 0x0b, 0x3b, 0x3b, 0x44, 0x6e, 0x69, 0x16, 0x86, 0x28, 0x87, 0x3f, 0xba, 0x25, 0x10, 0xdd, 0x20,
- 0xea, 0x3a, 0xad, 0xd4, 0x29, 0xc4, 0x78, 0xd9, 0x5b, 0x3a, 0x31, 0x6c, 0xd2, 0xa6, 0xc3, 0xff,
- 0x66, 0xd7, 0xdf, 0xdc, 0x8f, 0x88, 0x88, 0x02, 0x97, 0x39, 0xfc, 0xaf, 0x73, 0x94, 0xf4, 0xf0,
- 0x0b, 0x00, 0x96, 0x44, 0xd0, 0x2d, 0x31, 0x3c, 0xec, 0xf4, 0x9c, 0xca, 0x0f, 0xd5, 0xba, 0x20,
- 0x91, 0x72, 0x06, 0x85, 0x9d, 0x96, 0x31, 0x29, 0x76, 0x4a, 0x76, 0x76, 0xfc, 0xc8, 0xf7, 0x12,
- 0x27, 0xf4, 0x74, 0xfe, 0x29, 0x59, 0xcb, 0xc0, 0x4f, 0x9f, 0x92, 0x59, 0x58, 0x38, 0xb3, 0x2d,
- 0xd4, 0x84, 0x89, 0x8e, 0x1f, 0x44, 0x77, 0xfc, 0x40, 0xae, 0x2f, 0x54, 0x20, 0x1c, 0x33, 0x30,
- 0x45, 0x8b, 0x2c, 0xc0, 0xa2, 0x09, 0xc1, 0x09, 0x9a, 0xe8, 0x63, 0x30, 0x1c, 0x36, 0x9c, 0x16,
- 0x59, 0xbd, 0x31, 0x73, 0x22, 0xff, 0xfa, 0xa9, 0x73, 0x94, 0x9c, 0xd5, 0xc5, 0xf3, 0x0c, 0x70,
- 0x14, 0x2c, 0xc9, 0xa1, 0x15, 0x18, 0x64, 0xa9, 0xe1, 0x58, 0xc8, 0xc2, 0x9c, 0x88, 0xb3, 0x29,
- 0x2b, 0x78, 0x7e, 0x36, 0xb1, 0x62, 0xcc, 0xab, 0xd3, 0x3d, 0x20, 0xde, 0x88, 0x7e, 0x38, 0x73,
- 0x2a, 0x7f, 0x0f, 0x88, 0xa7, 0xe5, 0x8d, 0x7a, 0xd1, 0x1e, 0x50, 0x48, 0x38, 0x26, 0x4a, 0x4f,
- 0x66, 0x7a, 0x9a, 0x9e, 0x2e, 0x30, 0xdf, 0xca, 0x3d, 0x4b, 0xd9, 0xc9, 0x4c, 0x4f, 0x52, 0x4a,
- 0xc2, 0xfe, 0xfd, 0xe1, 0x34, 0xcf, 0xc2, 0xa4, 0x0a, 0xdf, 0x67, 0xa5, 0x14, 0xce, 0x1f, 0xec,
- 0x57, 0xc8, 0x79, 0x84, 0x4f, 0xa1, 0xcf, 0x59, 0x70, 0xba, 0x93, 0xf9, 0x21, 0x82, 0x01, 0xe8,
- 0x4f, 0x56, 0xca, 0x3f, 0x5d, 0x85, 0xb7, 0xcc, 0x86, 0xe3, 0x9c, 0x96, 0x92, 0xcf, 0xcd, 0xf2,
- 0xdb, 0x7e, 0x6e, 0xae, 0xc1, 0x48, 0x83, 0x3f, 0x45, 0x0a, 0xb3, 0x6a, 0x27, 0xdf, 0xde, 0x8c,
- 0x95, 0x10, 0x6f, 0x98, 0x2d, 0xac, 0x48, 0xa0, 0x1f, 0xb5, 0xe0, 0x6c, 0xb2, 0xeb, 0x98, 0x30,
- 0xb0, 0x88, 0x89, 0xc9, 0x05, 0x1a, 0x2b, 0xe2, 0xfb, 0x53, 0xfc, 0xbf, 0x81, 0x7c, 0xbf, 0x17,
- 0x02, 0x2e, 0x6e, 0x0c, 0x55, 0x33, 0x24, 0x2a, 0x43, 0xa6, 0x16, 0xa9, 0x0f, 0xa9, 0xca, 0x0b,
- 0x30, 0xd6, 0xf6, 0xbb, 0x5e, 0x24, 0xac, 0xbd, 0x84, 0xe5, 0x09, 0xb3, 0xb8, 0x58, 0xd3, 0xca,
- 0xb1, 0x81, 0x95, 0x90, 0xc5, 0x8c, 0x3c, 0xb0, 0x2c, 0xe6, 0x0d, 0x18, 0xf3, 0x34, 0xf3, 0x64,
- 0xc1, 0x0f, 0x5c, 0xc8, 0x8f, 0x67, 0xab, 0x1b, 0x33, 0xf3, 0x5e, 0xea, 0x25, 0xd8, 0xa0, 0x76,
- 0xbc, 0x66, 0x60, 0x5f, 0xb6, 0x32, 0x98, 0x7a, 0x2e, 0x8a, 0xf9, 0xb0, 0x29, 0x8a, 0xb9, 0x90,
- 0x14, 0xc5, 0xa4, 0x34, 0x08, 0x86, 0x14, 0xa6, 0xff, 0x74, 0x3d, 0xfd, 0xc6, 0xc4, 0xb4, 0x5b,
- 0x70, 0xbe, 0xd7, 0xb5, 0xc4, 0xcc, 0xfe, 0x9a, 0x4a, 0x5f, 0x1c, 0x9b, 0xfd, 0x35, 0x57, 0xab,
- 0x98, 0x41, 0xfa, 0x8d, 0xb6, 0x64, 0xff, 0x17, 0x0b, 0xca, 0x35, 0xbf, 0x79, 0x0c, 0x0f, 0xde,
- 0x8f, 0x18, 0x0f, 0xde, 0x47, 0xb3, 0x2f, 0xc4, 0x66, 0xae, 0xfe, 0x63, 0x39, 0xa1, 0xff, 0x38,
- 0x9b, 0x47, 0xa0, 0x58, 0xdb, 0xf1, 0xd3, 0x65, 0x18, 0xad, 0xf9, 0x4d, 0x65, 0x73, 0xff, 0x4f,
- 0x1f, 0xc4, 0xe6, 0x3e, 0x37, 0xe9, 0x84, 0x46, 0x99, 0x59, 0x0b, 0x4a, 0x77, 0xe3, 0x6f, 0x31,
- 0xd3, 0xfb, 0xdb, 0xc4, 0xdd, 0xde, 0x89, 0x48, 0x33, 0xf9, 0x39, 0xc7, 0x67, 0x7a, 0xff, 0xfb,
- 0x25, 0x98, 0x4c, 0xb4, 0x8e, 0x5a, 0x30, 0xde, 0xd2, 0xa5, 0xeb, 0x62, 0x9d, 0x3e, 0x90, 0x60,
- 0x5e, 0x98, 0x2e, 0x6b, 0x45, 0xd8, 0x24, 0x8e, 0xe6, 0x01, 0x94, 0xba, 0x59, 0x8a, 0x57, 0x19,
- 0xd7, 0xaf, 0xf4, 0xd1, 0x21, 0xd6, 0x30, 0xd0, 0x8b, 0x30, 0x1a, 0xf9, 0x1d, 0xbf, 0xe5, 0x6f,
- 0xef, 0x5f, 0x23, 0x32, 0xbe, 0x97, 0x32, 0x48, 0xdc, 0x88, 0x41, 0x58, 0xc7, 0x43, 0x77, 0x61,
- 0x5a, 0x11, 0xa9, 0x1f, 0x81, 0xc6, 0x81, 0x49, 0x15, 0xd6, 0x93, 0x14, 0x71, 0xba, 0x11, 0xfb,
- 0x67, 0xcb, 0x7c, 0x88, 0xbd, 0xc8, 0x7d, 0x77, 0x37, 0xbc, 0xb3, 0x77, 0xc3, 0xd7, 0x2d, 0x98,
- 0xa2, 0xad, 0x33, 0x6b, 0x2b, 0x79, 0xcd, 0xab, 0x08, 0xda, 0x56, 0x41, 0x04, 0xed, 0x0b, 0xf4,
- 0xd4, 0x6c, 0xfa, 0xdd, 0x48, 0xc8, 0xee, 0xb4, 0x63, 0x91, 0x96, 0x62, 0x01, 0x15, 0x78, 0x24,
- 0x08, 0x84, 0x87, 0xa8, 0x8e, 0x47, 0x82, 0x00, 0x0b, 0xa8, 0x0c, 0xb0, 0x3d, 0x90, 0x1d, 0x60,
- 0x9b, 0xc7, 0x49, 0x15, 0x76, 0x39, 0x82, 0xe1, 0xd2, 0xe2, 0xa4, 0x4a, 0x83, 0x9d, 0x18, 0xc7,
- 0xfe, 0x6a, 0x19, 0xc6, 0x6a, 0x7e, 0x33, 0x56, 0x35, 0xbf, 0x60, 0xa8, 0x9a, 0xcf, 0x27, 0x54,
- 0xcd, 0x53, 0x3a, 0xee, 0xbb, 0x8a, 0xe5, 0x6f, 0x96, 0x62, 0xf9, 0x1f, 0x59, 0x6c, 0xd6, 0xaa,
- 0xeb, 0x75, 0x6e, 0xbc, 0x87, 0x2e, 0xc3, 0x28, 0x3b, 0x60, 0x98, 0x4b, 0xb2, 0xd4, 0xbf, 0xb2,
- 0xc4, 0x51, 0xeb, 0x71, 0x31, 0xd6, 0x71, 0xd0, 0x45, 0x18, 0x09, 0x89, 0x13, 0x34, 0x76, 0xd4,
- 0xe9, 0x2a, 0x94, 0xa5, 0xbc, 0x0c, 0x2b, 0x28, 0x7a, 0x3d, 0x0e, 0xd1, 0x59, 0xce, 0x77, 0x71,
- 0xd4, 0xfb, 0xc3, 0xb7, 0x48, 0x7e, 0x5c, 0x4e, 0xfb, 0x36, 0xa0, 0x34, 0x7e, 0x1f, 0xb1, 0xe9,
- 0xe6, 0xcc, 0xd8, 0x74, 0x95, 0x54, 0x5c, 0xba, 0x3f, 0xb7, 0x60, 0xa2, 0xe6, 0x37, 0xe9, 0xd6,
- 0xfd, 0x76, 0xda, 0xa7, 0x7a, 0x7c, 0xe2, 0xa1, 0x82, 0xf8, 0xc4, 0x4f, 0xc0, 0x60, 0xcd, 0x6f,
- 0xae, 0xd6, 0x8a, 0xe2, 0x0b, 0xd8, 0x7f, 0xdd, 0x82, 0xe1, 0x9a, 0xdf, 0x3c, 0x06, 0xb5, 0xc0,
- 0x87, 0x4d, 0xb5, 0xc0, 0x23, 0x39, 0xeb, 0x26, 0x47, 0x13, 0xf0, 0x57, 0x07, 0x60, 0x9c, 0xf6,
- 0xd3, 0xdf, 0x96, 0x53, 0x69, 0x0c, 0x9b, 0xd5, 0xc7, 0xb0, 0x51, 0x2e, 0xdc, 0x6f, 0xb5, 0xfc,
- 0x3b, 0xc9, 0x69, 0x5d, 0x61, 0xa5, 0x58, 0x40, 0xd1, 0x33, 0x30, 0xd2, 0x09, 0xc8, 0x9e, 0xeb,
- 0x0b, 0xf6, 0x56, 0x53, 0xb2, 0xd4, 0x44, 0x39, 0x56, 0x18, 0xf4, 0x59, 0x18, 0xba, 0x1e, 0xbd,
- 0xca, 0x1b, 0xbe, 0xd7, 0xe4, 0x92, 0xf3, 0xb2, 0x48, 0xa2, 0xa1, 0x95, 0x63, 0x03, 0x0b, 0xdd,
- 0x86, 0x0a, 0xfb, 0xcf, 0x8e, 0x9d, 0xc3, 0xa7, 0x63, 0x15, 0xe9, 0xf9, 0x04, 0x01, 0x1c, 0xd3,
- 0x42, 0xcf, 0x01, 0x44, 0x32, 0x10, 0x7d, 0x28, 0xa2, 0xad, 0xa9, 0xa7, 0x80, 0x0a, 0x51, 0x1f,
- 0x62, 0x0d, 0x0b, 0x3d, 0x0d, 0x95, 0xc8, 0x71, 0x5b, 0xd7, 0x5d, 0x8f, 0x84, 0x4c, 0x22, 0x5e,
- 0x96, 0x59, 0xf2, 0x44, 0x21, 0x8e, 0xe1, 0x94, 0x15, 0x63, 0x91, 0x38, 0x78, 0x32, 0xe7, 0x11,
- 0x86, 0xcd, 0x58, 0xb1, 0xeb, 0xaa, 0x14, 0x6b, 0x18, 0x68, 0x07, 0x1e, 0x73, 0x3d, 0x96, 0x70,
- 0x82, 0xd4, 0x77, 0xdd, 0xce, 0xc6, 0xf5, 0xfa, 0x2d, 0x12, 0xb8, 0x5b, 0xfb, 0x8b, 0x4e, 0x63,
- 0x97, 0x78, 0x32, 0xd1, 0xe6, 0x7b, 0x45, 0x17, 0x1f, 0x5b, 0x2d, 0xc0, 0xc5, 0x85, 0x94, 0xec,
- 0xe7, 0xd9, 0x7a, 0xbf, 0x51, 0x47, 0xef, 0x37, 0x8e, 0x8e, 0xd3, 0xfa, 0xd1, 0x71, 0xff, 0x60,
- 0x6e, 0xe8, 0x46, 0x5d, 0x0b, 0x24, 0xf1, 0x12, 0x9c, 0xaa, 0xf9, 0xcd, 0x9a, 0x1f, 0x44, 0x2b,
- 0x7e, 0x70, 0xc7, 0x09, 0x9a, 0x72, 0x79, 0xcd, 0xc9, 0x50, 0x1a, 0xf4, 0xfc, 0x1c, 0xe4, 0xa7,
- 0x8b, 0x11, 0x26, 0xe3, 0x79, 0xc6, 0xb1, 0x1d, 0xd2, 0x01, 0xac, 0xc1, 0x78, 0x07, 0x95, 0xb2,
- 0xe5, 0x8a, 0x13, 0x11, 0x74, 0x83, 0xa5, 0xa2, 0x8e, 0xaf, 0x51, 0x51, 0xfd, 0x29, 0x2d, 0x15,
- 0x75, 0x0c, 0xcc, 0xbc, 0x77, 0xcd, 0xfa, 0xf6, 0x7f, 0x1d, 0x64, 0x27, 0x6a, 0x22, 0xed, 0x07,
- 0xfa, 0x14, 0x4c, 0x84, 0xe4, 0xba, 0xeb, 0x75, 0xef, 0x4a, 0x11, 0x46, 0x81, 0x0b, 0x5f, 0x7d,
- 0x59, 0xc7, 0xe4, 0x82, 0x50, 0xb3, 0x0c, 0x27, 0xa8, 0xa1, 0x36, 0x4c, 0xdc, 0x71, 0xbd, 0xa6,
- 0x7f, 0x27, 0x94, 0xf4, 0x47, 0xf2, 0xe5, 0xa1, 0xb7, 0x39, 0x66, 0xa2, 0x8f, 0x46, 0x73, 0xb7,
- 0x0d, 0x62, 0x38, 0x41, 0x9c, 0xae, 0xda, 0xa0, 0xeb, 0x2d, 0x84, 0x37, 0x43, 0x12, 0x88, 0xa4,
- 0xe2, 0x6c, 0xd5, 0x62, 0x59, 0x88, 0x63, 0x38, 0x5d, 0xb5, 0xec, 0xcf, 0x95, 0xc0, 0xef, 0xf2,
- 0x1c, 0x13, 0x62, 0xd5, 0x62, 0x55, 0x8a, 0x35, 0x0c, 0xba, 0xab, 0xd9, 0xbf, 0x75, 0xdf, 0xc3,
- 0xbe, 0x1f, 0xc9, 0x73, 0x80, 0xe9, 0xf4, 0xb5, 0x72, 0x6c, 0x60, 0xa1, 0x15, 0x40, 0x61, 0xb7,
- 0xd3, 0x69, 0x31, 0xdb, 0x20, 0xa7, 0xc5, 0x48, 0x71, 0x7b, 0x89, 0x32, 0x0f, 0xbd, 0x5b, 0x4f,
- 0x41, 0x71, 0x46, 0x0d, 0x7a, 0xc0, 0x6f, 0x89, 0xae, 0x0e, 0xb2, 0xae, 0x72, 0xdd, 0x49, 0x9d,
- 0xf7, 0x53, 0xc2, 0xd0, 0x32, 0x0c, 0x87, 0xfb, 0x61, 0x23, 0x12, 0x91, 0x12, 0x73, 0x32, 0x3b,
- 0xd5, 0x19, 0x8a, 0x96, 0x58, 0x90, 0x57, 0xc1, 0xb2, 0x2e, 0x6a, 0xc0, 0x09, 0x41, 0x71, 0x69,
- 0xc7, 0xf1, 0x54, 0x9e, 0x1c, 0x6e, 0x22, 0x7d, 0xf9, 0xde, 0xc1, 0xdc, 0x09, 0xd1, 0xb2, 0x0e,
- 0xbe, 0x7f, 0x30, 0x77, 0xba, 0xe6, 0x37, 0x33, 0x20, 0x38, 0x8b, 0x1a, 0x5f, 0x7c, 0x8d, 0x86,
- 0xdf, 0xee, 0xd4, 0x02, 0x7f, 0xcb, 0x6d, 0x91, 0x22, 0xfd, 0x53, 0xdd, 0xc0, 0x14, 0x8b, 0xcf,
- 0x28, 0xc3, 0x09, 0x6a, 0xf6, 0x77, 0x33, 0x26, 0x88, 0xe5, 0xd1, 0x8e, 0xba, 0x01, 0x41, 0x6d,
- 0x18, 0xef, 0xb0, 0x6d, 0x22, 0x32, 0x3f, 0x88, 0xb5, 0xfe, 0x42, 0x9f, 0x72, 0x94, 0x3b, 0xf4,
- 0xee, 0x30, 0x6d, 0x8c, 0x6a, 0x3a, 0x39, 0x6c, 0x52, 0xb7, 0x7f, 0xf3, 0x11, 0x76, 0x8d, 0xd6,
- 0xb9, 0x70, 0x64, 0x58, 0x78, 0x64, 0x88, 0xf7, 0xd8, 0x6c, 0xbe, 0x94, 0x2e, 0x9e, 0x16, 0xe1,
- 0xd5, 0x81, 0x65, 0x5d, 0xf4, 0x49, 0x98, 0xa0, 0xcf, 0x1b, 0x75, 0x95, 0x85, 0x33, 0x27, 0xf3,
- 0x23, 0x67, 0x28, 0x2c, 0x3d, 0x2b, 0x8c, 0x5e, 0x19, 0x27, 0x88, 0xa1, 0xd7, 0x99, 0x4d, 0x8f,
- 0x24, 0x5d, 0xea, 0x87, 0xb4, 0x6e, 0xbe, 0x23, 0xc9, 0x6a, 0x44, 0x50, 0x17, 0x4e, 0xa4, 0x73,
- 0xc8, 0x85, 0x33, 0x76, 0x3e, 0x9f, 0x98, 0x4e, 0x03, 0x17, 0xa7, 0xef, 0x48, 0xc3, 0x42, 0x9c,
- 0x45, 0x1f, 0x5d, 0x87, 0x71, 0x91, 0x4c, 0x5a, 0xac, 0xdc, 0xb2, 0x21, 0x3c, 0x1c, 0xc7, 0x3a,
- 0xf0, 0x7e, 0xb2, 0x00, 0x9b, 0x95, 0xd1, 0x36, 0x9c, 0xd5, 0x92, 0x3b, 0x5d, 0x09, 0x1c, 0x66,
- 0x01, 0xe0, 0xb2, 0xe3, 0x54, 0xbb, 0xe0, 0x1f, 0xbf, 0x77, 0x30, 0x77, 0x76, 0xa3, 0x08, 0x11,
- 0x17, 0xd3, 0x41, 0x37, 0xe0, 0x14, 0xf7, 0xfb, 0xae, 0x12, 0xa7, 0xd9, 0x72, 0x3d, 0xc5, 0x41,
- 0xf0, 0x2d, 0x7f, 0xe6, 0xde, 0xc1, 0xdc, 0xa9, 0x85, 0x2c, 0x04, 0x9c, 0x5d, 0x0f, 0x7d, 0x18,
- 0x2a, 0x4d, 0x2f, 0x14, 0x63, 0x30, 0x64, 0xe4, 0xcf, 0xaa, 0x54, 0xd7, 0xeb, 0xea, 0xfb, 0xe3,
- 0x3f, 0x38, 0xae, 0x80, 0xb6, 0xb9, 0x80, 0x59, 0x89, 0x3d, 0x86, 0x53, 0x71, 0xaf, 0x92, 0x92,
- 0x41, 0xc3, 0xf3, 0x93, 0x6b, 0x56, 0x94, 0x43, 0x84, 0xe1, 0x14, 0x6a, 0x10, 0x46, 0xaf, 0x01,
- 0xa2, 0xcf, 0x0e, 0xb7, 0x41, 0x16, 0x1a, 0x2c, 0xad, 0x08, 0x93, 0xc7, 0x8f, 0x98, 0xbe, 0x88,
- 0xf5, 0x14, 0x06, 0xce, 0xa8, 0x85, 0xae, 0xd2, 0x53, 0x45, 0x2f, 0x15, 0xa7, 0x96, 0xca, 0x76,
- 0x58, 0x25, 0x9d, 0x80, 0x30, 0x8b, 0x26, 0x93, 0x22, 0x4e, 0xd4, 0x43, 0x4d, 0x78, 0xcc, 0xe9,
- 0x46, 0x3e, 0x93, 0xdd, 0x9b, 0xa8, 0x1b, 0xfe, 0x2e, 0xf1, 0x98, 0xda, 0x6c, 0x64, 0xf1, 0x3c,
- 0x65, 0x51, 0x16, 0x0a, 0xf0, 0x70, 0x21, 0x15, 0xca, 0x5a, 0xaa, 0xf4, 0xc6, 0x60, 0x46, 0xf3,
- 0xca, 0x48, 0x71, 0xfc, 0x22, 0x8c, 0xee, 0xf8, 0x61, 0xb4, 0x4e, 0xa2, 0x3b, 0x7e, 0xb0, 0x2b,
- 0xa2, 0xd2, 0xc6, 0x31, 0xbe, 0x63, 0x10, 0xd6, 0xf1, 0xe8, 0xdb, 0x91, 0x19, 0x75, 0xac, 0x56,
- 0x99, 0x3e, 0x7d, 0x24, 0x3e, 0x63, 0xae, 0xf2, 0x62, 0x2c, 0xe1, 0x12, 0x75, 0xb5, 0xb6, 0xc4,
- 0x74, 0xe3, 0x09, 0xd4, 0xd5, 0xda, 0x12, 0x96, 0x70, 0xba, 0x5c, 0xc3, 0x1d, 0x27, 0x20, 0xb5,
- 0xc0, 0x6f, 0x90, 0x50, 0x8b, 0x2c, 0xff, 0x28, 0x8f, 0xb9, 0x4b, 0x97, 0x6b, 0x3d, 0x0b, 0x01,
- 0x67, 0xd7, 0x43, 0x24, 0x9d, 0xd8, 0x6c, 0x22, 0x5f, 0xa9, 0x91, 0xe6, 0x67, 0xfa, 0xcc, 0x6d,
- 0xe6, 0xc1, 0x94, 0x4a, 0xa9, 0xc6, 0xa3, 0xec, 0x86, 0x33, 0x93, 0x6c, 0x6d, 0xf7, 0x1f, 0xa2,
- 0x57, 0xa9, 0x89, 0x56, 0x13, 0x94, 0x70, 0x8a, 0xb6, 0x11, 0xb0, 0x6d, 0xaa, 0x67, 0xc0, 0xb6,
- 0x4b, 0x50, 0x09, 0xbb, 0x9b, 0x4d, 0xbf, 0xed, 0xb8, 0x1e, 0xd3, 0x8d, 0x6b, 0x8f, 0x98, 0xba,
- 0x04, 0xe0, 0x18, 0x07, 0xad, 0xc0, 0x88, 0x23, 0x75, 0x40, 0x28, 0x3f, 0x44, 0x8f, 0xd2, 0xfc,
- 0xf0, 0xa8, 0x15, 0x52, 0xeb, 0xa3, 0xea, 0xa2, 0x57, 0x60, 0x5c, 0xf8, 0x2d, 0x8b, 0x6c, 0x9e,
- 0x27, 0x4c, 0xe7, 0xb2, 0xba, 0x0e, 0xc4, 0x26, 0x2e, 0xba, 0x09, 0xa3, 0x91, 0xdf, 0x62, 0x1e,
- 0x52, 0x94, 0xcd, 0x3b, 0x9d, 0x1f, 0x6c, 0x6e, 0x43, 0xa1, 0xe9, 0xe2, 0x57, 0x55, 0x15, 0xeb,
- 0x74, 0xd0, 0x06, 0x5f, 0xef, 0x2c, 0x8e, 0x3c, 0x09, 0x67, 0x1e, 0xc9, 0xbf, 0x93, 0x54, 0xb8,
- 0x79, 0x73, 0x3b, 0x88, 0x9a, 0x58, 0x27, 0x83, 0xae, 0xc0, 0x74, 0x27, 0x70, 0x7d, 0xb6, 0x26,
- 0x94, 0xfa, 0x6f, 0xc6, 0x4c, 0xef, 0x54, 0x4b, 0x22, 0xe0, 0x74, 0x1d, 0xe6, 0x76, 0x2e, 0x0a,
- 0x67, 0xce, 0xf0, 0x84, 0xdf, 0xfc, 0x4d, 0xc8, 0xcb, 0xb0, 0x82, 0xa2, 0x35, 0x76, 0x12, 0x73,
- 0x71, 0xc6, 0xcc, 0x6c, 0x7e, 0x54, 0x20, 0x5d, 0xec, 0xc1, 0x99, 0x57, 0xf5, 0x17, 0xc7, 0x14,
- 0x50, 0x53, 0xcb, 0x0c, 0x49, 0x5f, 0x0c, 0xe1, 0xcc, 0x63, 0x05, 0x96, 0x75, 0x89, 0xe7, 0x45,
- 0xcc, 0x10, 0x18, 0xc5, 0x21, 0x4e, 0xd0, 0x44, 0x1f, 0x85, 0x29, 0x11, 0xcb, 0x30, 0x1e, 0xa6,
- 0xb3, 0xb1, 0xdd, 0x39, 0x4e, 0xc0, 0x70, 0x0a, 0x9b, 0x67, 0x9e, 0x70, 0x36, 0x5b, 0x44, 0x1c,
- 0x7d, 0xd7, 0x5d, 0x6f, 0x37, 0x9c, 0x39, 0xc7, 0xce, 0x07, 0x91, 0x79, 0x22, 0x09, 0xc5, 0x19,
- 0x35, 0xd0, 0x06, 0x4c, 0x75, 0x02, 0x42, 0xda, 0x8c, 0xd1, 0x17, 0xf7, 0xd9, 0x1c, 0x8f, 0xba,
- 0x40, 0x7b, 0x52, 0x4b, 0xc0, 0xee, 0x67, 0x94, 0xe1, 0x14, 0x05, 0x74, 0x07, 0x46, 0xfc, 0x3d,
- 0x12, 0xec, 0x10, 0xa7, 0x39, 0x73, 0xbe, 0xc0, 0x0f, 0x42, 0x5c, 0x6e, 0x37, 0x04, 0x6e, 0xc2,
- 0x64, 0x40, 0x16, 0xf7, 0x36, 0x19, 0x90, 0x8d, 0xa1, 0x1f, 0xb3, 0xe0, 0x8c, 0xd4, 0x32, 0xd4,
- 0x3b, 0x74, 0xd4, 0x97, 0x7c, 0x2f, 0x8c, 0x02, 0x1e, 0x27, 0xe0, 0xf1, 0x7c, 0xdf, 0xf9, 0x8d,
- 0x9c, 0x4a, 0x4a, 0xa2, 0x7a, 0x26, 0x0f, 0x23, 0xc4, 0xf9, 0x2d, 0xa2, 0x25, 0x98, 0x0e, 0x49,
- 0x24, 0x0f, 0xa3, 0x85, 0x70, 0xe5, 0xf5, 0xea, 0xfa, 0xcc, 0x13, 0x3c, 0xc8, 0x01, 0xdd, 0x0c,
- 0xf5, 0x24, 0x10, 0xa7, 0xf1, 0xd1, 0x65, 0x28, 0xf9, 0xe1, 0xcc, 0x7b, 0x0b, 0x92, 0x89, 0xd2,
- 0xa7, 0x38, 0x37, 0x1d, 0xbb, 0x51, 0xc7, 0x25, 0x3f, 0x9c, 0xfd, 0x4e, 0x98, 0x4e, 0x71, 0x0c,
- 0x87, 0x49, 0xc2, 0x33, 0xbb, 0x0b, 0xe3, 0xc6, 0xac, 0x3c, 0x54, 0x2d, 0xf5, 0xbf, 0x18, 0x86,
- 0x8a, 0xd2, 0x60, 0xa2, 0x4b, 0xa6, 0x62, 0xfa, 0x4c, 0x52, 0x31, 0x3d, 0x52, 0xf3, 0x9b, 0x86,
- 0x2e, 0x7a, 0x23, 0x23, 0x1a, 0x5c, 0xde, 0x19, 0xd0, 0xbf, 0x81, 0xbc, 0x26, 0x16, 0x2e, 0xf7,
- 0xad, 0xe1, 0x1e, 0x28, 0x94, 0x34, 0x5f, 0x81, 0x69, 0xcf, 0x67, 0x6c, 0x2a, 0x69, 0x4a, 0x1e,
- 0x84, 0xb1, 0x1a, 0x15, 0x3d, 0xbc, 0x4a, 0x02, 0x01, 0xa7, 0xeb, 0xd0, 0x06, 0x39, 0xaf, 0x90,
- 0x14, 0x6d, 0x73, 0x56, 0x02, 0x0b, 0x28, 0x7a, 0x02, 0x06, 0x3b, 0x7e, 0x73, 0xb5, 0x26, 0x58,
- 0x54, 0x2d, 0x06, 0x69, 0x73, 0xb5, 0x86, 0x39, 0x0c, 0x2d, 0xc0, 0x10, 0xfb, 0x11, 0xce, 0x8c,
- 0xe5, 0xc7, 0xd1, 0x60, 0x35, 0xb4, 0x14, 0x47, 0xac, 0x02, 0x16, 0x15, 0x99, 0x88, 0x8d, 0xf2,
- 0xf5, 0x4c, 0xc4, 0x36, 0xfc, 0x80, 0x22, 0x36, 0x49, 0x00, 0xc7, 0xb4, 0xd0, 0x5d, 0x38, 0x65,
- 0xbc, 0xa5, 0xf8, 0x12, 0x21, 0xa1, 0xf0, 0xe5, 0x7f, 0xa2, 0xf0, 0x11, 0x25, 0x34, 0xe2, 0x67,
- 0x45, 0xa7, 0x4f, 0xad, 0x66, 0x51, 0xc2, 0xd9, 0x0d, 0xa0, 0x16, 0x4c, 0x37, 0x52, 0xad, 0x8e,
- 0xf4, 0xdf, 0xaa, 0x9a, 0xd0, 0x74, 0x8b, 0x69, 0xc2, 0xe8, 0x15, 0x18, 0x79, 0xd3, 0x0f, 0xd9,
- 0xf1, 0x2e, 0xd8, 0x6a, 0xe9, 0x08, 0x3e, 0xf2, 0xfa, 0x8d, 0x3a, 0x2b, 0xbf, 0x7f, 0x30, 0x37,
- 0x5a, 0xf3, 0x9b, 0xf2, 0x2f, 0x56, 0x15, 0xd0, 0x0f, 0x5a, 0x30, 0x9b, 0x7e, 0xac, 0xa9, 0x4e,
- 0x8f, 0xf7, 0xdf, 0x69, 0x5b, 0x34, 0x3a, 0xbb, 0x9c, 0x4b, 0x0e, 0x17, 0x34, 0x65, 0xff, 0xb2,
- 0xc5, 0x04, 0x75, 0x42, 0xd3, 0x44, 0xc2, 0x6e, 0xeb, 0x38, 0x32, 0xbb, 0x2e, 0x1b, 0x4a, 0xb0,
- 0x07, 0xb6, 0x90, 0xf8, 0x27, 0x16, 0xb3, 0x90, 0x38, 0x46, 0x57, 0x88, 0xd7, 0x61, 0x24, 0x92,
- 0x19, 0x77, 0x0b, 0x92, 0xd1, 0x6a, 0x9d, 0x62, 0x56, 0x22, 0x8a, 0xc9, 0x55, 0xc9, 0x75, 0x15,
- 0x19, 0xfb, 0xef, 0xf3, 0x19, 0x90, 0x90, 0x63, 0xd0, 0x35, 0x54, 0x4d, 0x5d, 0xc3, 0x5c, 0x8f,
- 0x2f, 0xc8, 0xd1, 0x39, 0xfc, 0x3d, 0xb3, 0xdf, 0x4c, 0xb8, 0xf3, 0x4e, 0x37, 0xcd, 0xb1, 0x3f,
- 0x6f, 0x01, 0xc4, 0x21, 0x9e, 0x99, 0x48, 0xda, 0x0f, 0x64, 0x5a, 0xcf, 0xac, 0x04, 0x56, 0x2f,
- 0x51, 0xb6, 0xd6, 0x8f, 0xfc, 0x86, 0xdf, 0x12, 0x9a, 0xb4, 0xc7, 0x62, 0x75, 0x07, 0x2f, 0xbf,
- 0xaf, 0xfd, 0xc6, 0x0a, 0x1b, 0xcd, 0xc9, 0x80, 0x72, 0xe5, 0x58, 0x01, 0x67, 0x04, 0x93, 0xfb,
- 0xa2, 0x05, 0x27, 0xb3, 0xec, 0x6a, 0xe9, 0x23, 0x89, 0x8b, 0xb9, 0x94, 0xd9, 0x94, 0x9a, 0xcd,
- 0x5b, 0xa2, 0x1c, 0x2b, 0x8c, 0xbe, 0x93, 0xd5, 0x1d, 0x2e, 0xb6, 0xf2, 0x0d, 0x18, 0xaf, 0x05,
- 0x44, 0xbb, 0x5c, 0x5f, 0xe5, 0x41, 0x0a, 0x78, 0x7f, 0x9e, 0x39, 0x74, 0x80, 0x02, 0xfb, 0x2b,
- 0x25, 0x38, 0xc9, 0xad, 0x0f, 0x16, 0xf6, 0x7c, 0xb7, 0x59, 0xf3, 0x9b, 0xc2, 0x7b, 0xea, 0x13,
- 0x30, 0xd6, 0xd1, 0x64, 0x93, 0x45, 0x71, 0x42, 0x75, 0x19, 0x66, 0x2c, 0x4d, 0xd1, 0x4b, 0xb1,
- 0x41, 0x0b, 0x35, 0x61, 0x8c, 0xec, 0xb9, 0x0d, 0xa5, 0xc2, 0x2e, 0x1d, 0xfa, 0xa2, 0x53, 0xad,
- 0x2c, 0x6b, 0x74, 0xb0, 0x41, 0xf5, 0x21, 0xa4, 0x90, 0xb6, 0xbf, 0x64, 0xc1, 0x23, 0x39, 0x51,
- 0x45, 0x69, 0x73, 0x77, 0x98, 0x9d, 0x87, 0x58, 0xb6, 0xaa, 0x39, 0x6e, 0xfd, 0x81, 0x05, 0x14,
- 0x7d, 0x0c, 0x80, 0x5b, 0x6f, 0xd0, 0x57, 0x7a, 0xaf, 0xf0, 0x8b, 0x46, 0xe4, 0x38, 0x2d, 0x08,
- 0x98, 0xac, 0x8f, 0x35, 0x5a, 0xf6, 0x17, 0x07, 0x60, 0x90, 0xa7, 0xbb, 0xaf, 0xc1, 0xf0, 0x0e,
- 0xcf, 0x13, 0x53, 0x38, 0x6f, 0x14, 0x57, 0xa6, 0x9e, 0x89, 0xe7, 0x4d, 0x2b, 0xc5, 0x92, 0x0c,
- 0x5a, 0x83, 0x13, 0x3c, 0x5d, 0x4f, 0xab, 0x4a, 0x5a, 0xce, 0xbe, 0x14, 0xfb, 0xf1, 0x24, 0xb0,
- 0x4a, 0xfc, 0xb9, 0x9a, 0x46, 0xc1, 0x59, 0xf5, 0xd0, 0xab, 0x30, 0x41, 0x9f, 0x61, 0x7e, 0x37,
- 0x92, 0x94, 0x78, 0xa2, 0x1e, 0xf5, 0xee, 0xdb, 0x30, 0xa0, 0x38, 0x81, 0x8d, 0x5e, 0x81, 0xf1,
- 0x4e, 0x4a, 0xc0, 0x39, 0x18, 0x4b, 0x02, 0x4c, 0xa1, 0xa6, 0x89, 0xcb, 0x4c, 0x6b, 0xbb, 0xcc,
- 0x90, 0x78, 0x63, 0x27, 0x20, 0xe1, 0x8e, 0xdf, 0x6a, 0x32, 0xf6, 0x6f, 0x50, 0x33, 0xad, 0x4d,
- 0xc0, 0x71, 0xaa, 0x06, 0xa5, 0xb2, 0xe5, 0xb8, 0xad, 0x6e, 0x40, 0x62, 0x2a, 0x43, 0x26, 0x95,
- 0x95, 0x04, 0x1c, 0xa7, 0x6a, 0xf4, 0x96, 0xdc, 0x0e, 0x1f, 0x8d, 0xe4, 0xd6, 0xfe, 0x4f, 0x16,
- 0x18, 0x53, 0xfb, 0x6d, 0x9c, 0x40, 0xe8, 0x4b, 0x16, 0x9c, 0xaa, 0x05, 0x3e, 0xbd, 0xa6, 0x64,
- 0x20, 0x2a, 0x65, 0x83, 0x3e, 0x2c, 0xfd, 0x73, 0x0b, 0x42, 0x36, 0x0a, 0x2b, 0x5d, 0x4e, 0xc1,
- 0x30, 0x03, 0xa9, 0x0b, 0x6f, 0x79, 0x49, 0x05, 0x5d, 0x86, 0x51, 0x91, 0xd7, 0x85, 0x99, 0x4a,
- 0xf3, 0xed, 0xc0, 0xcc, 0x56, 0xaa, 0x71, 0x31, 0xd6, 0x71, 0xec, 0x1f, 0x2a, 0xc1, 0x89, 0x0c,
- 0x5f, 0x17, 0x7e, 0x11, 0x6c, 0xbb, 0x61, 0xa4, 0x92, 0x87, 0x6a, 0x17, 0x01, 0x2f, 0xc7, 0x0a,
- 0x83, 0x9e, 0x36, 0xfc, 0xaa, 0x49, 0x5e, 0x2f, 0xc2, 0x96, 0x5c, 0x40, 0x0f, 0x99, 0x86, 0xf3,
- 0x3c, 0x0c, 0x74, 0x43, 0x22, 0x83, 0xad, 0xaa, 0x8b, 0x97, 0x29, 0x26, 0x19, 0x84, 0x3e, 0x84,
- 0xb6, 0x95, 0x8e, 0x4f, 0x7b, 0x08, 0x71, 0x2d, 0x1f, 0x87, 0xd1, 0xce, 0x45, 0xc4, 0x73, 0xbc,
- 0x48, 0x3c, 0x97, 0xe2, 0xa8, 0x81, 0xac, 0x14, 0x0b, 0xa8, 0xfd, 0x85, 0x32, 0x9c, 0xc9, 0xf5,
- 0x7e, 0xa3, 0x5d, 0x6f, 0xfb, 0x9e, 0x1b, 0xf9, 0xca, 0x1e, 0x88, 0x47, 0x0a, 0x24, 0x9d, 0x9d,
- 0x35, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x00, 0x83, 0x4c, 0xac, 0x99, 0x4a, 0xa3, 0xba, 0x58, 0xe5,
- 0xa1, 0xa3, 0x38, 0xb8, 0xef, 0x14, 0xd5, 0x4f, 0x50, 0x1e, 0xc4, 0x6f, 0x25, 0xaf, 0x04, 0xda,
- 0x5d, 0xdf, 0x6f, 0x61, 0x06, 0x44, 0xef, 0x13, 0xe3, 0x95, 0x30, 0x80, 0xc1, 0x4e, 0xd3, 0x0f,
- 0xb5, 0x41, 0x7b, 0x0a, 0x86, 0x77, 0xc9, 0x7e, 0xe0, 0x7a, 0xdb, 0x49, 0xc3, 0xa8, 0x6b, 0xbc,
- 0x18, 0x4b, 0xb8, 0x99, 0xf7, 0x6f, 0xf8, 0xa8, 0x73, 0x4b, 0x8f, 0xf4, 0x64, 0x30, 0x7e, 0xa4,
- 0x0c, 0x93, 0x78, 0xb1, 0xfa, 0xee, 0x44, 0xdc, 0x4c, 0x4f, 0xc4, 0x51, 0xe7, 0x96, 0xee, 0x3d,
- 0x1b, 0xbf, 0x60, 0xc1, 0x24, 0xcb, 0x2e, 0x23, 0x7c, 0xdc, 0x5d, 0xdf, 0x3b, 0x06, 0x66, 0xfe,
- 0x09, 0x18, 0x0c, 0x68, 0xa3, 0xc9, 0xfc, 0xa9, 0xac, 0x27, 0x98, 0xc3, 0xd0, 0x63, 0x30, 0xc0,
- 0xba, 0x40, 0x27, 0x6f, 0x8c, 0x5f, 0x0f, 0x55, 0x27, 0x72, 0x30, 0x2b, 0x65, 0x81, 0x93, 0x30,
- 0xe9, 0xb4, 0x5c, 0xde, 0xe9, 0x58, 0xe9, 0xfc, 0xce, 0xf0, 0x8b, 0xcf, 0xec, 0xda, 0xdb, 0x0b,
- 0x9c, 0x94, 0x4d, 0xb2, 0xf8, 0xa1, 0xfc, 0xc7, 0x25, 0x38, 0x97, 0x59, 0xaf, 0xef, 0xc0, 0x49,
- 0xc5, 0xb5, 0x1f, 0x66, 0xfe, 0x90, 0xf2, 0x31, 0x9a, 0x9d, 0x0e, 0xf4, 0xcb, 0xbf, 0x0f, 0xf6,
- 0x11, 0xcf, 0x28, 0x73, 0xc8, 0xde, 0x21, 0xf1, 0x8c, 0x32, 0xfb, 0x96, 0xf3, 0xd0, 0xff, 0x8b,
- 0x52, 0xce, 0xb7, 0xb0, 0x27, 0xff, 0x45, 0x7a, 0xce, 0x30, 0x60, 0x28, 0x9f, 0xd1, 0xfc, 0x8c,
- 0xe1, 0x65, 0x58, 0x41, 0xd1, 0x02, 0x4c, 0xb6, 0x5d, 0x8f, 0x1e, 0x3e, 0xfb, 0x26, 0x33, 0xad,
- 0xc2, 0xcd, 0xad, 0x99, 0x60, 0x9c, 0xc4, 0x47, 0xae, 0x16, 0xeb, 0x88, 0x7f, 0xdd, 0x2b, 0x87,
- 0xda, 0x75, 0xf3, 0xa6, 0x42, 0x5e, 0x8d, 0x62, 0x46, 0xdc, 0xa3, 0x35, 0x4d, 0xd2, 0x53, 0xee,
- 0x5f, 0xd2, 0x33, 0x96, 0x2d, 0xe5, 0x99, 0x7d, 0x05, 0xc6, 0x1f, 0x58, 0xb4, 0x6f, 0x7f, 0xbd,
- 0x0c, 0x8f, 0x16, 0x6c, 0x7b, 0x7e, 0xd6, 0x1b, 0x73, 0xa0, 0x9d, 0xf5, 0xa9, 0x79, 0xa8, 0xc1,
- 0xc9, 0xad, 0x6e, 0xab, 0xb5, 0xcf, 0xbc, 0x31, 0x48, 0x53, 0x62, 0x08, 0x9e, 0x52, 0x8a, 0x37,
- 0x4e, 0xae, 0x64, 0xe0, 0xe0, 0xcc, 0x9a, 0xf4, 0x91, 0x44, 0x6f, 0x92, 0x7d, 0x45, 0x2a, 0xf1,
- 0x48, 0xc2, 0x3a, 0x10, 0x9b, 0xb8, 0xe8, 0x0a, 0x4c, 0x3b, 0x7b, 0x8e, 0xcb, 0x03, 0x46, 0x4b,
- 0x02, 0xfc, 0x95, 0xa4, 0x24, 0xb2, 0x0b, 0x49, 0x04, 0x9c, 0xae, 0x83, 0x5e, 0x03, 0xe4, 0x6f,
- 0x32, 0x9b, 0xed, 0xe6, 0x15, 0xe2, 0x09, 0xbd, 0x29, 0x9b, 0xbb, 0x72, 0x7c, 0x24, 0xdc, 0x48,
- 0x61, 0xe0, 0x8c, 0x5a, 0x89, 0x98, 0x3e, 0x43, 0xf9, 0x31, 0x7d, 0x8a, 0xcf, 0xc5, 0x9e, 0xa9,
- 0x6b, 0xfe, 0xbd, 0x45, 0xaf, 0x2f, 0xce, 0xe4, 0x9b, 0x21, 0x30, 0x5f, 0x61, 0x76, 0x8f, 0x5c,
- 0x5a, 0xab, 0x45, 0x40, 0x39, 0xa5, 0xd9, 0x3d, 0xc6, 0x40, 0x6c, 0xe2, 0xf2, 0x05, 0x11, 0xc6,
- 0x8e, 0xb7, 0x06, 0x8b, 0x2f, 0xe2, 0x74, 0x29, 0x0c, 0xf4, 0x71, 0x18, 0x6e, 0xba, 0x7b, 0x6e,
- 0x28, 0x64, 0x55, 0x87, 0x56, 0x0c, 0xc5, 0xe7, 0x60, 0x95, 0x93, 0xc1, 0x92, 0x9e, 0xfd, 0x23,
- 0x25, 0x18, 0x97, 0x2d, 0xbe, 0xde, 0xf5, 0x23, 0xe7, 0x18, 0xae, 0xe5, 0x2b, 0xc6, 0xb5, 0xfc,
- 0xbe, 0xa2, 0x60, 0x65, 0xac, 0x4b, 0xb9, 0xd7, 0xf1, 0x8d, 0xc4, 0x75, 0xfc, 0x64, 0x6f, 0x52,
- 0xc5, 0xd7, 0xf0, 0x3f, 0xb0, 0x60, 0xda, 0xc0, 0x3f, 0x86, 0xdb, 0x60, 0xc5, 0xbc, 0x0d, 0x1e,
- 0xef, 0xf9, 0x0d, 0x39, 0xb7, 0xc0, 0xf7, 0x97, 0x13, 0x7d, 0x67, 0xa7, 0xff, 0x9b, 0x30, 0xb0,
- 0xe3, 0x04, 0xcd, 0xa2, 0xe4, 0x0c, 0xa9, 0x4a, 0xf3, 0x57, 0x9d, 0x40, 0x28, 0x8e, 0x9f, 0x91,
- 0xa3, 0x4e, 0x8b, 0x7a, 0x2a, 0x8d, 0x59, 0x53, 0xe8, 0x25, 0x18, 0x0a, 0x1b, 0x7e, 0x47, 0xf9,
- 0x62, 0x9c, 0x67, 0x03, 0xcd, 0x4a, 0xee, 0x1f, 0xcc, 0x21, 0xb3, 0x39, 0x5a, 0x8c, 0x05, 0x3e,
- 0xfa, 0x04, 0x8c, 0xb3, 0x5f, 0xca, 0x8a, 0xab, 0x9c, 0x2f, 0x50, 0xa8, 0xeb, 0x88, 0xdc, 0xc4,
- 0xd1, 0x28, 0xc2, 0x26, 0xa9, 0xd9, 0x6d, 0xa8, 0xa8, 0xcf, 0x7a, 0xa8, 0x9a, 0xd7, 0x7f, 0x53,
- 0x86, 0x13, 0x19, 0x6b, 0x0e, 0x85, 0xc6, 0x4c, 0x5c, 0xee, 0x73, 0xa9, 0xbe, 0xcd, 0xb9, 0x08,
- 0xd9, 0x6b, 0xa8, 0x29, 0xd6, 0x56, 0xdf, 0x8d, 0xde, 0x0c, 0x49, 0xb2, 0x51, 0x5a, 0xd4, 0xbb,
- 0x51, 0xda, 0xd8, 0xb1, 0x0d, 0x35, 0x6d, 0x48, 0xf5, 0xf4, 0xa1, 0xce, 0xe9, 0x9f, 0x95, 0xe1,
- 0x64, 0x56, 0xfc, 0x44, 0xf4, 0xd9, 0x44, 0x6a, 0xd0, 0x17, 0xfa, 0x8d, 0xbc, 0xc8, 0xf3, 0x85,
- 0x8a, 0x90, 0x6e, 0xf3, 0x66, 0xb2, 0xd0, 0x9e, 0xc3, 0x2c, 0xda, 0x64, 0x41, 0x25, 0x02, 0x9e,
- 0xd2, 0x55, 0x1e, 0x1f, 0x1f, 0xec, 0xbb, 0x03, 0x22, 0x17, 0x6c, 0x98, 0xb0, 0x10, 0x91, 0xc5,
- 0xbd, 0x2d, 0x44, 0x64, 0xcb, 0xb3, 0x2e, 0x8c, 0x6a, 0x5f, 0xf3, 0x50, 0x67, 0x7c, 0x97, 0xde,
- 0x56, 0x5a, 0xbf, 0x1f, 0xea, 0xac, 0x7f, 0xc9, 0x82, 0x84, 0xd3, 0x80, 0x12, 0x8b, 0x59, 0xb9,
- 0x62, 0xb1, 0xf3, 0x30, 0x10, 0xf8, 0x2d, 0x92, 0xcc, 0xa1, 0x89, 0xfd, 0x16, 0xc1, 0x0c, 0x42,
- 0x31, 0xa2, 0x58, 0xd8, 0x31, 0xa6, 0x3f, 0xe4, 0xc4, 0x13, 0xed, 0x09, 0x18, 0x6c, 0x91, 0x3d,
- 0xd2, 0x4a, 0xa6, 0x3a, 0xba, 0x4e, 0x0b, 0x31, 0x87, 0xd9, 0xbf, 0x30, 0x00, 0x67, 0x0b, 0xc3,
- 0xb2, 0xd0, 0xe7, 0xd0, 0xb6, 0x13, 0x91, 0x3b, 0xce, 0x7e, 0x32, 0x27, 0xc9, 0x15, 0x5e, 0x8c,
- 0x25, 0x9c, 0xf9, 0x82, 0xf1, 0xd0, 0xe2, 0x09, 0x21, 0xa2, 0x88, 0x28, 0x2e, 0xa0, 0xa6, 0x50,
- 0xaa, 0x7c, 0x14, 0x42, 0xa9, 0xe7, 0x00, 0xc2, 0xb0, 0xc5, 0x4d, 0xab, 0x9a, 0xc2, 0xc9, 0x2c,
- 0x0e, 0x41, 0x5f, 0xbf, 0x2e, 0x20, 0x58, 0xc3, 0x42, 0x55, 0x98, 0xea, 0x04, 0x7e, 0xc4, 0x65,
- 0xb2, 0x55, 0x6e, 0x7d, 0x38, 0x68, 0x46, 0xc4, 0xa8, 0x25, 0xe0, 0x38, 0x55, 0x03, 0xbd, 0x08,
- 0xa3, 0x22, 0x4a, 0x46, 0xcd, 0xf7, 0x5b, 0x42, 0x0c, 0xa4, 0x0c, 0xf2, 0xea, 0x31, 0x08, 0xeb,
- 0x78, 0x5a, 0x35, 0x26, 0xe8, 0x1d, 0xce, 0xac, 0xc6, 0x85, 0xbd, 0x1a, 0x5e, 0x22, 0x96, 0xea,
- 0x48, 0x5f, 0xb1, 0x54, 0x63, 0xc1, 0x58, 0xa5, 0x6f, 0xcd, 0x21, 0xf4, 0x14, 0x25, 0xfd, 0xdc,
- 0x00, 0x9c, 0x10, 0x0b, 0xe7, 0x61, 0x2f, 0x97, 0x9b, 0xe9, 0xe5, 0x72, 0x14, 0xa2, 0xb3, 0x77,
- 0xd7, 0xcc, 0x71, 0xaf, 0x99, 0x1f, 0xb5, 0xc0, 0x64, 0xaf, 0xd0, 0xff, 0x95, 0x9b, 0xd4, 0xe9,
- 0xc5, 0x5c, 0x76, 0x4d, 0xc5, 0xe5, 0x7c, 0x9b, 0xe9, 0x9d, 0xec, 0x7f, 0x67, 0xc1, 0xe3, 0x3d,
- 0x29, 0xa2, 0x65, 0xa8, 0x30, 0x1e, 0x50, 0x7b, 0x9d, 0x3d, 0xa9, 0xac, 0x93, 0x25, 0x20, 0x87,
- 0x25, 0x8d, 0x6b, 0xa2, 0xe5, 0x54, 0xf6, 0xac, 0xa7, 0x32, 0xb2, 0x67, 0x9d, 0x32, 0x86, 0xe7,
- 0x01, 0xd3, 0x67, 0xfd, 0x30, 0xbd, 0x71, 0x0c, 0xcf, 0x20, 0xf4, 0x41, 0x43, 0xec, 0x67, 0x27,
- 0xc4, 0x7e, 0xc8, 0xc4, 0xd6, 0xee, 0x90, 0x8f, 0xc2, 0x14, 0x0b, 0x9f, 0xc5, 0x6c, 0xe5, 0x85,
- 0xcf, 0x52, 0x29, 0xb6, 0x87, 0xbd, 0x9e, 0x80, 0xe1, 0x14, 0xb6, 0xfd, 0x47, 0x65, 0x18, 0xe2,
- 0xdb, 0xef, 0x18, 0xde, 0x84, 0x4f, 0x43, 0xc5, 0x6d, 0xb7, 0xbb, 0x3c, 0x21, 0xd2, 0x20, 0xf7,
- 0x6e, 0xa6, 0xf3, 0xb4, 0x2a, 0x0b, 0x71, 0x0c, 0x47, 0x2b, 0x42, 0xe2, 0x5c, 0x10, 0xa1, 0x93,
- 0x77, 0x7c, 0xbe, 0xea, 0x44, 0x0e, 0x67, 0x70, 0xd4, 0x3d, 0x1b, 0xcb, 0xa6, 0xd1, 0xa7, 0x00,
- 0xc2, 0x28, 0x70, 0xbd, 0x6d, 0x5a, 0x26, 0x02, 0x03, 0xbf, 0xbf, 0x80, 0x5a, 0x5d, 0x21, 0x73,
- 0x9a, 0xf1, 0x99, 0xa3, 0x00, 0x58, 0xa3, 0x88, 0xe6, 0x8d, 0x9b, 0x7e, 0x36, 0x31, 0x77, 0xc0,
- 0xa9, 0xc6, 0x73, 0x36, 0xfb, 0x21, 0xa8, 0x28, 0xe2, 0xbd, 0xe4, 0x4f, 0x63, 0x3a, 0x5b, 0xf4,
- 0x11, 0x98, 0x4c, 0xf4, 0xed, 0x50, 0xe2, 0xab, 0x5f, 0xb4, 0x60, 0x92, 0x77, 0x66, 0xd9, 0xdb,
- 0x13, 0xb7, 0xc1, 0x5b, 0x70, 0xb2, 0x95, 0x71, 0x2a, 0x8b, 0xe9, 0xef, 0xff, 0x14, 0x57, 0xe2,
- 0xaa, 0x2c, 0x28, 0xce, 0x6c, 0x03, 0x5d, 0xa4, 0x3b, 0x8e, 0x9e, 0xba, 0x4e, 0x4b, 0x38, 0x3b,
- 0x8f, 0xf1, 0xdd, 0xc6, 0xcb, 0xb0, 0x82, 0xda, 0xbf, 0x6b, 0xc1, 0x34, 0xef, 0xf9, 0x35, 0xb2,
- 0xaf, 0xce, 0xa6, 0x6f, 0x66, 0xdf, 0x45, 0x2a, 0xbe, 0x52, 0x4e, 0x2a, 0x3e, 0xfd, 0xd3, 0xca,
- 0x85, 0x9f, 0xf6, 0x15, 0x0b, 0xc4, 0x0a, 0x39, 0x06, 0x21, 0xc4, 0x77, 0x9a, 0x42, 0x88, 0xd9,
- 0xfc, 0x4d, 0x90, 0x23, 0x7d, 0xf8, 0x73, 0x0b, 0xa6, 0x38, 0x42, 0xac, 0x2d, 0xff, 0xa6, 0xce,
- 0x43, 0x3f, 0x09, 0xbb, 0xaf, 0x91, 0xfd, 0x0d, 0xbf, 0xe6, 0x44, 0x3b, 0xd9, 0x1f, 0x65, 0x4c,
- 0xd6, 0x40, 0xe1, 0x64, 0x35, 0xe5, 0x06, 0x32, 0x32, 0xd5, 0xf4, 0x88, 0x00, 0x71, 0xd8, 0x4c,
- 0x35, 0xf6, 0x37, 0x2c, 0x40, 0xbc, 0x19, 0x83, 0x71, 0xa3, 0xec, 0x10, 0x2b, 0xd5, 0x2e, 0xba,
- 0xf8, 0x68, 0x52, 0x10, 0xac, 0x61, 0x1d, 0xc9, 0xf0, 0x24, 0x4c, 0x1e, 0xca, 0xbd, 0x4d, 0x1e,
- 0x0e, 0x31, 0xa2, 0xff, 0x72, 0x08, 0x92, 0xde, 0x51, 0xe8, 0x16, 0x8c, 0x35, 0x9c, 0x8e, 0xb3,
- 0xe9, 0xb6, 0xdc, 0xc8, 0x25, 0x61, 0x91, 0x45, 0xd3, 0x92, 0x86, 0x27, 0x94, 0xd4, 0x5a, 0x09,
- 0x36, 0xe8, 0xa0, 0x79, 0x80, 0x4e, 0xe0, 0xee, 0xb9, 0x2d, 0xb2, 0xcd, 0x64, 0x25, 0x2c, 0xbc,
- 0x02, 0x37, 0xaf, 0x92, 0xa5, 0x58, 0xc3, 0xc8, 0x70, 0x45, 0x2f, 0x3f, 0x64, 0x57, 0x74, 0x38,
- 0x36, 0x57, 0xf4, 0x81, 0x43, 0xb9, 0xa2, 0x8f, 0x1c, 0xda, 0x15, 0x7d, 0xb0, 0x2f, 0x57, 0x74,
- 0x0c, 0xa7, 0x25, 0xef, 0x49, 0xff, 0xaf, 0xb8, 0x2d, 0x22, 0x1e, 0x1c, 0x3c, 0x26, 0xc4, 0xec,
- 0xbd, 0x83, 0xb9, 0xd3, 0x38, 0x13, 0x03, 0xe7, 0xd4, 0x44, 0x1f, 0x83, 0x19, 0xa7, 0xd5, 0xf2,
- 0xef, 0xa8, 0x49, 0x5d, 0x0e, 0x1b, 0x4e, 0x8b, 0x2b, 0x21, 0x86, 0x19, 0xd5, 0xc7, 0xee, 0x1d,
- 0xcc, 0xcd, 0x2c, 0xe4, 0xe0, 0xe0, 0xdc, 0xda, 0xe8, 0xc3, 0x50, 0xe9, 0x04, 0x7e, 0x63, 0x4d,
- 0x73, 0xe1, 0x3c, 0x47, 0x07, 0xb0, 0x26, 0x0b, 0xef, 0x1f, 0xcc, 0x8d, 0xab, 0x3f, 0xec, 0xc2,
- 0x8f, 0x2b, 0x64, 0xf8, 0x96, 0x8f, 0x1e, 0xa9, 0x6f, 0xf9, 0x2e, 0x9c, 0xa8, 0x93, 0xc0, 0x75,
- 0x5a, 0xee, 0x5b, 0x94, 0x5f, 0x96, 0xe7, 0xd3, 0x06, 0x54, 0x82, 0xc4, 0x89, 0xdc, 0x57, 0xd4,
- 0x4c, 0x2d, 0x65, 0x88, 0x3c, 0x81, 0x63, 0x42, 0xf6, 0xff, 0xb4, 0x60, 0x58, 0x78, 0x43, 0x1d,
- 0x03, 0xd7, 0xb8, 0x60, 0x68, 0x12, 0xe6, 0xb2, 0x07, 0x8c, 0x75, 0x26, 0x57, 0x87, 0xb0, 0x9a,
- 0xd0, 0x21, 0x3c, 0x5e, 0x44, 0xa4, 0x58, 0x7b, 0xf0, 0x57, 0xca, 0x94, 0x7b, 0x37, 0xfc, 0x72,
- 0x1f, 0xfe, 0x10, 0xac, 0xc3, 0x70, 0x28, 0xfc, 0x42, 0x4b, 0xf9, 0x5e, 0x09, 0xc9, 0x49, 0x8c,
- 0xed, 0xd8, 0x84, 0x27, 0xa8, 0x24, 0x92, 0xe9, 0x70, 0x5a, 0x7e, 0x88, 0x0e, 0xa7, 0xbd, 0x3c,
- 0x97, 0x07, 0x8e, 0xc2, 0x73, 0xd9, 0xfe, 0x1a, 0xbb, 0x39, 0xf5, 0xf2, 0x63, 0x60, 0xaa, 0xae,
- 0x98, 0x77, 0xac, 0x5d, 0xb0, 0xb2, 0x44, 0xa7, 0x72, 0x98, 0xab, 0x9f, 0xb7, 0xe0, 0x6c, 0xc6,
- 0x57, 0x69, 0x9c, 0xd6, 0x33, 0x30, 0xe2, 0x74, 0x9b, 0xae, 0xda, 0xcb, 0x9a, 0x3e, 0x71, 0x41,
- 0x94, 0x63, 0x85, 0x81, 0x96, 0x60, 0x9a, 0xdc, 0xed, 0xb8, 0x5c, 0x95, 0xaa, 0x1b, 0xf0, 0x96,
- 0xb9, 0x0b, 0xdd, 0x72, 0x12, 0x88, 0xd3, 0xf8, 0x2a, 0x5a, 0x4c, 0x39, 0x37, 0x5a, 0xcc, 0xdf,
- 0xb2, 0x60, 0x54, 0x79, 0x46, 0x3e, 0xf4, 0xd1, 0xfe, 0xa8, 0x39, 0xda, 0x8f, 0x16, 0x8c, 0x76,
- 0xce, 0x30, 0xff, 0x76, 0x49, 0xf5, 0xb7, 0xe6, 0x07, 0x51, 0x1f, 0x1c, 0xdc, 0x83, 0x3b, 0x1f,
- 0x5c, 0x86, 0x51, 0xa7, 0xd3, 0x91, 0x00, 0x69, 0x83, 0xc6, 0x62, 0x20, 0xc7, 0xc5, 0x58, 0xc7,
- 0x51, 0xbe, 0x10, 0xe5, 0x5c, 0x5f, 0x88, 0x26, 0x40, 0xe4, 0x04, 0xdb, 0x24, 0xa2, 0x65, 0x22,
- 0x1c, 0x5c, 0xfe, 0x79, 0xd3, 0x8d, 0xdc, 0xd6, 0xbc, 0xeb, 0x45, 0x61, 0x14, 0xcc, 0xaf, 0x7a,
- 0xd1, 0x8d, 0x80, 0x3f, 0x21, 0xb5, 0x78, 0x4b, 0x8a, 0x16, 0xd6, 0xe8, 0xca, 0x28, 0x00, 0xac,
- 0x8d, 0x41, 0xd3, 0x98, 0x61, 0x5d, 0x94, 0x63, 0x85, 0x61, 0x7f, 0x88, 0xdd, 0x3e, 0x6c, 0x4c,
- 0x0f, 0x17, 0x6b, 0xe8, 0xef, 0x8c, 0xa9, 0xd9, 0x60, 0x9a, 0xcc, 0xaa, 0x1e, 0xd1, 0xa8, 0xf8,
- 0xb0, 0xa7, 0x0d, 0xeb, 0x9e, 0x79, 0x71, 0xd8, 0x23, 0xf4, 0x5d, 0x29, 0x03, 0x95, 0x67, 0x7b,
- 0xdc, 0x1a, 0x87, 0x30, 0x49, 0x61, 0x09, 0x51, 0x58, 0xba, 0x88, 0xd5, 0x9a, 0xd8, 0x17, 0x5a,
- 0x42, 0x14, 0x01, 0xc0, 0x31, 0x0e, 0x65, 0xa6, 0xd4, 0x9f, 0x70, 0x06, 0xc5, 0x81, 0x41, 0x15,
- 0x76, 0x88, 0x35, 0x0c, 0x74, 0x49, 0x08, 0x14, 0xb8, 0x5e, 0xe0, 0xd1, 0x84, 0x40, 0x41, 0x0e,
- 0x97, 0x26, 0x05, 0xba, 0x0c, 0xa3, 0x2a, 0x07, 0x76, 0x8d, 0xa7, 0x22, 0x12, 0xcb, 0x6c, 0x39,
- 0x2e, 0xc6, 0x3a, 0x0e, 0xda, 0x80, 0xc9, 0x90, 0xcb, 0xd9, 0x54, 0xb4, 0x66, 0x2e, 0xaf, 0x7c,
- 0xbf, 0xb4, 0x02, 0xaa, 0x9b, 0xe0, 0xfb, 0xac, 0x88, 0x9f, 0x4e, 0xd2, 0x53, 0x3f, 0x49, 0x02,
- 0xbd, 0x0a, 0x13, 0x2d, 0xdf, 0x69, 0x2e, 0x3a, 0x2d, 0xc7, 0x6b, 0xb0, 0xf1, 0x19, 0x31, 0x53,
- 0xa9, 0x5e, 0x37, 0xa0, 0x38, 0x81, 0x4d, 0x99, 0x37, 0xbd, 0x44, 0x44, 0x18, 0x77, 0xbc, 0x6d,
- 0x12, 0x8a, 0x8c, 0xc6, 0x8c, 0x79, 0xbb, 0x9e, 0x83, 0x83, 0x73, 0x6b, 0xa3, 0x97, 0x60, 0x4c,
- 0x7e, 0xbe, 0x16, 0xd8, 0x22, 0x76, 0x2b, 0xd1, 0x60, 0xd8, 0xc0, 0x44, 0x77, 0xe0, 0x94, 0xfc,
- 0xbf, 0x11, 0x38, 0x5b, 0x5b, 0x6e, 0x43, 0x78, 0x7b, 0x73, 0xff, 0xd3, 0x05, 0xe9, 0x24, 0xb9,
- 0x9c, 0x85, 0x74, 0xff, 0x60, 0xee, 0xbc, 0x18, 0xb5, 0x4c, 0x38, 0x9b, 0xc4, 0x6c, 0xfa, 0x68,
- 0x0d, 0x4e, 0xec, 0x10, 0xa7, 0x15, 0xed, 0x2c, 0xed, 0x90, 0xc6, 0xae, 0xdc, 0x74, 0x2c, 0x5c,
- 0x86, 0xe6, 0x82, 0x71, 0x35, 0x8d, 0x82, 0xb3, 0xea, 0xa1, 0x37, 0x60, 0xa6, 0xd3, 0xdd, 0x6c,
- 0xb9, 0xe1, 0xce, 0xba, 0x1f, 0x31, 0x53, 0x20, 0x95, 0x52, 0x5b, 0xc4, 0xd5, 0x50, 0x01, 0x49,
- 0x6a, 0x39, 0x78, 0x38, 0x97, 0x02, 0x7a, 0x0b, 0x4e, 0x25, 0x16, 0x83, 0x88, 0x2c, 0x30, 0x91,
- 0x9f, 0xaf, 0xa1, 0x9e, 0x55, 0x41, 0x04, 0xe9, 0xc8, 0x02, 0xe1, 0xec, 0x26, 0xd0, 0xcb, 0x00,
- 0x6e, 0x67, 0xc5, 0x69, 0xbb, 0x2d, 0xfa, 0x5c, 0x3c, 0xc1, 0xd6, 0x09, 0x7d, 0x3a, 0xc0, 0x6a,
- 0x4d, 0x96, 0xd2, 0xf3, 0x59, 0xfc, 0xdb, 0xc7, 0x1a, 0x36, 0xaa, 0xc1, 0x84, 0xf8, 0xb7, 0x2f,
- 0xa6, 0x75, 0x5a, 0x39, 0xf1, 0x4f, 0xc8, 0x1a, 0x6a, 0x2e, 0x91, 0x59, 0xc2, 0x66, 0x2f, 0x51,
- 0x1f, 0x6d, 0xc3, 0x59, 0x99, 0x7f, 0x4b, 0x5f, 0xa7, 0x72, 0x1e, 0x42, 0x96, 0x28, 0x61, 0x84,
- 0x7b, 0x78, 0x2c, 0x14, 0x21, 0xe2, 0x62, 0x3a, 0xf4, 0x7e, 0xd7, 0x97, 0x3b, 0xf7, 0x81, 0x3d,
- 0xc5, 0xcd, 0x93, 0xe8, 0xfd, 0x7e, 0x3d, 0x09, 0xc4, 0x69, 0x7c, 0x14, 0xc2, 0x29, 0xd7, 0xcb,
- 0x5a, 0xdd, 0xa7, 0x19, 0xa1, 0x8f, 0x70, 0xf7, 0xdf, 0xe2, 0x95, 0x9d, 0x09, 0xe7, 0x2b, 0x3b,
- 0x93, 0xf6, 0xdb, 0xb3, 0xc2, 0xfb, 0x1d, 0x8b, 0xd6, 0xd6, 0x38, 0x75, 0xf4, 0x69, 0x18, 0xd3,
- 0x3f, 0x4c, 0x70, 0x1d, 0x17, 0xb2, 0x19, 0x59, 0xed, 0x7c, 0xe0, 0x7c, 0xbe, 0x3a, 0x03, 0x74,
- 0x18, 0x36, 0x28, 0xa2, 0x46, 0x86, 0xa3, 0xfc, 0xa5, 0xfe, 0xb8, 0x9a, 0xfe, 0x8d, 0xd0, 0x08,
- 0x64, 0x2f, 0x7b, 0x74, 0x1d, 0x46, 0x1a, 0x2d, 0x97, 0x78, 0xd1, 0x6a, 0xad, 0x28, 0x1a, 0xde,
- 0x92, 0xc0, 0x11, 0xfb, 0x48, 0xe4, 0x3d, 0xe0, 0x65, 0x58, 0x51, 0xb0, 0x7f, 0xad, 0x04, 0x73,
- 0x3d, 0x92, 0x68, 0x24, 0x54, 0x52, 0x56, 0x5f, 0x2a, 0xa9, 0x05, 0x99, 0x37, 0x7e, 0x3d, 0x21,
- 0xed, 0x4a, 0xe4, 0x84, 0x8f, 0x65, 0x5e, 0x49, 0xfc, 0xbe, 0x5d, 0x04, 0x74, 0xad, 0xd6, 0x40,
- 0x4f, 0x27, 0x17, 0x43, 0x9b, 0x3d, 0xd8, 0xff, 0x13, 0x38, 0x57, 0x33, 0x69, 0x7f, 0xad, 0x04,
- 0xa7, 0xd4, 0x10, 0x7e, 0xfb, 0x0e, 0xdc, 0xcd, 0xf4, 0xc0, 0x1d, 0x81, 0x5e, 0xd7, 0xbe, 0x01,
- 0x43, 0x3c, 0xbc, 0x5f, 0x1f, 0xac, 0xf7, 0x13, 0x66, 0xf8, 0x5c, 0xc5, 0xed, 0x19, 0x21, 0x74,
- 0x7f, 0xd0, 0x82, 0xc9, 0x84, 0xb7, 0x18, 0xc2, 0x9a, 0x4b, 0xf1, 0x83, 0xb0, 0xc7, 0x59, 0x8c,
- 0xf7, 0x79, 0x18, 0xd8, 0xf1, 0xc3, 0x28, 0x69, 0xf4, 0x71, 0xd5, 0x0f, 0x23, 0xcc, 0x20, 0xf6,
- 0xef, 0x59, 0x30, 0xb8, 0xe1, 0xb8, 0x5e, 0x24, 0x15, 0x04, 0x56, 0x8e, 0x82, 0xa0, 0x9f, 0xef,
- 0x42, 0x2f, 0xc2, 0x10, 0xd9, 0xda, 0x22, 0x8d, 0x48, 0xcc, 0xaa, 0x8c, 0xc7, 0x30, 0xb4, 0xcc,
- 0x4a, 0x29, 0x2f, 0xc8, 0x1a, 0xe3, 0x7f, 0xb1, 0x40, 0x46, 0xb7, 0xa1, 0x12, 0xb9, 0x6d, 0xb2,
- 0xd0, 0x6c, 0x0a, 0xb5, 0xf9, 0x03, 0xc4, 0x94, 0xd8, 0x90, 0x04, 0x70, 0x4c, 0xcb, 0xfe, 0x42,
- 0x09, 0x20, 0x8e, 0x8b, 0xd4, 0xeb, 0x13, 0x17, 0x53, 0x0a, 0xd5, 0x0b, 0x19, 0x0a, 0x55, 0x14,
- 0x13, 0xcc, 0xd0, 0xa6, 0xaa, 0x61, 0x2a, 0xf7, 0x35, 0x4c, 0x03, 0x87, 0x19, 0xa6, 0x25, 0x98,
- 0x8e, 0xe3, 0x3a, 0x99, 0x61, 0xed, 0xd8, 0xf5, 0xb9, 0x91, 0x04, 0xe2, 0x34, 0xbe, 0x4d, 0xe0,
- 0xbc, 0x0a, 0x6f, 0x23, 0x6e, 0x34, 0x66, 0x95, 0xad, 0x2b, 0xa8, 0x7b, 0x8c, 0x53, 0xac, 0x31,
- 0x2e, 0xe5, 0x6a, 0x8c, 0x7f, 0xca, 0x82, 0x93, 0xc9, 0x76, 0x98, 0x13, 0xf2, 0xe7, 0x2d, 0x38,
- 0xc5, 0xf4, 0xe6, 0xac, 0xd5, 0xb4, 0x96, 0xfe, 0x85, 0xc2, 0x90, 0x3d, 0x39, 0x3d, 0x8e, 0x03,
- 0x7f, 0xac, 0x65, 0x91, 0xc6, 0xd9, 0x2d, 0xda, 0xff, 0xb6, 0x04, 0x33, 0x79, 0xb1, 0x7e, 0x98,
- 0xd3, 0x86, 0x73, 0xb7, 0xbe, 0x4b, 0xee, 0x08, 0xd3, 0xf8, 0xd8, 0x69, 0x83, 0x17, 0x63, 0x09,
- 0x4f, 0xe6, 0x45, 0x28, 0xf5, 0x99, 0x17, 0x61, 0x07, 0xa6, 0xef, 0xec, 0x10, 0xef, 0xa6, 0x17,
- 0x3a, 0x91, 0x1b, 0x6e, 0xb9, 0x4c, 0xc7, 0xcc, 0xd7, 0x8d, 0x4c, 0xa6, 0x3a, 0x7d, 0x3b, 0x89,
- 0x70, 0xff, 0x60, 0xee, 0xac, 0x51, 0x10, 0x77, 0x99, 0x1f, 0x24, 0x38, 0x4d, 0x34, 0x9d, 0x56,
- 0x62, 0xe0, 0x21, 0xa6, 0x95, 0xb0, 0x3f, 0x6f, 0xc1, 0x99, 0xdc, 0xcc, 0xc2, 0xe8, 0x22, 0x8c,
- 0x38, 0x1d, 0x97, 0x8b, 0xe9, 0xc5, 0x31, 0xca, 0xc4, 0x41, 0xb5, 0x55, 0x2e, 0xa4, 0x57, 0x50,
- 0x7a, 0x7a, 0xed, 0xba, 0x5e, 0x33, 0x79, 0x7a, 0x5d, 0x73, 0xbd, 0x26, 0x66, 0x10, 0x75, 0x1c,
- 0x97, 0xf3, 0x8e, 0x63, 0xfb, 0x07, 0x2c, 0x10, 0x0e, 0xa7, 0x7d, 0x9c, 0xdd, 0x9f, 0x80, 0xb1,
- 0xbd, 0x74, 0xea, 0xa9, 0xf3, 0xf9, 0x1e, 0xb8, 0x22, 0xe1, 0x94, 0x62, 0xc8, 0x8c, 0x34, 0x53,
- 0x06, 0x2d, 0xbb, 0x09, 0x02, 0x5a, 0x25, 0x4c, 0x08, 0xdd, 0xbb, 0x37, 0xcf, 0x01, 0x34, 0x19,
- 0x2e, 0xcb, 0x47, 0x59, 0x32, 0x6f, 0xe6, 0xaa, 0x82, 0x60, 0x0d, 0xcb, 0xfe, 0xd7, 0x25, 0x18,
- 0x95, 0xa9, 0x8e, 0xba, 0x5e, 0x3f, 0xa2, 0xa2, 0x43, 0xe5, 0x3e, 0x45, 0x97, 0xa0, 0xc2, 0x64,
- 0x99, 0xb5, 0x58, 0xc2, 0xa6, 0x24, 0x09, 0x6b, 0x12, 0x80, 0x63, 0x1c, 0xba, 0x8b, 0xc2, 0xee,
- 0x26, 0x43, 0x4f, 0xb8, 0x47, 0xd6, 0x79, 0x31, 0x96, 0x70, 0xf4, 0x31, 0x98, 0xe2, 0xf5, 0x02,
- 0xbf, 0xe3, 0x6c, 0x73, 0xfd, 0xc7, 0xa0, 0x8a, 0x1a, 0x31, 0xb5, 0x96, 0x80, 0xdd, 0x3f, 0x98,
- 0x3b, 0x99, 0x2c, 0x63, 0x8a, 0xbd, 0x14, 0x15, 0x66, 0xe6, 0xc4, 0x1b, 0xa1, 0xbb, 0x3f, 0x65,
- 0x1d, 0x15, 0x83, 0xb0, 0x8e, 0x67, 0x7f, 0x1a, 0x50, 0x3a, 0xe9, 0x13, 0x7a, 0x8d, 0xdb, 0xb6,
- 0xba, 0x01, 0x69, 0x16, 0x29, 0xfa, 0xf4, 0xd8, 0x08, 0xd2, 0xb3, 0x89, 0xd7, 0xc2, 0xaa, 0xbe,
- 0xfd, 0xff, 0x96, 0x61, 0x2a, 0xe9, 0xcb, 0x8d, 0xae, 0xc2, 0x10, 0x67, 0x3d, 0x04, 0xf9, 0x02,
- 0x3b, 0x12, 0xcd, 0x03, 0x9c, 0x1d, 0xc2, 0x82, 0x7b, 0x11, 0xf5, 0xd1, 0x1b, 0x30, 0xda, 0xf4,
- 0xef, 0x78, 0x77, 0x9c, 0xa0, 0xb9, 0x50, 0x5b, 0x15, 0xcb, 0x39, 0xf3, 0x61, 0x5b, 0x8d, 0xd1,
- 0x74, 0xaf, 0x72, 0xa6, 0x33, 0x8d, 0x41, 0x58, 0x27, 0x87, 0x36, 0x58, 0xa4, 0xf8, 0x2d, 0x77,
- 0x7b, 0xcd, 0xe9, 0x14, 0x39, 0x3a, 0x2c, 0x49, 0x24, 0x8d, 0xf2, 0xb8, 0x08, 0x27, 0xcf, 0x01,
- 0x38, 0x26, 0x84, 0x3e, 0x0b, 0x27, 0xc2, 0x1c, 0x71, 0x7b, 0x5e, 0x0e, 0xc0, 0x22, 0x09, 0xf4,
- 0xe2, 0x23, 0xf7, 0x0e, 0xe6, 0x4e, 0x64, 0x09, 0xe6, 0xb3, 0x9a, 0xb1, 0xbf, 0x78, 0x12, 0x8c,
- 0x4d, 0x6c, 0xa4, 0x84, 0xb5, 0x8e, 0x28, 0x25, 0x2c, 0x86, 0x11, 0xd2, 0xee, 0x44, 0xfb, 0x55,
- 0x37, 0x28, 0x4a, 0x8c, 0xbf, 0x2c, 0x70, 0xd2, 0x34, 0x25, 0x04, 0x2b, 0x3a, 0xd9, 0x79, 0x7b,
- 0xcb, 0xdf, 0xc4, 0xbc, 0xbd, 0x03, 0xc7, 0x98, 0xb7, 0x77, 0x1d, 0x86, 0xb7, 0xdd, 0x08, 0x93,
- 0x8e, 0x2f, 0x98, 0xfe, 0xcc, 0x75, 0x78, 0x85, 0xa3, 0xa4, 0x33, 0x44, 0x0a, 0x00, 0x96, 0x44,
- 0xd0, 0x6b, 0x6a, 0x07, 0x0e, 0xe5, 0x3f, 0xcc, 0xd3, 0x06, 0x0f, 0x99, 0x7b, 0x50, 0x64, 0xe7,
- 0x1d, 0x7e, 0xd0, 0xec, 0xbc, 0x2b, 0x32, 0xa7, 0xee, 0x48, 0xbe, 0x57, 0x12, 0x4b, 0x99, 0xdb,
- 0x23, 0x93, 0xee, 0x2d, 0x3d, 0x0f, 0x71, 0x25, 0xff, 0x24, 0x50, 0x29, 0x86, 0xfb, 0xcc, 0x3e,
- 0xfc, 0x03, 0x16, 0x9c, 0xea, 0x64, 0xa5, 0xe4, 0x16, 0xb6, 0x01, 0x2f, 0xf6, 0x9d, 0xf5, 0xdb,
- 0x68, 0x90, 0xc9, 0xd4, 0xb2, 0xf3, 0xba, 0x67, 0x37, 0x47, 0x07, 0x3a, 0xd8, 0x6c, 0x0a, 0x1d,
- 0xf5, 0x13, 0x39, 0x69, 0x8c, 0x0b, 0x92, 0x17, 0x6f, 0x64, 0xa4, 0xcc, 0x7d, 0x6f, 0x5e, 0xca,
- 0xdc, 0xbe, 0x13, 0xe5, 0xbe, 0xa6, 0x12, 0x18, 0x8f, 0xe7, 0x2f, 0x25, 0x9e, 0x9e, 0xb8, 0x67,
- 0xda, 0xe2, 0xd7, 0x54, 0xda, 0xe2, 0x82, 0x88, 0xbe, 0x3c, 0x29, 0x71, 0xcf, 0x64, 0xc5, 0x5a,
- 0xc2, 0xe1, 0xc9, 0xa3, 0x49, 0x38, 0x6c, 0x5c, 0x35, 0x3c, 0xe7, 0xed, 0xd3, 0x3d, 0xae, 0x1a,
- 0x83, 0x6e, 0xf1, 0x65, 0xc3, 0x93, 0x2b, 0x4f, 0x3f, 0x50, 0x72, 0xe5, 0x5b, 0x7a, 0xb2, 0x62,
- 0xd4, 0x23, 0x1b, 0x2f, 0x45, 0xea, 0x33, 0x45, 0xf1, 0x2d, 0xfd, 0x02, 0x3c, 0x91, 0x4f, 0x57,
- 0xdd, 0x73, 0x69, 0xba, 0x99, 0x57, 0x60, 0x2a, 0xf5, 0xf1, 0xc9, 0xe3, 0x49, 0x7d, 0x7c, 0xea,
- 0xc8, 0x53, 0x1f, 0x9f, 0x3e, 0x86, 0xd4, 0xc7, 0x8f, 0x1c, 0x63, 0xea, 0xe3, 0x5b, 0xcc, 0xa0,
- 0x86, 0x87, 0xed, 0x11, 0x11, 0x88, 0x9f, 0xca, 0x89, 0x5b, 0x95, 0x8e, 0xed, 0xc3, 0x3f, 0x4e,
- 0x81, 0x70, 0x4c, 0x2a, 0x23, 0xa5, 0xf2, 0xcc, 0x43, 0x48, 0xa9, 0xbc, 0x1e, 0xa7, 0x54, 0x3e,
- 0x93, 0x3f, 0xd5, 0x19, 0x2e, 0x18, 0x39, 0x89, 0x94, 0x6f, 0xe9, 0x09, 0x90, 0x1f, 0x2d, 0xd0,
- 0x9a, 0x64, 0x09, 0x1e, 0x0b, 0xd2, 0x1e, 0xbf, 0xca, 0xd3, 0x1e, 0x3f, 0x96, 0x7f, 0x92, 0x27,
- 0xaf, 0x3b, 0x23, 0xd9, 0x31, 0xed, 0x97, 0x0a, 0x5c, 0xc9, 0x62, 0x2d, 0xe7, 0xf4, 0x4b, 0x45,
- 0xbe, 0x4c, 0xf7, 0x4b, 0x81, 0x70, 0x4c, 0xca, 0xfe, 0xa1, 0x12, 0x9c, 0x2b, 0xde, 0x6f, 0xb1,
- 0x34, 0xb5, 0x16, 0x2b, 0x91, 0x13, 0xd2, 0x54, 0xfe, 0x66, 0x8b, 0xb1, 0xfa, 0x8e, 0xc3, 0x77,
- 0x05, 0xa6, 0x95, 0xef, 0x46, 0xcb, 0x6d, 0xec, 0xaf, 0xc7, 0x2f, 0x5f, 0xe5, 0xef, 0x5e, 0x4f,
- 0x22, 0xe0, 0x74, 0x1d, 0xb4, 0x00, 0x93, 0x46, 0xe1, 0x6a, 0x55, 0xbc, 0xcd, 0x94, 0xf8, 0xb6,
- 0x6e, 0x82, 0x71, 0x12, 0xdf, 0xfe, 0xb2, 0x05, 0x8f, 0xe4, 0xe4, 0x0c, 0xec, 0x3b, 0xcc, 0xdc,
- 0x16, 0x4c, 0x76, 0xcc, 0xaa, 0x3d, 0x22, 0x63, 0x1a, 0x99, 0x09, 0x55, 0x5f, 0x13, 0x00, 0x9c,
- 0x24, 0x6a, 0xff, 0x4c, 0x09, 0xce, 0x16, 0x1a, 0x23, 0x22, 0x0c, 0xa7, 0xb7, 0xdb, 0xa1, 0xb3,
- 0x14, 0x90, 0x26, 0xf1, 0x22, 0xd7, 0x69, 0xd5, 0x3b, 0xa4, 0xa1, 0xc9, 0xc3, 0x99, 0x55, 0xdf,
- 0x95, 0xb5, 0xfa, 0x42, 0x1a, 0x03, 0xe7, 0xd4, 0x44, 0x2b, 0x80, 0xd2, 0x10, 0x31, 0xc3, 0x2c,
- 0x6a, 0x77, 0x9a, 0x1e, 0xce, 0xa8, 0x81, 0x3e, 0x04, 0xe3, 0xca, 0xc8, 0x51, 0x9b, 0x71, 0x76,
- 0xb0, 0x63, 0x1d, 0x80, 0x4d, 0x3c, 0x74, 0x99, 0x87, 0x7d, 0x17, 0x09, 0x02, 0x84, 0xf0, 0x7c,
- 0x52, 0xc6, 0x74, 0x17, 0xc5, 0x58, 0xc7, 0x59, 0xbc, 0xf8, 0xeb, 0x7f, 0x70, 0xee, 0x3d, 0xbf,
- 0xf5, 0x07, 0xe7, 0xde, 0xf3, 0xbb, 0x7f, 0x70, 0xee, 0x3d, 0xdf, 0x73, 0xef, 0x9c, 0xf5, 0xeb,
- 0xf7, 0xce, 0x59, 0xbf, 0x75, 0xef, 0x9c, 0xf5, 0xbb, 0xf7, 0xce, 0x59, 0xbf, 0x7f, 0xef, 0x9c,
- 0xf5, 0x85, 0x3f, 0x3c, 0xf7, 0x9e, 0x4f, 0x94, 0xf6, 0x2e, 0xff, 0x9f, 0x00, 0x00, 0x00, 0xff,
- 0xff, 0x82, 0x9e, 0xbd, 0x79, 0x30, 0x07, 0x01, 0x00,
+ // 14240 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x79, 0x70, 0x24, 0xd7,
+ 0x79, 0x18, 0xae, 0x9e, 0xc1, 0x35, 0x1f, 0xee, 0xb7, 0x07, 0xb1, 0x20, 0x77, 0xb1, 0x6c, 0x4a,
+ 0xcb, 0xa5, 0x48, 0x62, 0xb5, 0x3c, 0x24, 0x9a, 0x94, 0x68, 0x01, 0x18, 0x60, 0x17, 0xdc, 0x05,
+ 0x76, 0xf8, 0x06, 0xbb, 0x2b, 0xc9, 0x94, 0x4a, 0x8d, 0x99, 0x07, 0xa0, 0x85, 0x99, 0xee, 0x61,
+ 0x77, 0x0f, 0x76, 0xc1, 0x9f, 0x5c, 0x3f, 0x47, 0x3e, 0xe5, 0x23, 0xa5, 0x4a, 0x39, 0x47, 0xc9,
+ 0x2e, 0x57, 0xca, 0x71, 0x62, 0x2b, 0xca, 0xe5, 0xc8, 0xb1, 0x1d, 0xcb, 0x89, 0x9d, 0xdb, 0xc9,
+ 0x1f, 0xb6, 0xe3, 0x4a, 0x2c, 0x57, 0xb9, 0x82, 0xd8, 0xeb, 0x54, 0xb9, 0x54, 0x95, 0xd8, 0x4e,
+ 0x9c, 0xfc, 0x91, 0x8d, 0x2b, 0x4e, 0xbd, 0xb3, 0xdf, 0xeb, 0x6b, 0x06, 0x4b, 0x2c, 0x44, 0xa9,
+ 0xf8, 0xdf, 0xcc, 0xfb, 0xbe, 0xf7, 0xbd, 0xd7, 0xef, 0xfc, 0xde, 0x77, 0xc2, 0x2b, 0xbb, 0x2f,
+ 0x85, 0xf3, 0xae, 0x7f, 0x69, 0xb7, 0xbb, 0x49, 0x02, 0x8f, 0x44, 0x24, 0xbc, 0xb4, 0x47, 0xbc,
+ 0xa6, 0x1f, 0x5c, 0x12, 0x00, 0xa7, 0xe3, 0x5e, 0x6a, 0xf8, 0x01, 0xb9, 0xb4, 0x77, 0xf9, 0xd2,
+ 0x36, 0xf1, 0x48, 0xe0, 0x44, 0xa4, 0x39, 0xdf, 0x09, 0xfc, 0xc8, 0x47, 0x88, 0xe3, 0xcc, 0x3b,
+ 0x1d, 0x77, 0x9e, 0xe2, 0xcc, 0xef, 0x5d, 0x9e, 0x7d, 0x76, 0xdb, 0x8d, 0x76, 0xba, 0x9b, 0xf3,
+ 0x0d, 0xbf, 0x7d, 0x69, 0xdb, 0xdf, 0xf6, 0x2f, 0x31, 0xd4, 0xcd, 0xee, 0x16, 0xfb, 0xc7, 0xfe,
+ 0xb0, 0x5f, 0x9c, 0xc4, 0xec, 0x0b, 0x71, 0x33, 0x6d, 0xa7, 0xb1, 0xe3, 0x7a, 0x24, 0xd8, 0xbf,
+ 0xd4, 0xd9, 0xdd, 0x66, 0xed, 0x06, 0x24, 0xf4, 0xbb, 0x41, 0x83, 0x24, 0x1b, 0x2e, 0xac, 0x15,
+ 0x5e, 0x6a, 0x93, 0xc8, 0xc9, 0xe8, 0xee, 0xec, 0xa5, 0xbc, 0x5a, 0x41, 0xd7, 0x8b, 0xdc, 0x76,
+ 0xba, 0x99, 0x0f, 0xf6, 0xaa, 0x10, 0x36, 0x76, 0x48, 0xdb, 0x49, 0xd5, 0x7b, 0x3e, 0xaf, 0x5e,
+ 0x37, 0x72, 0x5b, 0x97, 0x5c, 0x2f, 0x0a, 0xa3, 0x20, 0x59, 0xc9, 0xfe, 0x9a, 0x05, 0xe7, 0x17,
+ 0x6e, 0xd7, 0x97, 0x5b, 0x4e, 0x18, 0xb9, 0x8d, 0xc5, 0x96, 0xdf, 0xd8, 0xad, 0x47, 0x7e, 0x40,
+ 0x6e, 0xf9, 0xad, 0x6e, 0x9b, 0xd4, 0xd9, 0x40, 0xa0, 0x67, 0x60, 0x64, 0x8f, 0xfd, 0x5f, 0xad,
+ 0xce, 0x58, 0xe7, 0xad, 0x8b, 0x95, 0xc5, 0xa9, 0x5f, 0x3b, 0x98, 0x7b, 0xcf, 0xbd, 0x83, 0xb9,
+ 0x91, 0x5b, 0xa2, 0x1c, 0x2b, 0x0c, 0x74, 0x01, 0x86, 0xb6, 0xc2, 0x8d, 0xfd, 0x0e, 0x99, 0x29,
+ 0x31, 0xdc, 0x09, 0x81, 0x3b, 0xb4, 0x52, 0xa7, 0xa5, 0x58, 0x40, 0xd1, 0x25, 0xa8, 0x74, 0x9c,
+ 0x20, 0x72, 0x23, 0xd7, 0xf7, 0x66, 0xca, 0xe7, 0xad, 0x8b, 0x83, 0x8b, 0xd3, 0x02, 0xb5, 0x52,
+ 0x93, 0x00, 0x1c, 0xe3, 0xd0, 0x6e, 0x04, 0xc4, 0x69, 0xde, 0xf0, 0x5a, 0xfb, 0x33, 0x03, 0xe7,
+ 0xad, 0x8b, 0x23, 0x71, 0x37, 0xb0, 0x28, 0xc7, 0x0a, 0xc3, 0xfe, 0x62, 0x09, 0x46, 0x16, 0xb6,
+ 0xb6, 0x5c, 0xcf, 0x8d, 0xf6, 0xd1, 0x2d, 0x18, 0xf3, 0xfc, 0x26, 0x91, 0xff, 0xd9, 0x57, 0x8c,
+ 0x3e, 0x77, 0x7e, 0x3e, 0xbd, 0x94, 0xe6, 0xd7, 0x35, 0xbc, 0xc5, 0xa9, 0x7b, 0x07, 0x73, 0x63,
+ 0x7a, 0x09, 0x36, 0xe8, 0x20, 0x0c, 0xa3, 0x1d, 0xbf, 0xa9, 0xc8, 0x96, 0x18, 0xd9, 0xb9, 0x2c,
+ 0xb2, 0xb5, 0x18, 0x6d, 0x71, 0xf2, 0xde, 0xc1, 0xdc, 0xa8, 0x56, 0x80, 0x75, 0x22, 0x68, 0x13,
+ 0x26, 0xe9, 0x5f, 0x2f, 0x72, 0x15, 0xdd, 0x32, 0xa3, 0xfb, 0x44, 0x1e, 0x5d, 0x0d, 0x75, 0xf1,
+ 0xc4, 0xbd, 0x83, 0xb9, 0xc9, 0x44, 0x21, 0x4e, 0x12, 0xb4, 0xdf, 0x82, 0x89, 0x85, 0x28, 0x72,
+ 0x1a, 0x3b, 0xa4, 0xc9, 0x67, 0x10, 0xbd, 0x00, 0x03, 0x9e, 0xd3, 0x26, 0x62, 0x7e, 0xcf, 0x8b,
+ 0x81, 0x1d, 0x58, 0x77, 0xda, 0xe4, 0xfe, 0xc1, 0xdc, 0xd4, 0x4d, 0xcf, 0x7d, 0xb3, 0x2b, 0x56,
+ 0x05, 0x2d, 0xc3, 0x0c, 0x1b, 0x3d, 0x07, 0xd0, 0x24, 0x7b, 0x6e, 0x83, 0xd4, 0x9c, 0x68, 0x47,
+ 0xcc, 0x37, 0x12, 0x75, 0xa1, 0xaa, 0x20, 0x58, 0xc3, 0xb2, 0xef, 0x42, 0x65, 0x61, 0xcf, 0x77,
+ 0x9b, 0x35, 0xbf, 0x19, 0xa2, 0x5d, 0x98, 0xec, 0x04, 0x64, 0x8b, 0x04, 0xaa, 0x68, 0xc6, 0x3a,
+ 0x5f, 0xbe, 0x38, 0xfa, 0xdc, 0xc5, 0xcc, 0x8f, 0x35, 0x51, 0x97, 0xbd, 0x28, 0xd8, 0x5f, 0x7c,
+ 0x44, 0xb4, 0x37, 0x99, 0x80, 0xe2, 0x24, 0x65, 0xfb, 0x5f, 0x96, 0xe0, 0xd4, 0xc2, 0x5b, 0xdd,
+ 0x80, 0x54, 0xdd, 0x70, 0x37, 0xb9, 0xc2, 0x9b, 0x6e, 0xb8, 0xbb, 0x1e, 0x8f, 0x80, 0x5a, 0x5a,
+ 0x55, 0x51, 0x8e, 0x15, 0x06, 0x7a, 0x16, 0x86, 0xe9, 0xef, 0x9b, 0x78, 0x55, 0x7c, 0xf2, 0x09,
+ 0x81, 0x3c, 0x5a, 0x75, 0x22, 0xa7, 0xca, 0x41, 0x58, 0xe2, 0xa0, 0x35, 0x18, 0x6d, 0xb0, 0x0d,
+ 0xb9, 0xbd, 0xe6, 0x37, 0x09, 0x9b, 0xcc, 0xca, 0xe2, 0xd3, 0x14, 0x7d, 0x29, 0x2e, 0xbe, 0x7f,
+ 0x30, 0x37, 0xc3, 0xfb, 0x26, 0x48, 0x68, 0x30, 0xac, 0xd7, 0x47, 0xb6, 0xda, 0x5f, 0x03, 0x8c,
+ 0x12, 0x64, 0xec, 0xad, 0x8b, 0xda, 0x56, 0x19, 0x64, 0x5b, 0x65, 0x2c, 0x7b, 0x9b, 0xa0, 0xcb,
+ 0x30, 0xb0, 0xeb, 0x7a, 0xcd, 0x99, 0x21, 0x46, 0xeb, 0x2c, 0x9d, 0xf3, 0x6b, 0xae, 0xd7, 0xbc,
+ 0x7f, 0x30, 0x37, 0x6d, 0x74, 0x87, 0x16, 0x62, 0x86, 0x6a, 0xff, 0xa9, 0x05, 0x73, 0x0c, 0xb6,
+ 0xe2, 0xb6, 0x48, 0x8d, 0x04, 0xa1, 0x1b, 0x46, 0xc4, 0x8b, 0x8c, 0x01, 0x7d, 0x0e, 0x20, 0x24,
+ 0x8d, 0x80, 0x44, 0xda, 0x90, 0xaa, 0x85, 0x51, 0x57, 0x10, 0xac, 0x61, 0xd1, 0x03, 0x21, 0xdc,
+ 0x71, 0x02, 0xb6, 0xbe, 0xc4, 0xc0, 0xaa, 0x03, 0xa1, 0x2e, 0x01, 0x38, 0xc6, 0x31, 0x0e, 0x84,
+ 0x72, 0xaf, 0x03, 0x01, 0x7d, 0x04, 0x26, 0xe3, 0xc6, 0xc2, 0x8e, 0xd3, 0x90, 0x03, 0xc8, 0xb6,
+ 0x4c, 0xdd, 0x04, 0xe1, 0x24, 0xae, 0xfd, 0xb7, 0x2d, 0xb1, 0x78, 0xe8, 0x57, 0xbf, 0xc3, 0xbf,
+ 0xd5, 0xfe, 0x45, 0x0b, 0x86, 0x17, 0x5d, 0xaf, 0xe9, 0x7a, 0xdb, 0xe8, 0xd3, 0x30, 0x42, 0xef,
+ 0xa6, 0xa6, 0x13, 0x39, 0xe2, 0xdc, 0xfb, 0x80, 0xb6, 0xb7, 0xd4, 0x55, 0x31, 0xdf, 0xd9, 0xdd,
+ 0xa6, 0x05, 0xe1, 0x3c, 0xc5, 0xa6, 0xbb, 0xed, 0xc6, 0xe6, 0x67, 0x48, 0x23, 0x5a, 0x23, 0x91,
+ 0x13, 0x7f, 0x4e, 0x5c, 0x86, 0x15, 0x55, 0x74, 0x0d, 0x86, 0x22, 0x27, 0xd8, 0x26, 0x91, 0x38,
+ 0x00, 0x33, 0x0f, 0x2a, 0x5e, 0x13, 0xd3, 0x1d, 0x49, 0xbc, 0x06, 0x89, 0xaf, 0x85, 0x0d, 0x56,
+ 0x15, 0x0b, 0x12, 0xf6, 0x8f, 0x0c, 0xc3, 0x99, 0xa5, 0xfa, 0x6a, 0xce, 0xba, 0xba, 0x00, 0x43,
+ 0xcd, 0xc0, 0xdd, 0x23, 0x81, 0x18, 0x67, 0x45, 0xa5, 0xca, 0x4a, 0xb1, 0x80, 0xa2, 0x97, 0x60,
+ 0x8c, 0x5f, 0x48, 0x57, 0x1d, 0xaf, 0xd9, 0x92, 0x43, 0x7c, 0x52, 0x60, 0x8f, 0xdd, 0xd2, 0x60,
+ 0xd8, 0xc0, 0x3c, 0xe4, 0xa2, 0xba, 0x90, 0xd8, 0x8c, 0x79, 0x97, 0xdd, 0xe7, 0x2d, 0x98, 0xe2,
+ 0xcd, 0x2c, 0x44, 0x51, 0xe0, 0x6e, 0x76, 0x23, 0x12, 0xce, 0x0c, 0xb2, 0x93, 0x6e, 0x29, 0x6b,
+ 0xb4, 0x72, 0x47, 0x60, 0xfe, 0x56, 0x82, 0x0a, 0x3f, 0x04, 0x67, 0x44, 0xbb, 0x53, 0x49, 0x30,
+ 0x4e, 0x35, 0x8b, 0xbe, 0xdb, 0x82, 0xd9, 0x86, 0xef, 0x45, 0x81, 0xdf, 0x6a, 0x91, 0xa0, 0xd6,
+ 0xdd, 0x6c, 0xb9, 0xe1, 0x0e, 0x5f, 0xa7, 0x98, 0x6c, 0xb1, 0x93, 0x20, 0x67, 0x0e, 0x15, 0x92,
+ 0x98, 0xc3, 0x73, 0xf7, 0x0e, 0xe6, 0x66, 0x97, 0x72, 0x49, 0xe1, 0x82, 0x66, 0xd0, 0x2e, 0x20,
+ 0x7a, 0x95, 0xd6, 0x23, 0x67, 0x9b, 0xc4, 0x8d, 0x0f, 0xf7, 0xdf, 0xf8, 0xe9, 0x7b, 0x07, 0x73,
+ 0x68, 0x3d, 0x45, 0x02, 0x67, 0x90, 0x45, 0x6f, 0xc2, 0x49, 0x5a, 0x9a, 0xfa, 0xd6, 0x91, 0xfe,
+ 0x9b, 0x9b, 0xb9, 0x77, 0x30, 0x77, 0x72, 0x3d, 0x83, 0x08, 0xce, 0x24, 0x8d, 0xbe, 0xcb, 0x82,
+ 0x33, 0xf1, 0xe7, 0x2f, 0xdf, 0xed, 0x38, 0x5e, 0x33, 0x6e, 0xb8, 0xd2, 0x7f, 0xc3, 0xf4, 0x4c,
+ 0x3e, 0xb3, 0x94, 0x47, 0x09, 0xe7, 0x37, 0x32, 0xbb, 0x04, 0xa7, 0x32, 0x57, 0x0b, 0x9a, 0x82,
+ 0xf2, 0x2e, 0xe1, 0x5c, 0x50, 0x05, 0xd3, 0x9f, 0xe8, 0x24, 0x0c, 0xee, 0x39, 0xad, 0xae, 0xd8,
+ 0x28, 0x98, 0xff, 0x79, 0xb9, 0xf4, 0x92, 0x65, 0xff, 0xab, 0x32, 0x4c, 0x2e, 0xd5, 0x57, 0x1f,
+ 0x68, 0x17, 0xea, 0xd7, 0x50, 0xa9, 0xf0, 0x1a, 0x8a, 0x2f, 0xb5, 0x72, 0xee, 0xa5, 0xf6, 0xff,
+ 0x67, 0x6c, 0xa1, 0x01, 0xb6, 0x85, 0xbe, 0x2d, 0x67, 0x0b, 0x1d, 0xf1, 0xc6, 0xd9, 0xcb, 0x59,
+ 0x45, 0x83, 0x6c, 0x32, 0x33, 0x39, 0x96, 0xeb, 0x7e, 0xc3, 0x69, 0x25, 0x8f, 0xbe, 0x43, 0x2e,
+ 0xa5, 0xa3, 0x99, 0xc7, 0x06, 0x8c, 0x2d, 0x39, 0x1d, 0x67, 0xd3, 0x6d, 0xb9, 0x91, 0x4b, 0x42,
+ 0xf4, 0x24, 0x94, 0x9d, 0x66, 0x93, 0x71, 0x5b, 0x95, 0xc5, 0x53, 0xf7, 0x0e, 0xe6, 0xca, 0x0b,
+ 0x4d, 0x7a, 0xed, 0x83, 0xc2, 0xda, 0xc7, 0x14, 0x03, 0xbd, 0x1f, 0x06, 0x9a, 0x81, 0xdf, 0x99,
+ 0x29, 0x31, 0x4c, 0xba, 0xeb, 0x06, 0xaa, 0x81, 0xdf, 0x49, 0xa0, 0x32, 0x1c, 0xfb, 0x57, 0x4b,
+ 0xf0, 0xd8, 0x12, 0xe9, 0xec, 0xac, 0xd4, 0x73, 0xce, 0xef, 0x8b, 0x30, 0xd2, 0xf6, 0x3d, 0x37,
+ 0xf2, 0x83, 0x50, 0x34, 0xcd, 0x56, 0xc4, 0x9a, 0x28, 0xc3, 0x0a, 0x8a, 0xce, 0xc3, 0x40, 0x27,
+ 0x66, 0x2a, 0xc7, 0x24, 0x43, 0xca, 0xd8, 0x49, 0x06, 0xa1, 0x18, 0xdd, 0x90, 0x04, 0x62, 0xc5,
+ 0x28, 0x8c, 0x9b, 0x21, 0x09, 0x30, 0x83, 0xc4, 0x37, 0x33, 0xbd, 0xb3, 0xc5, 0x09, 0x9d, 0xb8,
+ 0x99, 0x29, 0x04, 0x6b, 0x58, 0xa8, 0x06, 0x95, 0x30, 0x31, 0xb3, 0x7d, 0x6d, 0xd3, 0x71, 0x76,
+ 0x75, 0xab, 0x99, 0x8c, 0x89, 0x18, 0x37, 0xca, 0x50, 0xcf, 0xab, 0xfb, 0xab, 0x25, 0x40, 0x7c,
+ 0x08, 0xbf, 0xc9, 0x06, 0xee, 0x66, 0x7a, 0xe0, 0xfa, 0xdf, 0x12, 0x47, 0x35, 0x7a, 0xff, 0xd3,
+ 0x82, 0xc7, 0x96, 0x5c, 0xaf, 0x49, 0x82, 0x9c, 0x05, 0xf8, 0x70, 0xde, 0xb2, 0x87, 0x63, 0x1a,
+ 0x8c, 0x25, 0x36, 0x70, 0x04, 0x4b, 0xcc, 0xfe, 0x63, 0x0b, 0x10, 0xff, 0xec, 0x77, 0xdc, 0xc7,
+ 0xde, 0x4c, 0x7f, 0xec, 0x11, 0x2c, 0x0b, 0xfb, 0x3a, 0x4c, 0x2c, 0xb5, 0x5c, 0xe2, 0x45, 0xab,
+ 0xb5, 0x25, 0xdf, 0xdb, 0x72, 0xb7, 0xd1, 0xcb, 0x30, 0x11, 0xb9, 0x6d, 0xe2, 0x77, 0xa3, 0x3a,
+ 0x69, 0xf8, 0x1e, 0x7b, 0x49, 0x5a, 0x17, 0x07, 0x17, 0xd1, 0xbd, 0x83, 0xb9, 0x89, 0x0d, 0x03,
+ 0x82, 0x13, 0x98, 0xf6, 0xef, 0xd2, 0xf1, 0xf3, 0xdb, 0x1d, 0xdf, 0x23, 0x5e, 0xb4, 0xe4, 0x7b,
+ 0x4d, 0x2e, 0x71, 0x78, 0x19, 0x06, 0x22, 0x3a, 0x1e, 0x7c, 0xec, 0x2e, 0xc8, 0x8d, 0x42, 0x47,
+ 0xe1, 0xfe, 0xc1, 0xdc, 0xe9, 0x74, 0x0d, 0x36, 0x4e, 0xac, 0x0e, 0xfa, 0x36, 0x18, 0x0a, 0x23,
+ 0x27, 0xea, 0x86, 0x62, 0x34, 0x1f, 0x97, 0xa3, 0x59, 0x67, 0xa5, 0xf7, 0x0f, 0xe6, 0x26, 0x55,
+ 0x35, 0x5e, 0x84, 0x45, 0x05, 0xf4, 0x14, 0x0c, 0xb7, 0x49, 0x18, 0x3a, 0xdb, 0xf2, 0x36, 0x9c,
+ 0x14, 0x75, 0x87, 0xd7, 0x78, 0x31, 0x96, 0x70, 0xf4, 0x04, 0x0c, 0x92, 0x20, 0xf0, 0x03, 0xb1,
+ 0x47, 0xc7, 0x05, 0xe2, 0xe0, 0x32, 0x2d, 0xc4, 0x1c, 0x66, 0xff, 0x86, 0x05, 0x93, 0xaa, 0xaf,
+ 0xbc, 0xad, 0x63, 0x78, 0x15, 0x7c, 0x02, 0xa0, 0x21, 0x3f, 0x30, 0x64, 0xb7, 0xc7, 0xe8, 0x73,
+ 0x17, 0x32, 0x2f, 0xea, 0xd4, 0x30, 0xc6, 0x94, 0x55, 0x51, 0x88, 0x35, 0x6a, 0xf6, 0x3f, 0xb1,
+ 0xe0, 0x44, 0xe2, 0x8b, 0xae, 0xbb, 0x61, 0x84, 0xde, 0x48, 0x7d, 0xd5, 0x7c, 0x7f, 0x5f, 0x45,
+ 0x6b, 0xb3, 0x6f, 0x52, 0x4b, 0x59, 0x96, 0x68, 0x5f, 0x74, 0x15, 0x06, 0xdd, 0x88, 0xb4, 0xe5,
+ 0xc7, 0x3c, 0x51, 0xf8, 0x31, 0xbc, 0x57, 0xf1, 0x8c, 0xac, 0xd2, 0x9a, 0x98, 0x13, 0xb0, 0x7f,
+ 0xb5, 0x0c, 0x15, 0xbe, 0x6c, 0xd7, 0x9c, 0xce, 0x31, 0xcc, 0xc5, 0xd3, 0x50, 0x71, 0xdb, 0xed,
+ 0x6e, 0xe4, 0x6c, 0x8a, 0xe3, 0x7c, 0x84, 0x6f, 0xad, 0x55, 0x59, 0x88, 0x63, 0x38, 0x5a, 0x85,
+ 0x01, 0xd6, 0x15, 0xfe, 0x95, 0x4f, 0x66, 0x7f, 0xa5, 0xe8, 0xfb, 0x7c, 0xd5, 0x89, 0x1c, 0xce,
+ 0x49, 0xa9, 0x7b, 0x84, 0x16, 0x61, 0x46, 0x02, 0x39, 0x00, 0x9b, 0xae, 0xe7, 0x04, 0xfb, 0xb4,
+ 0x6c, 0xa6, 0xcc, 0x08, 0x3e, 0x5b, 0x4c, 0x70, 0x51, 0xe1, 0x73, 0xb2, 0xea, 0xc3, 0x62, 0x00,
+ 0xd6, 0x88, 0xce, 0x7e, 0x08, 0x2a, 0x0a, 0xf9, 0x30, 0x0c, 0xd1, 0xec, 0x47, 0x60, 0x32, 0xd1,
+ 0x56, 0xaf, 0xea, 0x63, 0x3a, 0x3f, 0xf5, 0x4b, 0xec, 0xc8, 0x10, 0xbd, 0x5e, 0xf6, 0xf6, 0xc4,
+ 0x91, 0xfb, 0x16, 0x9c, 0x6c, 0x65, 0x9c, 0x64, 0x62, 0x5e, 0xfb, 0x3f, 0xf9, 0x1e, 0x13, 0x9f,
+ 0x7d, 0x32, 0x0b, 0x8a, 0x33, 0xdb, 0xa0, 0x3c, 0x82, 0xdf, 0xa1, 0x1b, 0xc4, 0x69, 0xe9, 0xec,
+ 0xf6, 0x0d, 0x51, 0x86, 0x15, 0x94, 0x9e, 0x77, 0x27, 0x55, 0xe7, 0xaf, 0x91, 0xfd, 0x3a, 0x69,
+ 0x91, 0x46, 0xe4, 0x07, 0xdf, 0xd0, 0xee, 0x9f, 0xe5, 0xa3, 0xcf, 0x8f, 0xcb, 0x51, 0x41, 0xa0,
+ 0x7c, 0x8d, 0xec, 0xf3, 0xa9, 0xd0, 0xbf, 0xae, 0x5c, 0xf8, 0x75, 0x3f, 0x6b, 0xc1, 0xb8, 0xfa,
+ 0xba, 0x63, 0x38, 0x17, 0x16, 0xcd, 0x73, 0xe1, 0x6c, 0xe1, 0x02, 0xcf, 0x39, 0x11, 0xbe, 0x5a,
+ 0x82, 0x33, 0x0a, 0x87, 0xbe, 0x0d, 0xf8, 0x1f, 0xb1, 0xaa, 0x2e, 0x41, 0xc5, 0x53, 0x52, 0x2b,
+ 0xcb, 0x14, 0x17, 0xc5, 0x32, 0xab, 0x18, 0x87, 0xb2, 0x78, 0x5e, 0x2c, 0x5a, 0x1a, 0xd3, 0xc5,
+ 0xb9, 0x42, 0x74, 0xbb, 0x08, 0xe5, 0xae, 0xdb, 0x14, 0x17, 0xcc, 0x07, 0xe4, 0x68, 0xdf, 0x5c,
+ 0xad, 0xde, 0x3f, 0x98, 0x7b, 0x3c, 0x4f, 0x95, 0x40, 0x6f, 0xb6, 0x70, 0xfe, 0xe6, 0x6a, 0x15,
+ 0xd3, 0xca, 0x68, 0x01, 0x26, 0xa5, 0xb6, 0xe4, 0x16, 0x65, 0xb7, 0x7c, 0x4f, 0xdc, 0x43, 0x4a,
+ 0x26, 0x8b, 0x4d, 0x30, 0x4e, 0xe2, 0xa3, 0x2a, 0x4c, 0xed, 0x76, 0x37, 0x49, 0x8b, 0x44, 0xfc,
+ 0x83, 0xaf, 0x11, 0x2e, 0xb1, 0xac, 0xc4, 0x2f, 0xb3, 0x6b, 0x09, 0x38, 0x4e, 0xd5, 0xb0, 0xff,
+ 0x9c, 0xdd, 0x07, 0x62, 0xf4, 0x6a, 0x81, 0x4f, 0x17, 0x16, 0xa5, 0xfe, 0x8d, 0x5c, 0xce, 0xfd,
+ 0xac, 0x8a, 0x6b, 0x64, 0x7f, 0xc3, 0xa7, 0x9c, 0x79, 0xf6, 0xaa, 0x30, 0xd6, 0xfc, 0x40, 0xe1,
+ 0x9a, 0xff, 0xb9, 0x12, 0x9c, 0x52, 0x23, 0x60, 0x30, 0x81, 0xdf, 0xec, 0x63, 0x70, 0x19, 0x46,
+ 0x9b, 0x64, 0xcb, 0xe9, 0xb6, 0x22, 0x25, 0x3e, 0x1f, 0xe4, 0x2a, 0x94, 0x6a, 0x5c, 0x8c, 0x75,
+ 0x9c, 0x43, 0x0c, 0xdb, 0xff, 0x1a, 0x65, 0x17, 0x71, 0xe4, 0xd0, 0x35, 0xae, 0x76, 0x8d, 0x95,
+ 0xbb, 0x6b, 0x9e, 0x80, 0x41, 0xb7, 0x4d, 0x19, 0xb3, 0x92, 0xc9, 0x6f, 0xad, 0xd2, 0x42, 0xcc,
+ 0x61, 0xe8, 0x7d, 0x30, 0xdc, 0xf0, 0xdb, 0x6d, 0xc7, 0x6b, 0xb2, 0x2b, 0xaf, 0xb2, 0x38, 0x4a,
+ 0x79, 0xb7, 0x25, 0x5e, 0x84, 0x25, 0x0c, 0x3d, 0x06, 0x03, 0x4e, 0xb0, 0xcd, 0x65, 0x18, 0x95,
+ 0xc5, 0x11, 0xda, 0xd2, 0x42, 0xb0, 0x1d, 0x62, 0x56, 0x4a, 0x9f, 0x60, 0x77, 0xfc, 0x60, 0xd7,
+ 0xf5, 0xb6, 0xab, 0x6e, 0x20, 0xb6, 0x84, 0xba, 0x0b, 0x6f, 0x2b, 0x08, 0xd6, 0xb0, 0xd0, 0x0a,
+ 0x0c, 0x76, 0xfc, 0x20, 0x0a, 0x67, 0x86, 0xd8, 0x70, 0x3f, 0x9e, 0x73, 0x10, 0xf1, 0xaf, 0xad,
+ 0xf9, 0x41, 0x14, 0x7f, 0x00, 0xfd, 0x17, 0x62, 0x5e, 0x1d, 0x5d, 0x87, 0x61, 0xe2, 0xed, 0xad,
+ 0x04, 0x7e, 0x7b, 0xe6, 0x44, 0x3e, 0xa5, 0x65, 0x8e, 0xc2, 0x97, 0x59, 0xcc, 0xa3, 0x8a, 0x62,
+ 0x2c, 0x49, 0xa0, 0x6f, 0x83, 0x32, 0xf1, 0xf6, 0x66, 0x86, 0x19, 0xa5, 0xd9, 0x1c, 0x4a, 0xb7,
+ 0x9c, 0x20, 0x3e, 0xf3, 0x97, 0xbd, 0x3d, 0x4c, 0xeb, 0xa0, 0x8f, 0x43, 0x45, 0x1e, 0x18, 0xa1,
+ 0x10, 0xd6, 0x65, 0x2e, 0x58, 0x79, 0xcc, 0x60, 0xf2, 0x66, 0xd7, 0x0d, 0x48, 0x9b, 0x78, 0x51,
+ 0x18, 0x9f, 0x90, 0x12, 0x1a, 0xe2, 0x98, 0x1a, 0xfa, 0xb8, 0x94, 0x10, 0xaf, 0xf9, 0x5d, 0x2f,
+ 0x0a, 0x67, 0x2a, 0xac, 0x7b, 0x99, 0xba, 0xbb, 0x5b, 0x31, 0x5e, 0x52, 0x84, 0xcc, 0x2b, 0x63,
+ 0x83, 0x14, 0xfa, 0x24, 0x8c, 0xf3, 0xff, 0x5c, 0x03, 0x16, 0xce, 0x9c, 0x62, 0xb4, 0xcf, 0xe7,
+ 0xd3, 0xe6, 0x88, 0x8b, 0xa7, 0x04, 0xf1, 0x71, 0xbd, 0x34, 0xc4, 0x26, 0x35, 0x84, 0x61, 0xbc,
+ 0xe5, 0xee, 0x11, 0x8f, 0x84, 0x61, 0x2d, 0xf0, 0x37, 0xc9, 0x0c, 0xb0, 0x81, 0x39, 0x93, 0xad,
+ 0x31, 0xf3, 0x37, 0xc9, 0xe2, 0x34, 0xa5, 0x79, 0x5d, 0xaf, 0x83, 0x4d, 0x12, 0xe8, 0x26, 0x4c,
+ 0xd0, 0x17, 0x9b, 0x1b, 0x13, 0x1d, 0xed, 0x45, 0x94, 0xbd, 0xab, 0xb0, 0x51, 0x09, 0x27, 0x88,
+ 0xa0, 0x1b, 0x30, 0x16, 0x46, 0x4e, 0x10, 0x75, 0x3b, 0x9c, 0xe8, 0xe9, 0x5e, 0x44, 0x99, 0xc2,
+ 0xb5, 0xae, 0x55, 0xc1, 0x06, 0x01, 0xf4, 0x1a, 0x54, 0x5a, 0xee, 0x16, 0x69, 0xec, 0x37, 0x5a,
+ 0x64, 0x66, 0x8c, 0x51, 0xcb, 0x3c, 0x54, 0xae, 0x4b, 0x24, 0xce, 0xe7, 0xaa, 0xbf, 0x38, 0xae,
+ 0x8e, 0x6e, 0xc1, 0xe9, 0x88, 0x04, 0x6d, 0xd7, 0x73, 0xe8, 0x61, 0x20, 0x9e, 0x56, 0x4c, 0x91,
+ 0x39, 0xce, 0x76, 0xdb, 0x39, 0x31, 0x1b, 0xa7, 0x37, 0x32, 0xb1, 0x70, 0x4e, 0x6d, 0x74, 0x17,
+ 0x66, 0x32, 0x20, 0x7e, 0xcb, 0x6d, 0xec, 0xcf, 0x9c, 0x64, 0x94, 0x3f, 0x2c, 0x28, 0xcf, 0x6c,
+ 0xe4, 0xe0, 0xdd, 0x2f, 0x80, 0xe1, 0x5c, 0xea, 0xe8, 0x06, 0x4c, 0xb2, 0x13, 0xa8, 0xd6, 0x6d,
+ 0xb5, 0x44, 0x83, 0x13, 0xac, 0xc1, 0xf7, 0xc9, 0xfb, 0x78, 0xd5, 0x04, 0xdf, 0x3f, 0x98, 0x83,
+ 0xf8, 0x1f, 0x4e, 0xd6, 0x46, 0x9b, 0x4c, 0x67, 0xd6, 0x0d, 0xdc, 0x68, 0x9f, 0x9e, 0x1b, 0xe4,
+ 0x6e, 0x34, 0x33, 0x59, 0x28, 0xaf, 0xd0, 0x51, 0x95, 0x62, 0x4d, 0x2f, 0xc4, 0x49, 0x82, 0xf4,
+ 0x48, 0x0d, 0xa3, 0xa6, 0xeb, 0xcd, 0x4c, 0xf1, 0x77, 0x89, 0x3c, 0x91, 0xea, 0xb4, 0x10, 0x73,
+ 0x18, 0xd3, 0x97, 0xd1, 0x1f, 0x37, 0xe8, 0xcd, 0x35, 0xcd, 0x10, 0x63, 0x7d, 0x99, 0x04, 0xe0,
+ 0x18, 0x87, 0x32, 0x93, 0x51, 0xb4, 0x3f, 0x83, 0x18, 0xaa, 0x3a, 0x58, 0x36, 0x36, 0x3e, 0x8e,
+ 0x69, 0xb9, 0xbd, 0x09, 0x13, 0xea, 0x20, 0x64, 0x63, 0x82, 0xe6, 0x60, 0x90, 0xb1, 0x4f, 0x42,
+ 0xba, 0x56, 0xa1, 0x5d, 0x60, 0xac, 0x15, 0xe6, 0xe5, 0xac, 0x0b, 0xee, 0x5b, 0x64, 0x71, 0x3f,
+ 0x22, 0xfc, 0x4d, 0x5f, 0xd6, 0xba, 0x20, 0x01, 0x38, 0xc6, 0xb1, 0xff, 0x2f, 0x67, 0x43, 0xe3,
+ 0xd3, 0xb6, 0x8f, 0xfb, 0xe5, 0x19, 0x18, 0xd9, 0xf1, 0xc3, 0x88, 0x62, 0xb3, 0x36, 0x06, 0x63,
+ 0xc6, 0xf3, 0xaa, 0x28, 0xc7, 0x0a, 0x03, 0xbd, 0x02, 0xe3, 0x0d, 0xbd, 0x01, 0x71, 0x39, 0xaa,
+ 0x63, 0xc4, 0x68, 0x1d, 0x9b, 0xb8, 0xe8, 0x25, 0x18, 0x61, 0x36, 0x20, 0x0d, 0xbf, 0x25, 0xb8,
+ 0x36, 0x79, 0xc3, 0x8f, 0xd4, 0x44, 0xf9, 0x7d, 0xed, 0x37, 0x56, 0xd8, 0xe8, 0x02, 0x0c, 0xd1,
+ 0x2e, 0xac, 0xd6, 0xc4, 0xb5, 0xa4, 0x04, 0x45, 0x57, 0x59, 0x29, 0x16, 0x50, 0xfb, 0x2f, 0x95,
+ 0xb4, 0x51, 0xa6, 0xef, 0x61, 0x82, 0x6a, 0x30, 0x7c, 0xc7, 0x71, 0x23, 0xd7, 0xdb, 0x16, 0xfc,
+ 0xc7, 0x53, 0x85, 0x77, 0x14, 0xab, 0x74, 0x9b, 0x57, 0xe0, 0xb7, 0xa8, 0xf8, 0x83, 0x25, 0x19,
+ 0x4a, 0x31, 0xe8, 0x7a, 0x1e, 0xa5, 0x58, 0xea, 0x97, 0x22, 0xe6, 0x15, 0x38, 0x45, 0xf1, 0x07,
+ 0x4b, 0x32, 0xe8, 0x0d, 0x00, 0xb9, 0xc3, 0x48, 0x53, 0xd8, 0x5e, 0x3c, 0xd3, 0x9b, 0xe8, 0x86,
+ 0xaa, 0xb3, 0x38, 0x41, 0xef, 0xe8, 0xf8, 0x3f, 0xd6, 0xe8, 0xd9, 0x11, 0xe3, 0xd3, 0xd2, 0x9d,
+ 0x41, 0xdf, 0x41, 0x97, 0xb8, 0x13, 0x44, 0xa4, 0xb9, 0x10, 0x89, 0xc1, 0x79, 0x7f, 0x7f, 0x8f,
+ 0x94, 0x0d, 0xb7, 0x4d, 0xf4, 0xed, 0x20, 0x88, 0xe0, 0x98, 0x9e, 0xfd, 0x0b, 0x65, 0x98, 0xc9,
+ 0xeb, 0x2e, 0x5d, 0x74, 0xe4, 0xae, 0x1b, 0x2d, 0x51, 0xf6, 0xca, 0x32, 0x17, 0xdd, 0xb2, 0x28,
+ 0xc7, 0x0a, 0x83, 0xce, 0x7e, 0xe8, 0x6e, 0xcb, 0x37, 0xe6, 0x60, 0x3c, 0xfb, 0x75, 0x56, 0x8a,
+ 0x05, 0x94, 0xe2, 0x05, 0xc4, 0x09, 0x85, 0x71, 0x8f, 0xb6, 0x4a, 0x30, 0x2b, 0xc5, 0x02, 0xaa,
+ 0x4b, 0xbb, 0x06, 0x7a, 0x48, 0xbb, 0x8c, 0x21, 0x1a, 0x3c, 0xda, 0x21, 0x42, 0x9f, 0x02, 0xd8,
+ 0x72, 0x3d, 0x37, 0xdc, 0x61, 0xd4, 0x87, 0x0e, 0x4d, 0x5d, 0x31, 0x67, 0x2b, 0x8a, 0x0a, 0xd6,
+ 0x28, 0xa2, 0x17, 0x61, 0x54, 0x6d, 0xc0, 0xd5, 0x2a, 0xd3, 0x74, 0x6a, 0x96, 0x23, 0xf1, 0x69,
+ 0x54, 0xc5, 0x3a, 0x9e, 0xfd, 0x99, 0xe4, 0x7a, 0x11, 0x3b, 0x40, 0x1b, 0x5f, 0xab, 0xdf, 0xf1,
+ 0x2d, 0x15, 0x8f, 0xaf, 0xfd, 0xf5, 0x32, 0x4c, 0x1a, 0x8d, 0x75, 0xc3, 0x3e, 0xce, 0xac, 0x2b,
+ 0xf4, 0x00, 0x77, 0x22, 0x22, 0xf6, 0x9f, 0xdd, 0x7b, 0xab, 0xe8, 0x87, 0x3c, 0xdd, 0x01, 0xbc,
+ 0x3e, 0xfa, 0x14, 0x54, 0x5a, 0x4e, 0xc8, 0x24, 0x67, 0x44, 0xec, 0xbb, 0x7e, 0x88, 0xc5, 0x0f,
+ 0x13, 0x27, 0x8c, 0xb4, 0x5b, 0x93, 0xd3, 0x8e, 0x49, 0xd2, 0x9b, 0x86, 0xf2, 0x27, 0xd2, 0x7a,
+ 0x4c, 0x75, 0x82, 0x32, 0x31, 0xfb, 0x98, 0xc3, 0xd0, 0x4b, 0x30, 0x16, 0x10, 0xb6, 0x2a, 0x96,
+ 0x28, 0x37, 0xc7, 0x96, 0xd9, 0x60, 0xcc, 0xf6, 0x61, 0x0d, 0x86, 0x0d, 0xcc, 0xf8, 0x6d, 0x30,
+ 0x54, 0xf0, 0x36, 0x78, 0x0a, 0x86, 0xd9, 0x0f, 0xb5, 0x02, 0xd4, 0x6c, 0xac, 0xf2, 0x62, 0x2c,
+ 0xe1, 0xc9, 0x05, 0x33, 0xd2, 0xdf, 0x82, 0xa1, 0xaf, 0x0f, 0xb1, 0xa8, 0x99, 0x96, 0x79, 0x84,
+ 0x9f, 0x72, 0x62, 0xc9, 0x63, 0x09, 0xb3, 0xdf, 0x0f, 0x13, 0x55, 0x87, 0xb4, 0x7d, 0x6f, 0xd9,
+ 0x6b, 0x76, 0x7c, 0xd7, 0x8b, 0xd0, 0x0c, 0x0c, 0xb0, 0x4b, 0x84, 0x1f, 0x01, 0x03, 0xb4, 0x21,
+ 0xcc, 0x4a, 0xec, 0x6d, 0x38, 0x55, 0xf5, 0xef, 0x78, 0x77, 0x9c, 0xa0, 0xb9, 0x50, 0x5b, 0xd5,
+ 0xde, 0xd7, 0xeb, 0xf2, 0x7d, 0xc7, 0x8d, 0xb6, 0x32, 0x8f, 0x5e, 0xad, 0x26, 0x67, 0x6b, 0x57,
+ 0xdc, 0x16, 0xc9, 0x91, 0x82, 0xfc, 0xd5, 0x92, 0xd1, 0x52, 0x8c, 0xaf, 0xb4, 0x5a, 0x56, 0xae,
+ 0x56, 0xeb, 0x75, 0x18, 0xd9, 0x72, 0x49, 0xab, 0x89, 0xc9, 0x96, 0x58, 0x89, 0x4f, 0xe6, 0xdb,
+ 0xa1, 0xac, 0x50, 0x4c, 0x29, 0xf5, 0xe2, 0xaf, 0xc3, 0x15, 0x51, 0x19, 0x2b, 0x32, 0x68, 0x17,
+ 0xa6, 0xe4, 0x83, 0x41, 0x42, 0xc5, 0xba, 0x7c, 0xaa, 0xe8, 0x15, 0x62, 0x12, 0x3f, 0x79, 0xef,
+ 0x60, 0x6e, 0x0a, 0x27, 0xc8, 0xe0, 0x14, 0x61, 0xfa, 0x1c, 0x6c, 0xd3, 0x13, 0x78, 0x80, 0x0d,
+ 0x3f, 0x7b, 0x0e, 0xb2, 0x97, 0x2d, 0x2b, 0xb5, 0x7f, 0xdc, 0x82, 0x47, 0x52, 0x23, 0x23, 0x5e,
+ 0xf8, 0x47, 0x3c, 0x0b, 0xc9, 0x17, 0x77, 0xa9, 0xf7, 0x8b, 0xdb, 0xfe, 0x3b, 0x16, 0x9c, 0x5c,
+ 0x6e, 0x77, 0xa2, 0xfd, 0xaa, 0x6b, 0xaa, 0xa0, 0x3e, 0x04, 0x43, 0x6d, 0xd2, 0x74, 0xbb, 0x6d,
+ 0x31, 0x73, 0x73, 0xf2, 0x94, 0x5a, 0x63, 0xa5, 0xf7, 0x0f, 0xe6, 0xc6, 0xeb, 0x91, 0x1f, 0x38,
+ 0xdb, 0x84, 0x17, 0x60, 0x81, 0xce, 0xce, 0x7a, 0xf7, 0x2d, 0x72, 0xdd, 0x6d, 0xbb, 0xd2, 0xae,
+ 0xa8, 0x50, 0x66, 0x37, 0x2f, 0x07, 0x74, 0xfe, 0xf5, 0xae, 0xe3, 0x45, 0x6e, 0xb4, 0x2f, 0xb4,
+ 0x47, 0x92, 0x08, 0x8e, 0xe9, 0xd9, 0x5f, 0xb3, 0x60, 0x52, 0xae, 0xfb, 0x85, 0x66, 0x33, 0x20,
+ 0x61, 0x88, 0x66, 0xa1, 0xe4, 0x76, 0x44, 0x2f, 0x41, 0xf4, 0xb2, 0xb4, 0x5a, 0xc3, 0x25, 0xb7,
+ 0x23, 0xd9, 0x32, 0x76, 0x10, 0x96, 0x4d, 0x45, 0xda, 0x55, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x08,
+ 0x23, 0x9e, 0xdf, 0xe4, 0xb6, 0x5d, 0xfc, 0x4a, 0x63, 0x0b, 0x6c, 0x5d, 0x94, 0x61, 0x05, 0x45,
+ 0x35, 0xa8, 0x70, 0xb3, 0xa7, 0x78, 0xd1, 0xf6, 0x65, 0x3c, 0xc5, 0xbe, 0x6c, 0x43, 0xd6, 0xc4,
+ 0x31, 0x11, 0xfb, 0x57, 0x2c, 0x18, 0x93, 0x5f, 0xd6, 0x27, 0xcf, 0x49, 0xb7, 0x56, 0xcc, 0x6f,
+ 0xc6, 0x5b, 0x8b, 0xf2, 0x8c, 0x0c, 0x62, 0xb0, 0x8a, 0xe5, 0x43, 0xb1, 0x8a, 0x97, 0x61, 0xd4,
+ 0xe9, 0x74, 0x6a, 0x26, 0x9f, 0xc9, 0x96, 0xd2, 0x42, 0x5c, 0x8c, 0x75, 0x1c, 0xfb, 0xc7, 0x4a,
+ 0x30, 0x21, 0xbf, 0xa0, 0xde, 0xdd, 0x0c, 0x49, 0x84, 0x36, 0xa0, 0xe2, 0xf0, 0x59, 0x22, 0x72,
+ 0x91, 0x3f, 0x91, 0x2d, 0x47, 0x30, 0xa6, 0x34, 0xbe, 0xf0, 0x17, 0x64, 0x6d, 0x1c, 0x13, 0x42,
+ 0x2d, 0x98, 0xf6, 0xfc, 0x88, 0x1d, 0xfe, 0x0a, 0x5e, 0xa4, 0xda, 0x49, 0x52, 0x3f, 0x23, 0xa8,
+ 0x4f, 0xaf, 0x27, 0xa9, 0xe0, 0x34, 0x61, 0xb4, 0x2c, 0x65, 0x33, 0xe5, 0x7c, 0x61, 0x80, 0x3e,
+ 0x71, 0xd9, 0xa2, 0x19, 0xfb, 0x97, 0x2d, 0xa8, 0x48, 0xb4, 0xe3, 0xd0, 0xe2, 0xad, 0xc1, 0x70,
+ 0xc8, 0x26, 0x41, 0x0e, 0x8d, 0x5d, 0xd4, 0x71, 0x3e, 0x5f, 0xf1, 0x9d, 0xc6, 0xff, 0x87, 0x58,
+ 0xd2, 0x60, 0xa2, 0x79, 0xd5, 0xfd, 0x77, 0x88, 0x68, 0x5e, 0xf5, 0x27, 0xe7, 0x52, 0xfa, 0x43,
+ 0xd6, 0x67, 0x4d, 0xd6, 0x45, 0x59, 0xaf, 0x4e, 0x40, 0xb6, 0xdc, 0xbb, 0x49, 0xd6, 0xab, 0xc6,
+ 0x4a, 0xb1, 0x80, 0xa2, 0x37, 0x60, 0xac, 0x21, 0x65, 0xb2, 0xf1, 0x0e, 0xbf, 0x50, 0xa8, 0x1f,
+ 0x50, 0xaa, 0x24, 0x2e, 0x0b, 0x59, 0xd2, 0xea, 0x63, 0x83, 0x9a, 0x69, 0x46, 0x50, 0xee, 0x65,
+ 0x46, 0x10, 0xd3, 0xcd, 0x57, 0xaa, 0xff, 0x84, 0x05, 0x43, 0x5c, 0x16, 0xd7, 0x9f, 0x28, 0x54,
+ 0xd3, 0xac, 0xc5, 0x63, 0x77, 0x8b, 0x16, 0x0a, 0x4d, 0x19, 0x5a, 0x83, 0x0a, 0xfb, 0xc1, 0x64,
+ 0x89, 0xe5, 0x7c, 0xab, 0x7b, 0xde, 0xaa, 0xde, 0xc1, 0x5b, 0xb2, 0x1a, 0x8e, 0x29, 0xd8, 0x3f,
+ 0x5a, 0xa6, 0xa7, 0x5b, 0x8c, 0x6a, 0x5c, 0xfa, 0xd6, 0xc3, 0xbb, 0xf4, 0x4b, 0x0f, 0xeb, 0xd2,
+ 0xdf, 0x86, 0xc9, 0x86, 0xa6, 0x87, 0x8b, 0x67, 0xf2, 0x62, 0xe1, 0x22, 0xd1, 0x54, 0x76, 0x5c,
+ 0xca, 0xb2, 0x64, 0x12, 0xc1, 0x49, 0xaa, 0xe8, 0x3b, 0x60, 0x8c, 0xcf, 0xb3, 0x68, 0x85, 0x5b,
+ 0x62, 0xbc, 0x2f, 0x7f, 0xbd, 0xe8, 0x4d, 0x70, 0xa9, 0x9c, 0x56, 0x1d, 0x1b, 0xc4, 0xec, 0x3f,
+ 0xb1, 0x00, 0x2d, 0x77, 0x76, 0x48, 0x9b, 0x04, 0x4e, 0x2b, 0x16, 0xa7, 0xff, 0xa0, 0x05, 0x33,
+ 0x24, 0x55, 0xbc, 0xe4, 0xb7, 0xdb, 0xe2, 0xd1, 0x92, 0xf3, 0xae, 0x5e, 0xce, 0xa9, 0xa3, 0xdc,
+ 0x12, 0x66, 0xf2, 0x30, 0x70, 0x6e, 0x7b, 0x68, 0x0d, 0x4e, 0xf0, 0x5b, 0x52, 0x01, 0x34, 0xdb,
+ 0xeb, 0x47, 0x05, 0xe1, 0x13, 0x1b, 0x69, 0x14, 0x9c, 0x55, 0xcf, 0xfe, 0x9e, 0x31, 0xc8, 0xed,
+ 0xc5, 0xbb, 0x7a, 0x84, 0x77, 0xf5, 0x08, 0xef, 0xea, 0x11, 0xde, 0xd5, 0x23, 0xbc, 0xab, 0x47,
+ 0xf8, 0x96, 0xd7, 0x23, 0xfc, 0x65, 0x0b, 0x4e, 0xa9, 0x6b, 0xc0, 0x78, 0xf8, 0x7e, 0x16, 0x4e,
+ 0xf0, 0xed, 0xb6, 0xd4, 0x72, 0xdc, 0xf6, 0x06, 0x69, 0x77, 0x5a, 0x4e, 0x24, 0xb5, 0xee, 0x97,
+ 0x33, 0x57, 0x6e, 0xc2, 0x62, 0xd5, 0xa8, 0xb8, 0xf8, 0x08, 0xbd, 0x9e, 0x32, 0x00, 0x38, 0xab,
+ 0x19, 0xfb, 0x17, 0x46, 0x60, 0x70, 0x79, 0x8f, 0x78, 0xd1, 0x31, 0x3c, 0x11, 0x1a, 0x30, 0xe1,
+ 0x7a, 0x7b, 0x7e, 0x6b, 0x8f, 0x34, 0x39, 0xfc, 0x30, 0x2f, 0xd9, 0xd3, 0x82, 0xf4, 0xc4, 0xaa,
+ 0x41, 0x02, 0x27, 0x48, 0x3e, 0x0c, 0x69, 0xf2, 0x15, 0x18, 0xe2, 0x87, 0xb8, 0x10, 0x25, 0x67,
+ 0x9e, 0xd9, 0x6c, 0x10, 0xc5, 0xd5, 0x14, 0x4b, 0xba, 0xf9, 0x25, 0x21, 0xaa, 0xa3, 0xcf, 0xc0,
+ 0xc4, 0x96, 0x1b, 0x84, 0xd1, 0x86, 0xdb, 0x26, 0x61, 0xe4, 0xb4, 0x3b, 0x0f, 0x20, 0x3d, 0x56,
+ 0xe3, 0xb0, 0x62, 0x50, 0xc2, 0x09, 0xca, 0x68, 0x1b, 0xc6, 0x5b, 0x8e, 0xde, 0xd4, 0xf0, 0xa1,
+ 0x9b, 0x52, 0xb7, 0xc3, 0x75, 0x9d, 0x10, 0x36, 0xe9, 0xd2, 0xed, 0xd4, 0x60, 0x02, 0xd0, 0x11,
+ 0x26, 0x16, 0x50, 0xdb, 0x89, 0x4b, 0x3e, 0x39, 0x8c, 0x32, 0x3a, 0xcc, 0x40, 0xb6, 0x62, 0x32,
+ 0x3a, 0x9a, 0x19, 0xec, 0xa7, 0xa1, 0x42, 0xe8, 0x10, 0x52, 0xc2, 0xe2, 0x82, 0xb9, 0xd4, 0x5f,
+ 0x5f, 0xd7, 0xdc, 0x46, 0xe0, 0x9b, 0x72, 0xfb, 0x65, 0x49, 0x09, 0xc7, 0x44, 0xd1, 0x12, 0x0c,
+ 0x85, 0x24, 0x70, 0x49, 0x28, 0xae, 0x9a, 0x82, 0x69, 0x64, 0x68, 0xdc, 0xb7, 0x84, 0xff, 0xc6,
+ 0xa2, 0x2a, 0x5d, 0x5e, 0x0e, 0x13, 0x69, 0xb2, 0xcb, 0x40, 0x5b, 0x5e, 0x0b, 0xac, 0x14, 0x0b,
+ 0x28, 0x7a, 0x0d, 0x86, 0x03, 0xd2, 0x62, 0x8a, 0xa1, 0xf1, 0xfe, 0x17, 0x39, 0xd7, 0x33, 0xf1,
+ 0x7a, 0x58, 0x12, 0x40, 0xd7, 0x00, 0x05, 0x84, 0x32, 0x4a, 0xae, 0xb7, 0xad, 0xcc, 0x46, 0xc5,
+ 0x41, 0xab, 0x18, 0x52, 0x1c, 0x63, 0x48, 0x37, 0x1f, 0x9c, 0x51, 0x0d, 0x5d, 0x81, 0x69, 0x55,
+ 0xba, 0xea, 0x85, 0x91, 0x43, 0x0f, 0xb8, 0x49, 0x46, 0x4b, 0xc9, 0x29, 0x70, 0x12, 0x01, 0xa7,
+ 0xeb, 0xd8, 0x5f, 0xb2, 0x80, 0x8f, 0xf3, 0x31, 0xbc, 0xce, 0x5f, 0x35, 0x5f, 0xe7, 0x67, 0x72,
+ 0x67, 0x2e, 0xe7, 0x65, 0xfe, 0x25, 0x0b, 0x46, 0xb5, 0x99, 0x8d, 0xd7, 0xac, 0x55, 0xb0, 0x66,
+ 0xbb, 0x30, 0x45, 0x57, 0xfa, 0x8d, 0xcd, 0x90, 0x04, 0x7b, 0xa4, 0xc9, 0x16, 0x66, 0xe9, 0xc1,
+ 0x16, 0xa6, 0x32, 0x51, 0xbb, 0x9e, 0x20, 0x88, 0x53, 0x4d, 0xd8, 0x9f, 0x96, 0x5d, 0x55, 0x16,
+ 0x7d, 0x0d, 0x35, 0xe7, 0x09, 0x8b, 0x3e, 0x35, 0xab, 0x38, 0xc6, 0xa1, 0x5b, 0x6d, 0xc7, 0x0f,
+ 0xa3, 0xa4, 0x45, 0xdf, 0x55, 0x3f, 0x8c, 0x30, 0x83, 0xd8, 0xcf, 0x03, 0x2c, 0xdf, 0x25, 0x0d,
+ 0xbe, 0x62, 0xf5, 0xc7, 0x83, 0x95, 0xff, 0x78, 0xb0, 0x7f, 0xcb, 0x82, 0x89, 0x95, 0x25, 0xe3,
+ 0xe6, 0x9a, 0x07, 0xe0, 0x2f, 0x9e, 0xdb, 0xb7, 0xd7, 0xa5, 0x3a, 0x9c, 0x6b, 0x34, 0x55, 0x29,
+ 0xd6, 0x30, 0xd0, 0x19, 0x28, 0xb7, 0xba, 0x9e, 0x10, 0x1f, 0x0e, 0xd3, 0xeb, 0xf1, 0x7a, 0xd7,
+ 0xc3, 0xb4, 0x4c, 0x73, 0x29, 0x28, 0xf7, 0xed, 0x52, 0xd0, 0xd3, 0xb5, 0x1f, 0xcd, 0xc1, 0xe0,
+ 0x9d, 0x3b, 0x6e, 0x93, 0x3b, 0x50, 0x0a, 0x55, 0xfd, 0xed, 0xdb, 0xab, 0xd5, 0x10, 0xf3, 0x72,
+ 0xfb, 0x0b, 0x65, 0x98, 0x5d, 0x69, 0x91, 0xbb, 0x6f, 0xd3, 0x89, 0xb4, 0x5f, 0x87, 0x88, 0xc3,
+ 0x09, 0x62, 0x0e, 0xeb, 0xf4, 0xd2, 0x7b, 0x3c, 0xb6, 0x60, 0x98, 0x1b, 0xb4, 0x49, 0x97, 0xd2,
+ 0x57, 0xb2, 0x5a, 0xcf, 0x1f, 0x90, 0x79, 0x6e, 0x18, 0x27, 0x3c, 0xe2, 0xd4, 0x85, 0x29, 0x4a,
+ 0xb1, 0x24, 0x3e, 0xfb, 0x32, 0x8c, 0xe9, 0x98, 0x87, 0x72, 0x3f, 0xfb, 0x0b, 0x65, 0x98, 0xa2,
+ 0x3d, 0x78, 0xa8, 0x13, 0x71, 0x33, 0x3d, 0x11, 0x47, 0xed, 0x82, 0xd4, 0x7b, 0x36, 0xde, 0x48,
+ 0xce, 0xc6, 0xe5, 0xbc, 0xd9, 0x38, 0xee, 0x39, 0xf8, 0x6e, 0x0b, 0x4e, 0xac, 0xb4, 0xfc, 0xc6,
+ 0x6e, 0xc2, 0x4d, 0xe8, 0x45, 0x18, 0xa5, 0xc7, 0x71, 0x68, 0x78, 0xb0, 0x1b, 0x31, 0x0d, 0x04,
+ 0x08, 0xeb, 0x78, 0x5a, 0xb5, 0x9b, 0x37, 0x57, 0xab, 0x59, 0xa1, 0x10, 0x04, 0x08, 0xeb, 0x78,
+ 0xf6, 0xaf, 0x5b, 0x70, 0xf6, 0xca, 0xd2, 0x72, 0xbc, 0x14, 0x53, 0xd1, 0x18, 0x2e, 0xc0, 0x50,
+ 0xa7, 0xa9, 0x75, 0x25, 0x16, 0xaf, 0x56, 0x59, 0x2f, 0x04, 0xf4, 0x9d, 0x12, 0x69, 0xe4, 0x26,
+ 0xc0, 0x15, 0x5c, 0x5b, 0x12, 0xe7, 0xae, 0xd4, 0xa6, 0x58, 0xb9, 0xda, 0x94, 0xf7, 0xc1, 0x30,
+ 0xbd, 0x17, 0xdc, 0x86, 0xec, 0x37, 0x57, 0xd0, 0xf2, 0x22, 0x2c, 0x61, 0xf6, 0xcf, 0x58, 0x70,
+ 0xe2, 0x8a, 0x1b, 0xd1, 0x4b, 0x3b, 0x19, 0x6e, 0x80, 0xde, 0xda, 0xa1, 0x1b, 0xf9, 0xc1, 0x7e,
+ 0x32, 0xdc, 0x00, 0x56, 0x10, 0xac, 0x61, 0xf1, 0x0f, 0xda, 0x73, 0x99, 0x85, 0x76, 0xc9, 0xd4,
+ 0x5f, 0x61, 0x51, 0x8e, 0x15, 0x06, 0x1d, 0xaf, 0xa6, 0x1b, 0x30, 0xd1, 0xdf, 0xbe, 0x38, 0xb8,
+ 0xd5, 0x78, 0x55, 0x25, 0x00, 0xc7, 0x38, 0xf6, 0x1f, 0x59, 0x30, 0x77, 0xa5, 0xd5, 0x0d, 0x23,
+ 0x12, 0x6c, 0x85, 0x39, 0x87, 0xee, 0xf3, 0x50, 0x21, 0x52, 0xd0, 0x2e, 0x7a, 0xad, 0x18, 0x51,
+ 0x25, 0x81, 0xe7, 0x51, 0x0f, 0x14, 0x5e, 0x1f, 0xbe, 0x8c, 0x87, 0x73, 0x46, 0x5b, 0x01, 0x44,
+ 0xf4, 0xb6, 0xf4, 0x30, 0x10, 0xcc, 0x9f, 0x7c, 0x39, 0x05, 0xc5, 0x19, 0x35, 0xec, 0x1f, 0xb7,
+ 0xe0, 0x94, 0xfa, 0xe0, 0x77, 0xdc, 0x67, 0xda, 0x5f, 0x29, 0xc1, 0xf8, 0xd5, 0x8d, 0x8d, 0xda,
+ 0x15, 0x12, 0x69, 0xab, 0xb2, 0x58, 0x7d, 0x8e, 0x35, 0x2d, 0x60, 0xd1, 0x1b, 0xb1, 0x1b, 0xb9,
+ 0xad, 0x79, 0x1e, 0x4d, 0x68, 0x7e, 0xd5, 0x8b, 0x6e, 0x04, 0xf5, 0x28, 0x70, 0xbd, 0xed, 0xcc,
+ 0x95, 0x2e, 0x79, 0x96, 0x72, 0x1e, 0xcf, 0x82, 0x9e, 0x87, 0x21, 0x16, 0xce, 0x48, 0x4e, 0xc2,
+ 0xa3, 0xea, 0x89, 0xc5, 0x4a, 0xef, 0x1f, 0xcc, 0x55, 0x6e, 0xe2, 0x55, 0xfe, 0x07, 0x0b, 0x54,
+ 0x74, 0x13, 0x46, 0x77, 0xa2, 0xa8, 0x73, 0x95, 0x38, 0x4d, 0x12, 0xc8, 0x53, 0xf6, 0x5c, 0xd6,
+ 0x29, 0x4b, 0x07, 0x81, 0xa3, 0xc5, 0x07, 0x53, 0x5c, 0x16, 0x62, 0x9d, 0x8e, 0x5d, 0x07, 0x88,
+ 0x61, 0x47, 0xa4, 0x00, 0xb1, 0x37, 0xa0, 0x42, 0x3f, 0x77, 0xa1, 0xe5, 0x3a, 0xc5, 0x2a, 0xe6,
+ 0xa7, 0xa1, 0x22, 0x15, 0xc8, 0xa1, 0xf0, 0xb5, 0x66, 0x37, 0x92, 0xd4, 0x2f, 0x87, 0x38, 0x86,
+ 0xdb, 0x5b, 0x70, 0x92, 0x99, 0x03, 0x3a, 0xd1, 0x8e, 0xb1, 0xfa, 0x7a, 0x4f, 0xf3, 0x33, 0xe2,
+ 0xc5, 0xc6, 0xfb, 0x3c, 0xa3, 0xb9, 0x33, 0x8e, 0x49, 0x8a, 0xf1, 0xeb, 0xcd, 0xfe, 0xfa, 0x00,
+ 0x3c, 0xba, 0x5a, 0xcf, 0x0f, 0xc7, 0xf1, 0x12, 0x8c, 0x71, 0x46, 0x90, 0x4e, 0xba, 0xd3, 0x12,
+ 0xed, 0x2a, 0xd9, 0xe6, 0x86, 0x06, 0xc3, 0x06, 0x26, 0x3a, 0x0b, 0x65, 0xf7, 0x4d, 0x2f, 0xe9,
+ 0xec, 0xb3, 0xfa, 0xfa, 0x3a, 0xa6, 0xe5, 0x14, 0x4c, 0x79, 0x4a, 0x7e, 0x58, 0x2b, 0xb0, 0xe2,
+ 0x2b, 0x5f, 0x85, 0x09, 0x37, 0x6c, 0x84, 0xee, 0xaa, 0x47, 0x77, 0xa0, 0xb6, 0x87, 0x95, 0x34,
+ 0x81, 0x76, 0x5a, 0x41, 0x71, 0x02, 0x5b, 0xbb, 0x39, 0x06, 0xfb, 0xe6, 0x4b, 0x7b, 0x3a, 0x1f,
+ 0xd3, 0x83, 0xbd, 0xc3, 0xbe, 0x2e, 0x64, 0x42, 0x6a, 0x71, 0xb0, 0xf3, 0x0f, 0x0e, 0xb1, 0x84,
+ 0xd1, 0xa7, 0x5a, 0x63, 0xc7, 0xe9, 0x2c, 0x74, 0xa3, 0x9d, 0xaa, 0x1b, 0x36, 0xfc, 0x3d, 0x12,
+ 0xec, 0xb3, 0x57, 0xf6, 0x48, 0xfc, 0x54, 0x53, 0x80, 0xa5, 0xab, 0x0b, 0x35, 0x8a, 0x89, 0xd3,
+ 0x75, 0xd0, 0x02, 0x4c, 0xca, 0xc2, 0x3a, 0x09, 0xd9, 0xe1, 0x3e, 0xca, 0xc8, 0x28, 0xf7, 0x1b,
+ 0x51, 0xac, 0x88, 0x24, 0xf1, 0x4d, 0xd6, 0x15, 0x8e, 0x82, 0x75, 0xfd, 0x10, 0x8c, 0xbb, 0x9e,
+ 0x1b, 0xb9, 0x4e, 0xe4, 0x73, 0x0d, 0x0b, 0x7f, 0x50, 0x33, 0xd1, 0xf1, 0xaa, 0x0e, 0xc0, 0x26,
+ 0x9e, 0xfd, 0x5f, 0x06, 0x60, 0x9a, 0x4d, 0xdb, 0xbb, 0x2b, 0xec, 0x5b, 0x69, 0x85, 0xdd, 0x4c,
+ 0xaf, 0xb0, 0xa3, 0xe0, 0xc9, 0x1f, 0x78, 0x99, 0x7d, 0x06, 0x2a, 0xca, 0xe3, 0x48, 0xba, 0x1c,
+ 0x5a, 0x39, 0x2e, 0x87, 0xbd, 0xef, 0x65, 0x69, 0xb4, 0x55, 0xce, 0x34, 0xda, 0xfa, 0xb2, 0x05,
+ 0xb1, 0xca, 0x00, 0xbd, 0x0e, 0x95, 0x8e, 0xcf, 0x6c, 0x11, 0x03, 0x69, 0xe0, 0xfb, 0xde, 0x42,
+ 0x9d, 0x03, 0x8f, 0x48, 0x14, 0xf0, 0x51, 0xa8, 0xc9, 0xaa, 0x38, 0xa6, 0x82, 0xae, 0xc1, 0x70,
+ 0x27, 0x20, 0xf5, 0x88, 0x85, 0xe7, 0xe8, 0x9f, 0x20, 0x5f, 0x35, 0xbc, 0x22, 0x96, 0x14, 0xec,
+ 0xff, 0x6a, 0xc1, 0x54, 0x12, 0x15, 0x7d, 0x18, 0x06, 0xc8, 0x5d, 0xd2, 0x10, 0xfd, 0xcd, 0xbc,
+ 0x64, 0x63, 0xa1, 0x03, 0x1f, 0x00, 0xfa, 0x1f, 0xb3, 0x5a, 0xe8, 0x2a, 0x0c, 0xd3, 0x1b, 0xf6,
+ 0x8a, 0x0a, 0x0d, 0xf5, 0x78, 0xde, 0x2d, 0xad, 0x58, 0x15, 0xde, 0x39, 0x51, 0x84, 0x65, 0x75,
+ 0x66, 0x29, 0xd5, 0xe8, 0xd4, 0xe9, 0xe3, 0x25, 0x2a, 0x7a, 0x63, 0x6f, 0x2c, 0xd5, 0x38, 0x92,
+ 0xa0, 0xc6, 0x2d, 0xa5, 0x64, 0x21, 0x8e, 0x89, 0xd8, 0x3f, 0x67, 0x01, 0x70, 0xc3, 0x30, 0xc7,
+ 0xdb, 0x26, 0xc7, 0x20, 0x27, 0xaf, 0xc2, 0x40, 0xd8, 0x21, 0x8d, 0x22, 0x33, 0xd9, 0xb8, 0x3f,
+ 0xf5, 0x0e, 0x69, 0xc4, 0x2b, 0x8e, 0xfe, 0xc3, 0xac, 0xb6, 0xfd, 0xbd, 0x00, 0x13, 0x31, 0xda,
+ 0x6a, 0x44, 0xda, 0xe8, 0x59, 0x23, 0x4c, 0xc1, 0x99, 0x44, 0x98, 0x82, 0x0a, 0xc3, 0xd6, 0x44,
+ 0xb2, 0x9f, 0x81, 0x72, 0xdb, 0xb9, 0x2b, 0x64, 0x6e, 0x4f, 0x17, 0x77, 0x83, 0xd2, 0x9f, 0x5f,
+ 0x73, 0xee, 0xf2, 0x67, 0xe9, 0xd3, 0x72, 0x87, 0xac, 0x39, 0x77, 0xef, 0x73, 0x63, 0x58, 0x76,
+ 0x4a, 0x5f, 0x77, 0xc3, 0xe8, 0x73, 0xff, 0x39, 0xfe, 0xcf, 0xf6, 0x1d, 0x6d, 0x84, 0xb5, 0xe5,
+ 0x7a, 0xc2, 0xe6, 0xa9, 0xaf, 0xb6, 0x5c, 0x2f, 0xd9, 0x96, 0xeb, 0xf5, 0xd1, 0x96, 0xeb, 0xa1,
+ 0xb7, 0x60, 0x58, 0x98, 0x24, 0x8a, 0xb0, 0x40, 0x97, 0xfa, 0x68, 0x4f, 0x58, 0x34, 0xf2, 0x36,
+ 0x2f, 0xc9, 0x67, 0xb7, 0x28, 0xed, 0xd9, 0xae, 0x6c, 0x10, 0xfd, 0x15, 0x0b, 0x26, 0xc4, 0x6f,
+ 0x4c, 0xde, 0xec, 0x92, 0x30, 0x12, 0x6c, 0xe9, 0x07, 0xfb, 0xef, 0x83, 0xa8, 0xc8, 0xbb, 0xf2,
+ 0x41, 0x79, 0xcf, 0x98, 0xc0, 0x9e, 0x3d, 0x4a, 0xf4, 0x02, 0xfd, 0x3d, 0x0b, 0x4e, 0xb6, 0x9d,
+ 0xbb, 0xbc, 0x45, 0x5e, 0x86, 0x9d, 0xc8, 0xf5, 0x85, 0x6a, 0xff, 0xc3, 0xfd, 0x4d, 0x7f, 0xaa,
+ 0x3a, 0xef, 0xa4, 0xd4, 0x3f, 0x9e, 0xcc, 0x42, 0xe9, 0xd9, 0xd5, 0xcc, 0x7e, 0xcd, 0x6e, 0xc1,
+ 0x88, 0x5c, 0x6f, 0x19, 0xc2, 0x8d, 0xaa, 0xce, 0x73, 0x1f, 0xda, 0x22, 0x54, 0x77, 0xff, 0xa7,
+ 0xed, 0x88, 0xb5, 0xf6, 0x50, 0xdb, 0xf9, 0x0c, 0x8c, 0xe9, 0x6b, 0xec, 0xa1, 0xb6, 0xf5, 0x26,
+ 0x9c, 0xc8, 0x58, 0x4b, 0x0f, 0xb5, 0xc9, 0x3b, 0x70, 0x26, 0x77, 0x7d, 0x3c, 0xcc, 0x86, 0xed,
+ 0xaf, 0x58, 0xfa, 0x39, 0x78, 0x0c, 0xca, 0x8a, 0x25, 0x53, 0x59, 0x71, 0xae, 0x78, 0xe7, 0xe4,
+ 0x68, 0x2c, 0xde, 0xd0, 0x3b, 0x4d, 0x4f, 0x75, 0xf4, 0x1a, 0x0c, 0xb5, 0x68, 0x89, 0x34, 0x6c,
+ 0xb5, 0x7b, 0xef, 0xc8, 0x98, 0x99, 0x64, 0xe5, 0x21, 0x16, 0x14, 0xec, 0x5f, 0xb4, 0x60, 0xe0,
+ 0x18, 0x46, 0x02, 0x9b, 0x23, 0xf1, 0x6c, 0x2e, 0x69, 0x11, 0xb1, 0x78, 0x1e, 0x3b, 0x77, 0x96,
+ 0xef, 0x46, 0xc4, 0x0b, 0xd9, 0x8d, 0x9c, 0x39, 0x30, 0x3f, 0x65, 0xc1, 0x89, 0xeb, 0xbe, 0xd3,
+ 0x5c, 0x74, 0x5a, 0x8e, 0xd7, 0x20, 0xc1, 0xaa, 0xb7, 0x7d, 0x28, 0xab, 0xec, 0x52, 0x4f, 0xab,
+ 0xec, 0x25, 0x69, 0xd4, 0x34, 0x90, 0x3f, 0x7f, 0x94, 0x93, 0x4e, 0x06, 0x6e, 0x31, 0xcc, 0x6f,
+ 0x77, 0x00, 0xe9, 0xbd, 0x14, 0x3e, 0x32, 0x18, 0x86, 0x5d, 0xde, 0x5f, 0x31, 0x89, 0x4f, 0x66,
+ 0x73, 0xb8, 0xa9, 0xcf, 0xd3, 0xbc, 0x3f, 0x78, 0x01, 0x96, 0x84, 0xec, 0x97, 0x20, 0xd3, 0xd1,
+ 0xbe, 0xb7, 0x5c, 0xc2, 0xfe, 0x38, 0x4c, 0xb3, 0x9a, 0x87, 0x94, 0x0c, 0xd8, 0x09, 0x69, 0x6a,
+ 0x46, 0x08, 0x3e, 0xfb, 0xf3, 0x16, 0x4c, 0xae, 0x27, 0x22, 0x93, 0x5d, 0x60, 0xfa, 0xd7, 0x0c,
+ 0x21, 0x7e, 0x9d, 0x95, 0x62, 0x01, 0x3d, 0x72, 0x21, 0xd7, 0x9f, 0x5b, 0x10, 0xc7, 0xbe, 0x38,
+ 0x06, 0xf6, 0x6d, 0xc9, 0x60, 0xdf, 0x32, 0x19, 0x59, 0xd5, 0x9d, 0x3c, 0xee, 0x0d, 0x5d, 0x53,
+ 0x51, 0xa1, 0x0a, 0x78, 0xd8, 0x98, 0x0c, 0x5f, 0x8a, 0x13, 0x66, 0xe8, 0x28, 0x19, 0x27, 0xca,
+ 0xfe, 0xed, 0x12, 0x20, 0x85, 0xdb, 0x77, 0xd4, 0xaa, 0x74, 0x8d, 0xa3, 0x89, 0x5a, 0xb5, 0x07,
+ 0x88, 0x59, 0x10, 0x04, 0x8e, 0x17, 0x72, 0xb2, 0xae, 0x10, 0xeb, 0x1d, 0xce, 0x3c, 0x61, 0x56,
+ 0x34, 0x89, 0xae, 0xa7, 0xa8, 0xe1, 0x8c, 0x16, 0x34, 0xcb, 0x90, 0xc1, 0x7e, 0x2d, 0x43, 0x86,
+ 0x7a, 0xf8, 0xc1, 0xfd, 0xac, 0x05, 0xe3, 0x6a, 0x98, 0xde, 0x21, 0x56, 0xea, 0xaa, 0x3f, 0x39,
+ 0x07, 0x68, 0x4d, 0xeb, 0x32, 0xbb, 0x58, 0xbe, 0x9d, 0xf9, 0x33, 0x3a, 0x2d, 0xf7, 0x2d, 0xa2,
+ 0x62, 0x06, 0xce, 0x09, 0xff, 0x44, 0x51, 0x7a, 0xff, 0x60, 0x6e, 0x5c, 0xfd, 0xe3, 0x31, 0x8a,
+ 0xe3, 0x2a, 0xf4, 0x48, 0x9e, 0x4c, 0x2c, 0x45, 0xf4, 0x22, 0x0c, 0x76, 0x76, 0x9c, 0x90, 0x24,
+ 0xbc, 0x79, 0x06, 0x6b, 0xb4, 0xf0, 0xfe, 0xc1, 0xdc, 0x84, 0xaa, 0xc0, 0x4a, 0x30, 0xc7, 0xee,
+ 0x3f, 0x16, 0x58, 0x7a, 0x71, 0xf6, 0x8c, 0x05, 0xf6, 0x27, 0x16, 0x0c, 0xac, 0xfb, 0xcd, 0xe3,
+ 0x38, 0x02, 0x5e, 0x35, 0x8e, 0x80, 0xc7, 0xf2, 0xc2, 0xc7, 0xe7, 0xee, 0xfe, 0x95, 0xc4, 0xee,
+ 0x3f, 0x97, 0x4b, 0xa1, 0x78, 0xe3, 0xb7, 0x61, 0x94, 0x05, 0xa5, 0x17, 0x9e, 0x4b, 0xcf, 0x1b,
+ 0x1b, 0x7e, 0x2e, 0xb1, 0xe1, 0x27, 0x35, 0x54, 0x6d, 0xa7, 0x3f, 0x05, 0xc3, 0xc2, 0x15, 0x26,
+ 0xe9, 0x16, 0x2a, 0x70, 0xb1, 0x84, 0xdb, 0x3f, 0x51, 0x06, 0x23, 0x08, 0x3e, 0xfa, 0x65, 0x0b,
+ 0xe6, 0x03, 0x6e, 0x22, 0xdb, 0xac, 0x76, 0x03, 0xd7, 0xdb, 0xae, 0x37, 0x76, 0x48, 0xb3, 0xdb,
+ 0x72, 0xbd, 0xed, 0xd5, 0x6d, 0xcf, 0x57, 0xc5, 0xcb, 0x77, 0x49, 0xa3, 0xcb, 0xd4, 0x6e, 0x3d,
+ 0x22, 0xee, 0x2b, 0x53, 0xf3, 0xe7, 0xee, 0x1d, 0xcc, 0xcd, 0xe3, 0x43, 0xd1, 0xc6, 0x87, 0xec,
+ 0x0b, 0xfa, 0x75, 0x0b, 0x2e, 0xf1, 0xd8, 0xf0, 0xfd, 0xf7, 0xbf, 0xe0, 0xb5, 0x5c, 0x93, 0xa4,
+ 0x62, 0x22, 0x1b, 0x24, 0x68, 0x2f, 0x7e, 0x48, 0x0c, 0xe8, 0xa5, 0xda, 0xe1, 0xda, 0xc2, 0x87,
+ 0xed, 0x9c, 0xfd, 0xcf, 0xca, 0x30, 0x2e, 0x62, 0x46, 0x89, 0x3b, 0xe0, 0x45, 0x63, 0x49, 0x3c,
+ 0x9e, 0x58, 0x12, 0xd3, 0x06, 0xf2, 0xd1, 0x1c, 0xff, 0x21, 0x4c, 0xd3, 0xc3, 0xf9, 0x2a, 0x71,
+ 0x82, 0x68, 0x93, 0x38, 0xdc, 0xe0, 0xab, 0x7c, 0xe8, 0xd3, 0x5f, 0xc9, 0x27, 0xaf, 0x27, 0x89,
+ 0xe1, 0x34, 0xfd, 0x6f, 0xa5, 0x3b, 0xc7, 0x83, 0xa9, 0x54, 0xd8, 0xaf, 0x4f, 0x40, 0x45, 0xf9,
+ 0x71, 0x88, 0x43, 0xa7, 0x38, 0x7a, 0x5e, 0x92, 0x02, 0x17, 0x7f, 0xc5, 0x3e, 0x44, 0x31, 0x39,
+ 0xfb, 0x1f, 0x94, 0x8c, 0x06, 0xf9, 0x24, 0xae, 0xc3, 0x88, 0x13, 0x86, 0xee, 0xb6, 0x47, 0x9a,
+ 0x45, 0x12, 0xca, 0x54, 0x33, 0xcc, 0x97, 0x66, 0x41, 0xd4, 0xc4, 0x8a, 0x06, 0xba, 0xca, 0xcd,
+ 0xea, 0xf6, 0x48, 0x91, 0x78, 0x32, 0x45, 0x0d, 0xa4, 0xe1, 0xdd, 0x1e, 0xc1, 0xa2, 0x3e, 0xfa,
+ 0x24, 0xb7, 0x7b, 0xbc, 0xe6, 0xf9, 0x77, 0xbc, 0x2b, 0xbe, 0x2f, 0xe3, 0x32, 0xf4, 0x47, 0x70,
+ 0x5a, 0x5a, 0x3b, 0xaa, 0xea, 0xd8, 0xa4, 0xd6, 0x5f, 0x1c, 0xcd, 0xcf, 0xc2, 0x09, 0x4a, 0xda,
+ 0x74, 0x9b, 0x0e, 0x11, 0x81, 0x49, 0x11, 0x90, 0x4c, 0x96, 0x89, 0xb1, 0xcb, 0x7c, 0xca, 0x99,
+ 0xb5, 0x63, 0x41, 0xfa, 0x35, 0x93, 0x04, 0x4e, 0xd2, 0xb4, 0x7f, 0xda, 0x02, 0xe6, 0x42, 0x7a,
+ 0x0c, 0xfc, 0xc8, 0x47, 0x4c, 0x7e, 0x64, 0x26, 0x6f, 0x90, 0x73, 0x58, 0x91, 0x17, 0xf8, 0xca,
+ 0xaa, 0x05, 0xfe, 0xdd, 0x7d, 0x61, 0xac, 0xd2, 0xfb, 0xfd, 0x61, 0xff, 0x1f, 0x8b, 0x1f, 0x62,
+ 0xca, 0xcb, 0x02, 0x7d, 0x27, 0x8c, 0x34, 0x9c, 0x8e, 0xd3, 0xe0, 0x19, 0x5b, 0x72, 0x25, 0x7a,
+ 0x46, 0xa5, 0xf9, 0x25, 0x51, 0x83, 0x4b, 0xa8, 0x64, 0x60, 0xbb, 0x11, 0x59, 0xdc, 0x53, 0x2a,
+ 0xa5, 0x9a, 0x9c, 0xdd, 0x85, 0x71, 0x83, 0xd8, 0x43, 0x15, 0x67, 0x7c, 0x27, 0xbf, 0x62, 0x55,
+ 0x20, 0xc6, 0x36, 0x4c, 0x7b, 0xda, 0x7f, 0x7a, 0xa1, 0xc8, 0xc7, 0xe5, 0x7b, 0x7b, 0x5d, 0xa2,
+ 0xec, 0xf6, 0xd1, 0xbc, 0x53, 0x13, 0x64, 0x70, 0x9a, 0xb2, 0xfd, 0x93, 0x16, 0x3c, 0xa2, 0x23,
+ 0x6a, 0x0e, 0x30, 0xbd, 0x94, 0x24, 0x55, 0x18, 0xf1, 0x3b, 0x24, 0x70, 0x22, 0x3f, 0x10, 0xb7,
+ 0xc6, 0x45, 0x39, 0xe8, 0x37, 0x44, 0xf9, 0x7d, 0x11, 0xef, 0x5c, 0x52, 0x97, 0xe5, 0x58, 0xd5,
+ 0xa4, 0xaf, 0x4f, 0x36, 0x18, 0xa1, 0x70, 0x75, 0x62, 0x67, 0x00, 0xd3, 0xa4, 0x87, 0x58, 0x40,
+ 0xec, 0xaf, 0x5b, 0x7c, 0x61, 0xe9, 0x5d, 0x47, 0x6f, 0xc2, 0x54, 0xdb, 0x89, 0x1a, 0x3b, 0xcb,
+ 0x77, 0x3b, 0x01, 0x57, 0x39, 0xc9, 0x71, 0x7a, 0xba, 0xd7, 0x38, 0x69, 0x1f, 0x19, 0x9b, 0x72,
+ 0xae, 0x25, 0x88, 0xe1, 0x14, 0x79, 0xb4, 0x09, 0xa3, 0xac, 0x8c, 0x79, 0xf1, 0x85, 0x45, 0xac,
+ 0x41, 0x5e, 0x6b, 0xca, 0x18, 0x61, 0x2d, 0xa6, 0x83, 0x75, 0xa2, 0xf6, 0x97, 0xcb, 0x7c, 0xb7,
+ 0x33, 0x56, 0xfe, 0x29, 0x18, 0xee, 0xf8, 0xcd, 0xa5, 0xd5, 0x2a, 0x16, 0xb3, 0xa0, 0xae, 0x91,
+ 0x1a, 0x2f, 0xc6, 0x12, 0x8e, 0x2e, 0xc2, 0x88, 0xf8, 0x29, 0x55, 0x84, 0xec, 0x6c, 0x16, 0x78,
+ 0x21, 0x56, 0x50, 0xf4, 0x1c, 0x40, 0x27, 0xf0, 0xf7, 0xdc, 0x26, 0x8b, 0x2e, 0x51, 0x36, 0xed,
+ 0x88, 0x6a, 0x0a, 0x82, 0x35, 0x2c, 0xf4, 0x0a, 0x8c, 0x77, 0xbd, 0x90, 0xb3, 0x23, 0x5a, 0x2c,
+ 0x59, 0x65, 0xe1, 0x72, 0x53, 0x07, 0x62, 0x13, 0x17, 0x2d, 0xc0, 0x50, 0xe4, 0x30, 0xbb, 0x98,
+ 0xc1, 0x7c, 0x73, 0xdf, 0x0d, 0x8a, 0xa1, 0x27, 0x07, 0xa1, 0x15, 0xb0, 0xa8, 0x88, 0x3e, 0x21,
+ 0x1d, 0x6a, 0xf9, 0xc1, 0x2e, 0xec, 0xec, 0xfb, 0xbb, 0x04, 0x34, 0x77, 0x5a, 0x61, 0xbf, 0x6f,
+ 0xd0, 0x42, 0x2f, 0x03, 0x90, 0xbb, 0x11, 0x09, 0x3c, 0xa7, 0xa5, 0xac, 0xd9, 0x14, 0x5f, 0x50,
+ 0xf5, 0xd7, 0xfd, 0xe8, 0x66, 0x48, 0x96, 0x15, 0x06, 0xd6, 0xb0, 0xed, 0x5f, 0xaf, 0x00, 0xc4,
+ 0x7c, 0x3b, 0x7a, 0x2b, 0x75, 0x70, 0x3d, 0x53, 0xcc, 0xe9, 0x1f, 0xdd, 0xa9, 0x85, 0xbe, 0xcf,
+ 0x82, 0x51, 0xa7, 0xd5, 0xf2, 0x1b, 0x0e, 0x8f, 0xf6, 0x5b, 0x2a, 0x3e, 0x38, 0x45, 0xfb, 0x0b,
+ 0x71, 0x0d, 0xde, 0x85, 0xe7, 0xe5, 0x0a, 0xd5, 0x20, 0x3d, 0x7b, 0xa1, 0x37, 0x8c, 0x3e, 0x20,
+ 0x9f, 0x8a, 0x65, 0x63, 0x28, 0xd5, 0x53, 0xb1, 0xc2, 0xee, 0x08, 0xfd, 0x95, 0x78, 0xd3, 0x78,
+ 0x25, 0x0e, 0xe4, 0x7b, 0x0c, 0x1a, 0xec, 0x6b, 0xaf, 0x07, 0x22, 0xaa, 0xe9, 0xd1, 0x03, 0x06,
+ 0xf3, 0xdd, 0xf3, 0xb4, 0x77, 0x52, 0x8f, 0xc8, 0x01, 0x9f, 0x81, 0xc9, 0xa6, 0xc9, 0x04, 0x88,
+ 0x95, 0xf8, 0x64, 0x1e, 0xdd, 0x04, 0xcf, 0x10, 0x5f, 0xfb, 0x09, 0x00, 0x4e, 0x12, 0x46, 0x35,
+ 0x1e, 0x4c, 0x62, 0xd5, 0xdb, 0xf2, 0x85, 0xaf, 0x87, 0x9d, 0x3b, 0x97, 0xfb, 0x61, 0x44, 0xda,
+ 0x14, 0x33, 0xbe, 0xdd, 0xd7, 0x45, 0x5d, 0xac, 0xa8, 0xa0, 0xd7, 0x60, 0x88, 0xf9, 0x67, 0x85,
+ 0x33, 0x23, 0xf9, 0x12, 0x67, 0x33, 0x3a, 0x5a, 0xbc, 0x21, 0xd9, 0xdf, 0x10, 0x0b, 0x0a, 0xe8,
+ 0xaa, 0xf4, 0x7e, 0x0c, 0x57, 0xbd, 0x9b, 0x21, 0x61, 0xde, 0x8f, 0x95, 0xc5, 0xf7, 0xc6, 0x8e,
+ 0x8d, 0xbc, 0x3c, 0x33, 0x85, 0x98, 0x51, 0x93, 0x72, 0x51, 0xe2, 0xbf, 0xcc, 0x4c, 0x36, 0x03,
+ 0xf9, 0xdd, 0x33, 0xb3, 0x97, 0xc5, 0xc3, 0x79, 0xcb, 0x24, 0x81, 0x93, 0x34, 0x29, 0x47, 0xca,
+ 0x77, 0xbd, 0xf0, 0x16, 0xe9, 0x75, 0x76, 0xf0, 0x87, 0x38, 0xbb, 0x8d, 0x78, 0x09, 0x16, 0xf5,
+ 0x8f, 0x95, 0x3d, 0x98, 0xf5, 0x60, 0x2a, 0xb9, 0x45, 0x1f, 0x2a, 0x3b, 0xf2, 0x07, 0x03, 0x30,
+ 0x61, 0x2e, 0x29, 0x74, 0x09, 0x2a, 0x82, 0x88, 0xca, 0x26, 0xa0, 0x76, 0xc9, 0x9a, 0x04, 0xe0,
+ 0x18, 0x87, 0x25, 0x91, 0x60, 0xd5, 0x35, 0xf3, 0xe0, 0x38, 0x89, 0x84, 0x82, 0x60, 0x0d, 0x8b,
+ 0x3e, 0xac, 0x36, 0x7d, 0x3f, 0x52, 0x17, 0x92, 0x5a, 0x77, 0x8b, 0xac, 0x14, 0x0b, 0x28, 0xbd,
+ 0x88, 0x76, 0x49, 0xe0, 0x91, 0x96, 0x19, 0x77, 0x58, 0x5d, 0x44, 0xd7, 0x74, 0x20, 0x36, 0x71,
+ 0xe9, 0x75, 0xea, 0x87, 0x6c, 0x21, 0x8b, 0xe7, 0x5b, 0x6c, 0x6e, 0x5d, 0xe7, 0x0e, 0xd8, 0x12,
+ 0x8e, 0x3e, 0x0e, 0x8f, 0xa8, 0xd8, 0x4a, 0x98, 0x6b, 0x33, 0x64, 0x8b, 0x43, 0x86, 0xb4, 0xe5,
+ 0x91, 0xa5, 0x6c, 0x34, 0x9c, 0x57, 0x1f, 0xbd, 0x0a, 0x13, 0x82, 0xc5, 0x97, 0x14, 0x87, 0x4d,
+ 0x0b, 0xa3, 0x6b, 0x06, 0x14, 0x27, 0xb0, 0x65, 0xe4, 0x64, 0xc6, 0x65, 0x4b, 0x0a, 0x23, 0xe9,
+ 0xc8, 0xc9, 0x3a, 0x1c, 0xa7, 0x6a, 0xa0, 0x05, 0x98, 0xe4, 0x3c, 0x98, 0xeb, 0x6d, 0xf3, 0x39,
+ 0x11, 0xce, 0x5c, 0x6a, 0x4b, 0xdd, 0x30, 0xc1, 0x38, 0x89, 0x8f, 0x5e, 0x82, 0x31, 0x27, 0x68,
+ 0xec, 0xb8, 0x11, 0x69, 0x44, 0xdd, 0x80, 0x7b, 0x79, 0x69, 0x26, 0x5a, 0x0b, 0x1a, 0x0c, 0x1b,
+ 0x98, 0xf6, 0x5b, 0x70, 0x22, 0x23, 0x32, 0x03, 0x5d, 0x38, 0x4e, 0xc7, 0x95, 0xdf, 0x94, 0xb0,
+ 0x70, 0x5e, 0xa8, 0xad, 0xca, 0xaf, 0xd1, 0xb0, 0xe8, 0xea, 0x64, 0x11, 0x1c, 0xb4, 0x44, 0x84,
+ 0x6a, 0x75, 0xae, 0x48, 0x00, 0x8e, 0x71, 0xec, 0xff, 0x51, 0x82, 0xc9, 0x0c, 0xdd, 0x0a, 0x4b,
+ 0x86, 0x97, 0x78, 0xa4, 0xc4, 0xb9, 0xef, 0xcc, 0x40, 0xdc, 0xa5, 0x43, 0x04, 0xe2, 0x2e, 0xf7,
+ 0x0a, 0xc4, 0x3d, 0xf0, 0x76, 0x02, 0x71, 0x9b, 0x23, 0x36, 0xd8, 0xd7, 0x88, 0x65, 0x04, 0xef,
+ 0x1e, 0x3a, 0x64, 0xf0, 0x6e, 0x63, 0xd0, 0x87, 0xfb, 0x18, 0xf4, 0x1f, 0x2d, 0xc1, 0x54, 0xd2,
+ 0x94, 0xf4, 0x18, 0xe4, 0xb6, 0xaf, 0x19, 0x72, 0xdb, 0x8b, 0xfd, 0x38, 0xdf, 0xe6, 0xca, 0x70,
+ 0x71, 0x42, 0x86, 0xfb, 0xfe, 0xbe, 0xa8, 0x15, 0xcb, 0x73, 0xff, 0x46, 0x09, 0x4e, 0x65, 0x7a,
+ 0xff, 0x1e, 0xc3, 0xd8, 0xdc, 0x30, 0xc6, 0xe6, 0xd9, 0xbe, 0x1d, 0x93, 0x73, 0x07, 0xe8, 0x76,
+ 0x62, 0x80, 0x2e, 0xf5, 0x4f, 0xb2, 0x78, 0x94, 0xbe, 0x56, 0x86, 0x73, 0x99, 0xf5, 0x62, 0xb1,
+ 0xe7, 0x8a, 0x21, 0xf6, 0x7c, 0x2e, 0x21, 0xf6, 0xb4, 0x8b, 0x6b, 0x1f, 0x8d, 0x1c, 0x54, 0x38,
+ 0xe8, 0xb2, 0x30, 0x03, 0x0f, 0x28, 0x03, 0x35, 0x1c, 0x74, 0x15, 0x21, 0x6c, 0xd2, 0xfd, 0x56,
+ 0x92, 0x7d, 0xfe, 0x5b, 0x0b, 0xce, 0x64, 0xce, 0xcd, 0x31, 0xc8, 0xba, 0xd6, 0x4d, 0x59, 0xd7,
+ 0x53, 0x7d, 0xaf, 0xd6, 0x1c, 0xe1, 0xd7, 0x97, 0x07, 0x73, 0xbe, 0x85, 0xbd, 0xe4, 0x6f, 0xc0,
+ 0xa8, 0xd3, 0x68, 0x90, 0x30, 0x5c, 0xf3, 0x9b, 0x2a, 0xd6, 0xf0, 0xb3, 0xec, 0x9d, 0x15, 0x17,
+ 0xdf, 0x3f, 0x98, 0x9b, 0x4d, 0x92, 0x88, 0xc1, 0x58, 0xa7, 0x80, 0x3e, 0x09, 0x23, 0xa1, 0xb8,
+ 0x37, 0xc5, 0xdc, 0x3f, 0xdf, 0xe7, 0xe0, 0x38, 0x9b, 0xa4, 0x65, 0x06, 0x43, 0x52, 0x92, 0x0a,
+ 0x45, 0xd2, 0x0c, 0x9c, 0x52, 0x3a, 0xd2, 0xc0, 0x29, 0xcf, 0x01, 0xec, 0xa9, 0xc7, 0x40, 0x52,
+ 0xfe, 0xa0, 0x3d, 0x13, 0x34, 0x2c, 0xf4, 0x51, 0x98, 0x0a, 0x79, 0xb4, 0xc0, 0xa5, 0x96, 0x13,
+ 0x32, 0x3f, 0x1a, 0xb1, 0x0a, 0x59, 0xc0, 0xa5, 0x7a, 0x02, 0x86, 0x53, 0xd8, 0x68, 0x45, 0xb6,
+ 0xca, 0x42, 0x1b, 0xf2, 0x85, 0x79, 0x21, 0x6e, 0x51, 0xa4, 0xe2, 0x3d, 0x99, 0x1c, 0x7e, 0x36,
+ 0xf0, 0x5a, 0x4d, 0xf4, 0x49, 0x00, 0xba, 0x7c, 0x84, 0x1c, 0x62, 0x38, 0xff, 0xf0, 0xa4, 0xa7,
+ 0x4a, 0x33, 0xd3, 0xb8, 0x99, 0xf9, 0xd4, 0x56, 0x15, 0x11, 0xac, 0x11, 0x44, 0x5b, 0x30, 0x1e,
+ 0xff, 0x8b, 0x33, 0x55, 0x1e, 0xb2, 0x05, 0x26, 0xf7, 0xae, 0xea, 0x74, 0xb0, 0x49, 0xd6, 0xfe,
+ 0xf1, 0x61, 0x78, 0xb4, 0xe0, 0x2c, 0x46, 0x0b, 0xa6, 0xbe, 0xf7, 0xe9, 0xe4, 0x23, 0x7e, 0x36,
+ 0xb3, 0xb2, 0xf1, 0xaa, 0x4f, 0x2c, 0xf9, 0xd2, 0xdb, 0x5e, 0xf2, 0x3f, 0x64, 0x69, 0xe2, 0x15,
+ 0x6e, 0x59, 0xfa, 0x91, 0x43, 0xde, 0x31, 0x47, 0x28, 0x6f, 0xd9, 0xca, 0x10, 0x5a, 0x3c, 0xd7,
+ 0x77, 0x77, 0xfa, 0x97, 0x62, 0x7c, 0xc5, 0x02, 0x24, 0xc4, 0x2b, 0xa4, 0xa9, 0x36, 0x94, 0x90,
+ 0x67, 0x5c, 0x39, 0xec, 0xf7, 0x2f, 0xa4, 0x28, 0xf1, 0x91, 0x78, 0x59, 0x5e, 0x06, 0x69, 0x84,
+ 0x9e, 0x63, 0x92, 0xd1, 0x3d, 0xf4, 0x71, 0x16, 0x4d, 0xd7, 0x7d, 0x4b, 0x70, 0x40, 0x62, 0xc3,
+ 0xbd, 0x28, 0x22, 0xe9, 0xaa, 0x72, 0xca, 0xea, 0x66, 0x76, 0x57, 0x47, 0xc2, 0x06, 0xa9, 0xe3,
+ 0x7d, 0x7f, 0x77, 0xe1, 0x91, 0x9c, 0x21, 0x7b, 0xa8, 0xcf, 0xf0, 0xdf, 0xb2, 0xe0, 0x6c, 0x61,
+ 0x58, 0x98, 0x6f, 0x42, 0x06, 0xd1, 0xfe, 0x9c, 0x05, 0xd9, 0x93, 0x6d, 0x98, 0x95, 0x5d, 0x82,
+ 0x4a, 0x83, 0x16, 0x6a, 0x7e, 0xc0, 0x71, 0x80, 0x04, 0x09, 0xc0, 0x31, 0x8e, 0x61, 0x3d, 0x56,
+ 0xea, 0x69, 0x3d, 0xf6, 0x2b, 0x16, 0xa4, 0x0e, 0xf9, 0x63, 0xe0, 0x36, 0x56, 0x4d, 0x6e, 0xe3,
+ 0xbd, 0xfd, 0x8c, 0x66, 0x0e, 0xa3, 0xf1, 0xc7, 0x93, 0x70, 0x3a, 0xc7, 0x2d, 0x6f, 0x0f, 0xa6,
+ 0xb7, 0x1b, 0xc4, 0xf4, 0xb0, 0x2e, 0x8a, 0x3c, 0x54, 0xe8, 0x8e, 0xcd, 0x92, 0xc3, 0x4e, 0xa7,
+ 0x50, 0x70, 0xba, 0x09, 0xf4, 0x39, 0x0b, 0x4e, 0x3a, 0x77, 0xc2, 0x65, 0xca, 0x35, 0xba, 0x8d,
+ 0xc5, 0x96, 0xdf, 0xd8, 0xa5, 0x57, 0xb2, 0xdc, 0x08, 0x2f, 0x64, 0x4a, 0xf2, 0x6e, 0xd7, 0x53,
+ 0xf8, 0x46, 0xf3, 0x2c, 0x5b, 0x6e, 0x16, 0x16, 0xce, 0x6c, 0x0b, 0x61, 0x91, 0x42, 0x81, 0xbe,
+ 0x49, 0x0b, 0x62, 0x00, 0x64, 0xf9, 0x4f, 0x72, 0x36, 0x48, 0x42, 0xb0, 0xa2, 0x83, 0x3e, 0x0d,
+ 0x95, 0x6d, 0xe9, 0xee, 0x9b, 0xc1, 0x66, 0xc5, 0x03, 0x59, 0xec, 0x04, 0xcd, 0xd5, 0xf1, 0x0a,
+ 0x09, 0xc7, 0x44, 0xd1, 0xab, 0x50, 0xf6, 0xb6, 0xc2, 0xa2, 0x84, 0xb3, 0x09, 0xbb, 0x4b, 0x1e,
+ 0x69, 0x63, 0x7d, 0xa5, 0x8e, 0x69, 0x45, 0x74, 0x15, 0xca, 0xc1, 0x66, 0x53, 0x88, 0xa1, 0x33,
+ 0x37, 0x29, 0x5e, 0xac, 0xe6, 0xf4, 0x8a, 0x51, 0xc2, 0x8b, 0x55, 0x4c, 0x49, 0xa0, 0x1a, 0x0c,
+ 0x32, 0x5f, 0x36, 0xc1, 0xd4, 0x64, 0x3e, 0xdf, 0x0a, 0x7c, 0x42, 0x79, 0x38, 0x0e, 0x86, 0x80,
+ 0x39, 0x21, 0xb4, 0x01, 0x43, 0x0d, 0x96, 0x9c, 0x54, 0x70, 0x31, 0x1f, 0xc8, 0x14, 0x38, 0x17,
+ 0x64, 0x6d, 0x15, 0xf2, 0x57, 0x86, 0x81, 0x05, 0x2d, 0x46, 0x95, 0x74, 0x76, 0xb6, 0x42, 0x91,
+ 0x4c, 0x3b, 0x9b, 0x6a, 0x41, 0x32, 0x62, 0x41, 0x95, 0x61, 0x60, 0x41, 0x0b, 0xbd, 0x0c, 0xa5,
+ 0xad, 0x86, 0xf0, 0x53, 0xcb, 0x94, 0x3c, 0x9b, 0xc1, 0x52, 0x16, 0x87, 0xee, 0x1d, 0xcc, 0x95,
+ 0x56, 0x96, 0x70, 0x69, 0xab, 0x81, 0xd6, 0x61, 0x78, 0x8b, 0x87, 0x57, 0x10, 0xc2, 0xe5, 0x27,
+ 0xb3, 0x23, 0x3f, 0xa4, 0x22, 0x30, 0x70, 0x9f, 0x27, 0x01, 0xc0, 0x92, 0x08, 0xcb, 0x48, 0xa0,
+ 0xc2, 0x44, 0x88, 0x28, 0x75, 0xf3, 0x87, 0x0b, 0xed, 0xc1, 0x99, 0xcc, 0x38, 0xd8, 0x04, 0xd6,
+ 0x28, 0xd2, 0x55, 0xed, 0xbc, 0xd5, 0x0d, 0x58, 0x28, 0x70, 0x11, 0xce, 0x28, 0x73, 0x55, 0x2f,
+ 0x48, 0xa4, 0xa2, 0x55, 0xad, 0x90, 0x70, 0x4c, 0x14, 0xed, 0xc2, 0xf8, 0x5e, 0xd8, 0xd9, 0x21,
+ 0x72, 0x4b, 0xb3, 0xe8, 0x46, 0x39, 0xfc, 0xd1, 0x2d, 0x81, 0xe8, 0x06, 0x51, 0xd7, 0x69, 0xa5,
+ 0x4e, 0x21, 0xc6, 0xcb, 0xde, 0xd2, 0x89, 0x61, 0x93, 0x36, 0x1d, 0xfe, 0x37, 0xbb, 0xfe, 0xe6,
+ 0x7e, 0x44, 0x44, 0x70, 0xb9, 0xcc, 0xe1, 0x7f, 0x9d, 0xa3, 0xa4, 0x87, 0x5f, 0x00, 0xb0, 0x24,
+ 0x82, 0x6e, 0x89, 0xe1, 0x61, 0xa7, 0xe7, 0x54, 0x7e, 0x04, 0xd8, 0x05, 0x89, 0x94, 0x33, 0x28,
+ 0xec, 0xb4, 0x8c, 0x49, 0xb1, 0x53, 0xb2, 0xb3, 0xe3, 0x47, 0xbe, 0x97, 0x38, 0xa1, 0xa7, 0xf3,
+ 0x4f, 0xc9, 0x5a, 0x06, 0x7e, 0xfa, 0x94, 0xcc, 0xc2, 0xc2, 0x99, 0x6d, 0xa1, 0x26, 0x4c, 0x74,
+ 0xfc, 0x20, 0xba, 0xe3, 0x07, 0x72, 0x7d, 0xa1, 0x02, 0xe1, 0x98, 0x81, 0x29, 0x5a, 0x64, 0x71,
+ 0x1b, 0x4d, 0x08, 0x4e, 0xd0, 0x44, 0x1f, 0x83, 0xe1, 0xb0, 0xe1, 0xb4, 0xc8, 0xea, 0x8d, 0x99,
+ 0x13, 0xf9, 0xd7, 0x4f, 0x9d, 0xa3, 0xe4, 0xac, 0x2e, 0x1e, 0x1d, 0x83, 0xa3, 0x60, 0x49, 0x0e,
+ 0xad, 0xc0, 0x20, 0xcb, 0x38, 0xc7, 0x22, 0x21, 0xe6, 0x04, 0xb2, 0x4d, 0x59, 0xc1, 0xf3, 0xb3,
+ 0x89, 0x15, 0x63, 0x5e, 0x9d, 0xee, 0x01, 0xf1, 0x46, 0xf4, 0xc3, 0x99, 0x53, 0xf9, 0x7b, 0x40,
+ 0x3c, 0x2d, 0x6f, 0xd4, 0x8b, 0xf6, 0x80, 0x42, 0xc2, 0x31, 0x51, 0x7a, 0x32, 0xd3, 0xd3, 0xf4,
+ 0x74, 0x81, 0xf9, 0x56, 0xee, 0x59, 0xca, 0x4e, 0x66, 0x7a, 0x92, 0x52, 0x12, 0xf6, 0xef, 0x0d,
+ 0xa7, 0x79, 0x16, 0x26, 0x55, 0xf8, 0x1e, 0x2b, 0xa5, 0x70, 0xfe, 0x60, 0xbf, 0x42, 0xce, 0x23,
+ 0x7c, 0x0a, 0x7d, 0xce, 0x82, 0xd3, 0x9d, 0xcc, 0x0f, 0x11, 0x0c, 0x40, 0x7f, 0xb2, 0x52, 0xfe,
+ 0xe9, 0x2a, 0x6a, 0x66, 0x36, 0x1c, 0xe7, 0xb4, 0x94, 0x7c, 0x6e, 0x96, 0xdf, 0xf6, 0x73, 0x73,
+ 0x0d, 0x46, 0x1a, 0xfc, 0x29, 0x52, 0x98, 0xac, 0x3b, 0xf9, 0xf6, 0x66, 0xac, 0x84, 0x78, 0xc3,
+ 0x6c, 0x61, 0x45, 0x02, 0xfd, 0xb0, 0x05, 0x67, 0x93, 0x5d, 0xc7, 0x84, 0x81, 0x45, 0xa8, 0x4d,
+ 0x2e, 0xd0, 0x58, 0x11, 0xdf, 0x9f, 0xe2, 0xff, 0x0d, 0xe4, 0xfb, 0xbd, 0x10, 0x70, 0x71, 0x63,
+ 0xa8, 0x9a, 0x21, 0x51, 0x19, 0x32, 0xb5, 0x48, 0x7d, 0x48, 0x55, 0x5e, 0x80, 0xb1, 0xb6, 0xdf,
+ 0xf5, 0x22, 0x61, 0xed, 0x25, 0x2c, 0x4f, 0x98, 0xc5, 0xc5, 0x9a, 0x56, 0x8e, 0x0d, 0xac, 0x84,
+ 0x2c, 0x66, 0xe4, 0x81, 0x65, 0x31, 0x6f, 0xc0, 0x98, 0xa7, 0x99, 0x27, 0x0b, 0x7e, 0xe0, 0x42,
+ 0x7e, 0x98, 0x5c, 0xdd, 0x98, 0x99, 0xf7, 0x52, 0x2f, 0xc1, 0x06, 0xb5, 0xe3, 0x35, 0x03, 0xfb,
+ 0x92, 0x95, 0xc1, 0xd4, 0x73, 0x51, 0xcc, 0x87, 0x4d, 0x51, 0xcc, 0x85, 0xa4, 0x28, 0x26, 0xa5,
+ 0x41, 0x30, 0xa4, 0x30, 0xfd, 0x67, 0x01, 0xea, 0x37, 0xd4, 0xa6, 0xdd, 0x82, 0xf3, 0xbd, 0xae,
+ 0x25, 0x66, 0xf6, 0xd7, 0x54, 0xfa, 0xe2, 0xd8, 0xec, 0xaf, 0xb9, 0x5a, 0xc5, 0x0c, 0xd2, 0x6f,
+ 0x10, 0x27, 0xfb, 0xbf, 0x59, 0x50, 0xae, 0xf9, 0xcd, 0x63, 0x78, 0xf0, 0x7e, 0xc4, 0x78, 0xf0,
+ 0x3e, 0x9a, 0x7d, 0x21, 0x36, 0x73, 0xf5, 0x1f, 0xcb, 0x09, 0xfd, 0xc7, 0xd9, 0x3c, 0x02, 0xc5,
+ 0xda, 0x8e, 0x9f, 0x2a, 0xc3, 0x68, 0xcd, 0x6f, 0x2a, 0x9b, 0xfb, 0x7f, 0xf1, 0x20, 0x36, 0xf7,
+ 0xb9, 0xb9, 0x2c, 0x34, 0xca, 0xcc, 0x5a, 0x50, 0xba, 0x1b, 0x7f, 0x93, 0x99, 0xde, 0xdf, 0x26,
+ 0xee, 0xf6, 0x4e, 0x44, 0x9a, 0xc9, 0xcf, 0x39, 0x3e, 0xd3, 0xfb, 0xdf, 0x2b, 0xc1, 0x64, 0xa2,
+ 0x75, 0xd4, 0x82, 0xf1, 0x96, 0x2e, 0x5d, 0x17, 0xeb, 0xf4, 0x81, 0x04, 0xf3, 0xc2, 0x74, 0x59,
+ 0x2b, 0xc2, 0x26, 0x71, 0x34, 0x0f, 0xa0, 0xd4, 0xcd, 0x52, 0xbc, 0xca, 0xb8, 0x7e, 0xa5, 0x8f,
+ 0x0e, 0xb1, 0x86, 0x81, 0x5e, 0x84, 0xd1, 0xc8, 0xef, 0xf8, 0x2d, 0x7f, 0x7b, 0xff, 0x1a, 0x91,
+ 0xf1, 0xbd, 0x94, 0x41, 0xe2, 0x46, 0x0c, 0xc2, 0x3a, 0x1e, 0xba, 0x0b, 0xd3, 0x8a, 0x48, 0xfd,
+ 0x08, 0x34, 0x0e, 0x4c, 0xaa, 0xb0, 0x9e, 0xa4, 0x88, 0xd3, 0x8d, 0xd8, 0x3f, 0x53, 0xe6, 0x43,
+ 0xec, 0x45, 0xee, 0xbb, 0xbb, 0xe1, 0x9d, 0xbd, 0x1b, 0xbe, 0x66, 0xc1, 0x14, 0x6d, 0x9d, 0x59,
+ 0x5b, 0xc9, 0x6b, 0x5e, 0x05, 0xe6, 0xb6, 0x0a, 0x02, 0x73, 0x5f, 0xa0, 0xa7, 0x66, 0xd3, 0xef,
+ 0x46, 0x42, 0x76, 0xa7, 0x1d, 0x8b, 0xb4, 0x14, 0x0b, 0xa8, 0xc0, 0x23, 0x41, 0x20, 0x3c, 0x44,
+ 0x75, 0x3c, 0x12, 0x04, 0x58, 0x40, 0x65, 0xdc, 0xee, 0x81, 0xec, 0xb8, 0xdd, 0x3c, 0xfc, 0xaa,
+ 0xb0, 0xcb, 0x11, 0x0c, 0x97, 0x16, 0x7e, 0x55, 0x1a, 0xec, 0xc4, 0x38, 0xf6, 0x57, 0xca, 0x30,
+ 0x56, 0xf3, 0x9b, 0xb1, 0xaa, 0xf9, 0x05, 0x43, 0xd5, 0x7c, 0x3e, 0xa1, 0x6a, 0x9e, 0xd2, 0x71,
+ 0xdf, 0x55, 0x2c, 0x7f, 0xa3, 0x14, 0xcb, 0xff, 0xd4, 0x62, 0xb3, 0x56, 0x5d, 0xaf, 0x73, 0xe3,
+ 0x3d, 0x74, 0x19, 0x46, 0xd9, 0x01, 0xc3, 0x5c, 0x92, 0xa5, 0xfe, 0x95, 0xe5, 0xa3, 0x5a, 0x8f,
+ 0x8b, 0xb1, 0x8e, 0x83, 0x2e, 0xc2, 0x48, 0x48, 0x9c, 0xa0, 0xb1, 0xa3, 0x4e, 0x57, 0xa1, 0x2c,
+ 0xe5, 0x65, 0x58, 0x41, 0xd1, 0xeb, 0x71, 0xe4, 0xcf, 0x72, 0xbe, 0x8b, 0xa3, 0xde, 0x1f, 0xbe,
+ 0x45, 0xf2, 0xc3, 0x7d, 0xda, 0xb7, 0x01, 0xa5, 0xf1, 0xfb, 0x88, 0x4d, 0x37, 0x67, 0xc6, 0xa6,
+ 0xab, 0xa4, 0xe2, 0xd2, 0xfd, 0x99, 0x05, 0x13, 0x35, 0xbf, 0x49, 0xb7, 0xee, 0xb7, 0xd2, 0x3e,
+ 0xd5, 0xc3, 0x1e, 0x0f, 0x15, 0x84, 0x3d, 0x7e, 0x02, 0x06, 0x6b, 0x7e, 0x73, 0xb5, 0x56, 0x14,
+ 0x5f, 0xc0, 0xfe, 0x9b, 0x16, 0x0c, 0xd7, 0xfc, 0xe6, 0x31, 0xa8, 0x05, 0x3e, 0x6c, 0xaa, 0x05,
+ 0x1e, 0xc9, 0x59, 0x37, 0x39, 0x9a, 0x80, 0xbf, 0x3e, 0x00, 0xe3, 0xb4, 0x9f, 0xfe, 0xb6, 0x9c,
+ 0x4a, 0x63, 0xd8, 0xac, 0x3e, 0x86, 0x8d, 0x72, 0xe1, 0x7e, 0xab, 0xe5, 0xdf, 0x49, 0x4e, 0xeb,
+ 0x0a, 0x2b, 0xc5, 0x02, 0x8a, 0x9e, 0x81, 0x91, 0x4e, 0x40, 0xf6, 0x5c, 0x5f, 0xb0, 0xb7, 0x9a,
+ 0x92, 0xa5, 0x26, 0xca, 0xb1, 0xc2, 0xa0, 0xcf, 0xc2, 0xd0, 0xf5, 0xe8, 0x55, 0xde, 0xf0, 0xbd,
+ 0x26, 0x97, 0x9c, 0x97, 0x45, 0x6e, 0x0e, 0xad, 0x1c, 0x1b, 0x58, 0xe8, 0x36, 0x54, 0xd8, 0x7f,
+ 0x76, 0xec, 0x1c, 0x3e, 0xcb, 0xab, 0xc8, 0xfa, 0x27, 0x08, 0xe0, 0x98, 0x16, 0x7a, 0x0e, 0x20,
+ 0x92, 0xf1, 0xed, 0x43, 0x11, 0x6d, 0x4d, 0x3d, 0x05, 0x54, 0xe4, 0xfb, 0x10, 0x6b, 0x58, 0xe8,
+ 0x69, 0xa8, 0x44, 0x8e, 0xdb, 0xba, 0xee, 0x7a, 0x24, 0x64, 0x12, 0xf1, 0xb2, 0x4c, 0xbe, 0x27,
+ 0x0a, 0x71, 0x0c, 0xa7, 0xac, 0x18, 0x8b, 0xc4, 0xc1, 0x73, 0x44, 0x8f, 0x30, 0x6c, 0xc6, 0x8a,
+ 0x5d, 0x57, 0xa5, 0x58, 0xc3, 0x40, 0x3b, 0xf0, 0x98, 0xeb, 0xb1, 0x3c, 0x16, 0xa4, 0xbe, 0xeb,
+ 0x76, 0x36, 0xae, 0xd7, 0x6f, 0x91, 0xc0, 0xdd, 0xda, 0x5f, 0x74, 0x1a, 0xbb, 0xc4, 0x93, 0xf9,
+ 0x3b, 0xdf, 0x2b, 0xba, 0xf8, 0xd8, 0x6a, 0x01, 0x2e, 0x2e, 0xa4, 0x64, 0x3f, 0xcf, 0xd6, 0xfb,
+ 0x8d, 0x3a, 0x7a, 0xbf, 0x71, 0x74, 0x9c, 0xd6, 0x8f, 0x8e, 0xfb, 0x07, 0x73, 0x43, 0x37, 0xea,
+ 0x5a, 0x20, 0x89, 0x97, 0xe0, 0x54, 0xcd, 0x6f, 0xd6, 0xfc, 0x20, 0x5a, 0xf1, 0x83, 0x3b, 0x4e,
+ 0xd0, 0x94, 0xcb, 0x6b, 0x4e, 0x86, 0xd2, 0xa0, 0xe7, 0xe7, 0x20, 0x3f, 0x5d, 0x8c, 0x30, 0x19,
+ 0xcf, 0x33, 0x8e, 0xed, 0x90, 0x0e, 0x60, 0x0d, 0xc6, 0x3b, 0xa8, 0x4c, 0x30, 0x57, 0x9c, 0x88,
+ 0xa0, 0x1b, 0x2c, 0xc3, 0x75, 0x7c, 0x8d, 0x8a, 0xea, 0x4f, 0x69, 0x19, 0xae, 0x63, 0x60, 0xe6,
+ 0xbd, 0x6b, 0xd6, 0xb7, 0xff, 0xfb, 0x20, 0x3b, 0x51, 0x13, 0xd9, 0x44, 0xd0, 0xa7, 0x60, 0x22,
+ 0x24, 0xd7, 0x5d, 0xaf, 0x7b, 0x57, 0x8a, 0x30, 0x0a, 0x5c, 0xf8, 0xea, 0xcb, 0x3a, 0x26, 0x17,
+ 0x84, 0x9a, 0x65, 0x38, 0x41, 0x0d, 0xb5, 0x61, 0xe2, 0x8e, 0xeb, 0x35, 0xfd, 0x3b, 0xa1, 0xa4,
+ 0x3f, 0x92, 0x2f, 0x0f, 0xbd, 0xcd, 0x31, 0x13, 0x7d, 0x34, 0x9a, 0xbb, 0x6d, 0x10, 0xc3, 0x09,
+ 0xe2, 0x74, 0xd5, 0x06, 0x5d, 0x6f, 0x21, 0xbc, 0x19, 0x92, 0x40, 0xe4, 0x2a, 0x67, 0xab, 0x16,
+ 0xcb, 0x42, 0x1c, 0xc3, 0xe9, 0xaa, 0x65, 0x7f, 0xae, 0x04, 0x7e, 0x97, 0xa7, 0xae, 0x10, 0xab,
+ 0x16, 0xab, 0x52, 0xac, 0x61, 0xd0, 0x5d, 0xcd, 0xfe, 0xad, 0xfb, 0x1e, 0xf6, 0xfd, 0x48, 0x9e,
+ 0x03, 0x4c, 0xa7, 0xaf, 0x95, 0x63, 0x03, 0x0b, 0xad, 0x00, 0x0a, 0xbb, 0x9d, 0x4e, 0x8b, 0xd9,
+ 0x06, 0x39, 0x2d, 0x46, 0x8a, 0xdb, 0x4b, 0x94, 0x79, 0xe8, 0xdd, 0x7a, 0x0a, 0x8a, 0x33, 0x6a,
+ 0xd0, 0x03, 0x7e, 0x4b, 0x74, 0x75, 0x90, 0x75, 0x95, 0xeb, 0x4e, 0xea, 0xbc, 0x9f, 0x12, 0x86,
+ 0x96, 0x61, 0x38, 0xdc, 0x0f, 0x1b, 0x91, 0x88, 0x94, 0x98, 0x93, 0x30, 0xaa, 0xce, 0x50, 0xb4,
+ 0x7c, 0x85, 0xbc, 0x0a, 0x96, 0x75, 0x51, 0x03, 0x4e, 0x08, 0x8a, 0x4b, 0x3b, 0x8e, 0xa7, 0xd2,
+ 0xef, 0x70, 0x13, 0xe9, 0xcb, 0xf7, 0x0e, 0xe6, 0x4e, 0x88, 0x96, 0x75, 0xf0, 0xfd, 0x83, 0xb9,
+ 0xd3, 0x35, 0xbf, 0x99, 0x01, 0xc1, 0x59, 0xd4, 0xf8, 0xe2, 0x6b, 0x34, 0xfc, 0x76, 0xa7, 0x16,
+ 0xf8, 0x5b, 0x6e, 0x8b, 0x14, 0xe9, 0x9f, 0xea, 0x06, 0xa6, 0x58, 0x7c, 0x46, 0x19, 0x4e, 0x50,
+ 0xb3, 0xbf, 0x93, 0x31, 0x41, 0x2c, 0x3d, 0x77, 0xd4, 0x0d, 0x08, 0x6a, 0xc3, 0x78, 0x87, 0x6d,
+ 0x13, 0x91, 0x50, 0x42, 0xac, 0xf5, 0x17, 0xfa, 0x94, 0xa3, 0xdc, 0xa1, 0x77, 0x87, 0x69, 0x63,
+ 0x54, 0xd3, 0xc9, 0x61, 0x93, 0xba, 0xfd, 0x1b, 0x8f, 0xb0, 0x6b, 0xb4, 0xce, 0x85, 0x23, 0xc3,
+ 0xc2, 0x23, 0x43, 0xbc, 0xc7, 0x66, 0xf3, 0xa5, 0x74, 0xf1, 0xb4, 0x08, 0xaf, 0x0e, 0x2c, 0xeb,
+ 0xa2, 0x4f, 0xc2, 0x04, 0x7d, 0xde, 0xa8, 0xab, 0x2c, 0x9c, 0x39, 0x99, 0x1f, 0x39, 0x43, 0x61,
+ 0xe9, 0xc9, 0x66, 0xf4, 0xca, 0x38, 0x41, 0x0c, 0xbd, 0xce, 0x6c, 0x7a, 0x24, 0xe9, 0x52, 0x3f,
+ 0xa4, 0x75, 0xf3, 0x1d, 0x49, 0x56, 0x23, 0x82, 0xba, 0x70, 0x22, 0x9d, 0x9a, 0x2e, 0x9c, 0xb1,
+ 0xf3, 0xf9, 0xc4, 0x74, 0x76, 0xb9, 0x38, 0x2b, 0x48, 0x1a, 0x16, 0xe2, 0x2c, 0xfa, 0xe8, 0x3a,
+ 0x8c, 0x8b, 0x1c, 0xd5, 0x62, 0xe5, 0x96, 0x0d, 0xe1, 0xe1, 0x38, 0xd6, 0x81, 0xf7, 0x93, 0x05,
+ 0xd8, 0xac, 0x8c, 0xb6, 0xe1, 0xac, 0x96, 0x33, 0xea, 0x4a, 0xe0, 0x30, 0x0b, 0x00, 0x97, 0x1d,
+ 0xa7, 0xda, 0x05, 0xff, 0xf8, 0xbd, 0x83, 0xb9, 0xb3, 0x1b, 0x45, 0x88, 0xb8, 0x98, 0x0e, 0xba,
+ 0x01, 0xa7, 0xb8, 0xdf, 0x77, 0x95, 0x38, 0xcd, 0x96, 0xeb, 0x29, 0x0e, 0x82, 0x6f, 0xf9, 0x33,
+ 0xf7, 0x0e, 0xe6, 0x4e, 0x2d, 0x64, 0x21, 0xe0, 0xec, 0x7a, 0xe8, 0xc3, 0x50, 0x69, 0x7a, 0xa1,
+ 0x18, 0x83, 0x21, 0x23, 0x2d, 0x57, 0xa5, 0xba, 0x5e, 0x57, 0xdf, 0x1f, 0xff, 0xc1, 0x71, 0x05,
+ 0xb4, 0xcd, 0x05, 0xcc, 0x4a, 0xec, 0x31, 0x9c, 0x8a, 0x7b, 0x95, 0x94, 0x0c, 0x1a, 0x9e, 0x9f,
+ 0x5c, 0xb3, 0xa2, 0x1c, 0x22, 0x0c, 0xa7, 0x50, 0x83, 0x30, 0x7a, 0x0d, 0x90, 0x08, 0xff, 0xbe,
+ 0xd0, 0x60, 0xd9, 0x4a, 0x98, 0x3c, 0x7e, 0xc4, 0xf4, 0x45, 0xac, 0xa7, 0x30, 0x70, 0x46, 0x2d,
+ 0x74, 0x95, 0x9e, 0x2a, 0x7a, 0xa9, 0x38, 0xb5, 0x54, 0x12, 0xc5, 0x2a, 0xe9, 0x04, 0x84, 0x59,
+ 0x34, 0x99, 0x14, 0x71, 0xa2, 0x1e, 0x6a, 0xc2, 0x63, 0x4e, 0x37, 0xf2, 0x99, 0xec, 0xde, 0x44,
+ 0xdd, 0xf0, 0x77, 0x89, 0xc7, 0xd4, 0x66, 0x23, 0x8b, 0xe7, 0x29, 0x8b, 0xb2, 0x50, 0x80, 0x87,
+ 0x0b, 0xa9, 0x50, 0xd6, 0x52, 0x65, 0x4d, 0x06, 0x33, 0x9a, 0x57, 0x46, 0xe6, 0xe4, 0x17, 0x61,
+ 0x74, 0xc7, 0x0f, 0xa3, 0x75, 0x12, 0xdd, 0xf1, 0x83, 0x5d, 0x11, 0x95, 0x36, 0x8e, 0xf1, 0x1d,
+ 0x83, 0xb0, 0x8e, 0x47, 0xdf, 0x8e, 0xcc, 0xa8, 0x63, 0xb5, 0xca, 0xf4, 0xe9, 0x23, 0xf1, 0x19,
+ 0x73, 0x95, 0x17, 0x63, 0x09, 0x97, 0xa8, 0xab, 0xb5, 0x25, 0xa6, 0x1b, 0x4f, 0xa0, 0xae, 0xd6,
+ 0x96, 0xb0, 0x84, 0xd3, 0xe5, 0x1a, 0xee, 0x38, 0x01, 0xa9, 0x05, 0x7e, 0x83, 0x84, 0x5a, 0x64,
+ 0xf9, 0x47, 0x79, 0xcc, 0x5d, 0xba, 0x5c, 0xeb, 0x59, 0x08, 0x38, 0xbb, 0x1e, 0x22, 0xe9, 0x7c,
+ 0x69, 0x13, 0xf9, 0x4a, 0x8d, 0x34, 0x3f, 0xd3, 0x67, 0xca, 0x34, 0x0f, 0xa6, 0x54, 0xa6, 0x36,
+ 0x1e, 0x65, 0x37, 0x9c, 0x99, 0x64, 0x6b, 0xbb, 0xff, 0x10, 0xbd, 0x4a, 0x4d, 0xb4, 0x9a, 0xa0,
+ 0x84, 0x53, 0xb4, 0x8d, 0x80, 0x6d, 0x53, 0x3d, 0x03, 0xb6, 0x5d, 0x82, 0x4a, 0xd8, 0xdd, 0x6c,
+ 0xfa, 0x6d, 0xc7, 0xf5, 0x98, 0x6e, 0x5c, 0x7b, 0xc4, 0xd4, 0x25, 0x00, 0xc7, 0x38, 0x68, 0x05,
+ 0x46, 0x1c, 0xa9, 0x03, 0x42, 0xf9, 0x21, 0x7a, 0x94, 0xe6, 0x87, 0x47, 0xad, 0x90, 0x5a, 0x1f,
+ 0x55, 0x17, 0xbd, 0x02, 0xe3, 0xc2, 0x6f, 0x59, 0x24, 0x09, 0x3d, 0x61, 0x3a, 0x97, 0xd5, 0x75,
+ 0x20, 0x36, 0x71, 0xd1, 0x4d, 0x18, 0x8d, 0xfc, 0x16, 0xf3, 0x90, 0xa2, 0x6c, 0xde, 0xe9, 0xfc,
+ 0x60, 0x73, 0x1b, 0x0a, 0x4d, 0x17, 0xbf, 0xaa, 0xaa, 0x58, 0xa7, 0x83, 0x36, 0xf8, 0x7a, 0x67,
+ 0x71, 0xe4, 0x49, 0x38, 0xf3, 0x48, 0xfe, 0x9d, 0xa4, 0xc2, 0xcd, 0x9b, 0xdb, 0x41, 0xd4, 0xc4,
+ 0x3a, 0x19, 0x74, 0x05, 0xa6, 0x3b, 0x81, 0xeb, 0xb3, 0x35, 0xa1, 0xd4, 0x7f, 0x33, 0x66, 0xd6,
+ 0xa8, 0x5a, 0x12, 0x01, 0xa7, 0xeb, 0x30, 0xb7, 0x73, 0x51, 0x38, 0x73, 0x86, 0x67, 0xbe, 0xe0,
+ 0x6f, 0x42, 0x5e, 0x86, 0x15, 0x14, 0xad, 0xb1, 0x93, 0x98, 0x8b, 0x33, 0x66, 0x66, 0xf3, 0xa3,
+ 0x02, 0xe9, 0x62, 0x0f, 0xce, 0xbc, 0xaa, 0xbf, 0x38, 0xa6, 0x80, 0x9a, 0x5a, 0xc2, 0x49, 0xfa,
+ 0x62, 0x08, 0x67, 0x1e, 0x2b, 0xb0, 0xac, 0x4b, 0x3c, 0x2f, 0x62, 0x86, 0xc0, 0x28, 0x0e, 0x71,
+ 0x82, 0x26, 0xfa, 0x28, 0x4c, 0x89, 0x58, 0x86, 0xf1, 0x30, 0x9d, 0x8d, 0xed, 0xce, 0x71, 0x02,
+ 0x86, 0x53, 0xd8, 0x3c, 0xf3, 0x84, 0xb3, 0xd9, 0x22, 0xe2, 0xe8, 0xbb, 0xee, 0x7a, 0xbb, 0xe1,
+ 0xcc, 0x39, 0x76, 0x3e, 0x88, 0xcc, 0x13, 0x49, 0x28, 0xce, 0xa8, 0x81, 0x36, 0x60, 0xaa, 0x13,
+ 0x10, 0xd2, 0x66, 0x8c, 0xbe, 0xb8, 0xcf, 0xe6, 0x78, 0xd4, 0x05, 0xda, 0x93, 0x5a, 0x02, 0x76,
+ 0x3f, 0xa3, 0x0c, 0xa7, 0x28, 0xa0, 0x3b, 0x30, 0xe2, 0xef, 0x91, 0x60, 0x87, 0x38, 0xcd, 0x99,
+ 0xf3, 0x05, 0x7e, 0x10, 0xe2, 0x72, 0xbb, 0x21, 0x70, 0x13, 0x26, 0x03, 0xb2, 0xb8, 0xb7, 0xc9,
+ 0x80, 0x6c, 0x0c, 0xfd, 0x88, 0x05, 0x67, 0xa4, 0x96, 0xa1, 0xde, 0xa1, 0xa3, 0xbe, 0xe4, 0x7b,
+ 0x61, 0x14, 0xf0, 0x38, 0x01, 0x8f, 0xe7, 0xfb, 0xce, 0x6f, 0xe4, 0x54, 0x52, 0x12, 0xd5, 0x33,
+ 0x79, 0x18, 0x21, 0xce, 0x6f, 0x11, 0x2d, 0xc1, 0x74, 0x48, 0x22, 0x79, 0x18, 0x2d, 0x84, 0x2b,
+ 0xaf, 0x57, 0xd7, 0x67, 0x9e, 0xe0, 0x41, 0x0e, 0xe8, 0x66, 0xa8, 0x27, 0x81, 0x38, 0x8d, 0x8f,
+ 0x2e, 0x43, 0xc9, 0x0f, 0x67, 0xde, 0x5b, 0x90, 0xa3, 0x94, 0x3e, 0xc5, 0xb9, 0xe9, 0xd8, 0x8d,
+ 0x3a, 0x2e, 0xf9, 0xe1, 0xec, 0xb7, 0xc3, 0x74, 0x8a, 0x63, 0x38, 0x4c, 0x6e, 0x9f, 0xd9, 0x5d,
+ 0x18, 0x37, 0x66, 0xe5, 0xa1, 0x6a, 0xa9, 0xff, 0xf5, 0x30, 0x54, 0x94, 0x06, 0x13, 0x5d, 0x32,
+ 0x15, 0xd3, 0x67, 0x92, 0x8a, 0xe9, 0x91, 0x9a, 0xdf, 0x34, 0x74, 0xd1, 0x1b, 0x19, 0xd1, 0xe0,
+ 0xf2, 0xce, 0x80, 0xfe, 0x0d, 0xe4, 0x35, 0xb1, 0x70, 0xb9, 0x6f, 0x0d, 0xf7, 0x40, 0xa1, 0xa4,
+ 0xf9, 0x0a, 0x4c, 0x7b, 0x3e, 0x63, 0x53, 0x49, 0x53, 0xf2, 0x20, 0x8c, 0xd5, 0xa8, 0xe8, 0xe1,
+ 0x55, 0x12, 0x08, 0x38, 0x5d, 0x87, 0x36, 0xc8, 0x79, 0x85, 0xa4, 0x68, 0x9b, 0xb3, 0x12, 0x58,
+ 0x40, 0xd1, 0x13, 0x30, 0xd8, 0xf1, 0x9b, 0xab, 0x35, 0xc1, 0xa2, 0x6a, 0x31, 0x48, 0x9b, 0xab,
+ 0x35, 0xcc, 0x61, 0x68, 0x01, 0x86, 0xd8, 0x8f, 0x70, 0x66, 0x2c, 0x3f, 0x8e, 0x06, 0xab, 0xa1,
+ 0x65, 0x4e, 0x62, 0x15, 0xb0, 0xa8, 0xc8, 0x44, 0x6c, 0x94, 0xaf, 0x67, 0x22, 0xb6, 0xe1, 0x07,
+ 0x14, 0xb1, 0x49, 0x02, 0x38, 0xa6, 0x85, 0xee, 0xc2, 0x29, 0xe3, 0x2d, 0xc5, 0x97, 0x08, 0x09,
+ 0x85, 0x2f, 0xff, 0x13, 0x85, 0x8f, 0x28, 0xa1, 0x11, 0x3f, 0x2b, 0x3a, 0x7d, 0x6a, 0x35, 0x8b,
+ 0x12, 0xce, 0x6e, 0x00, 0xb5, 0x60, 0xba, 0x91, 0x6a, 0x75, 0xa4, 0xff, 0x56, 0xd5, 0x84, 0xa6,
+ 0x5b, 0x4c, 0x13, 0x46, 0xaf, 0xc0, 0xc8, 0x9b, 0x7e, 0xc8, 0x8e, 0x77, 0xc1, 0x56, 0x4b, 0x47,
+ 0xf0, 0x91, 0xd7, 0x6f, 0xd4, 0x59, 0xf9, 0xfd, 0x83, 0xb9, 0xd1, 0x9a, 0xdf, 0x94, 0x7f, 0xb1,
+ 0xaa, 0x80, 0xbe, 0xdf, 0x82, 0xd9, 0xf4, 0x63, 0x4d, 0x75, 0x7a, 0xbc, 0xff, 0x4e, 0xdb, 0xa2,
+ 0xd1, 0xd9, 0xe5, 0x5c, 0x72, 0xb8, 0xa0, 0x29, 0xfb, 0x97, 0x2c, 0x26, 0xa8, 0x13, 0x9a, 0x26,
+ 0x12, 0x76, 0x5b, 0xc7, 0x91, 0x30, 0x76, 0xd9, 0x50, 0x82, 0x3d, 0xb0, 0x85, 0xc4, 0x3f, 0xb7,
+ 0x98, 0x85, 0xc4, 0x31, 0xba, 0x42, 0xbc, 0x0e, 0x23, 0x91, 0x4c, 0xe4, 0x5b, 0x90, 0xe3, 0x56,
+ 0xeb, 0x14, 0xb3, 0x12, 0x51, 0x4c, 0xae, 0xca, 0xd9, 0xab, 0xc8, 0xd8, 0xff, 0x88, 0xcf, 0x80,
+ 0x84, 0x1c, 0x83, 0xae, 0xa1, 0x6a, 0xea, 0x1a, 0xe6, 0x7a, 0x7c, 0x41, 0x8e, 0xce, 0xe1, 0x1f,
+ 0x9a, 0xfd, 0x66, 0xc2, 0x9d, 0x77, 0xba, 0x69, 0x8e, 0xfd, 0x79, 0x0b, 0x20, 0x0e, 0xf1, 0xdc,
+ 0x47, 0xaa, 0xb6, 0x97, 0x28, 0x5b, 0xeb, 0x47, 0x7e, 0xc3, 0x6f, 0x09, 0x4d, 0xda, 0x63, 0xb1,
+ 0xba, 0x83, 0x97, 0xdf, 0xd7, 0x7e, 0x63, 0x85, 0x8d, 0xe6, 0x64, 0x40, 0xb9, 0x72, 0xac, 0x80,
+ 0x33, 0x82, 0xc9, 0x7d, 0xd1, 0x82, 0x93, 0x59, 0x76, 0xb5, 0xf4, 0x91, 0xc4, 0xc5, 0x5c, 0xca,
+ 0x6c, 0x4a, 0xcd, 0xe6, 0x2d, 0x51, 0x8e, 0x15, 0x46, 0xdf, 0x39, 0xf0, 0x0e, 0x17, 0x5b, 0xf9,
+ 0x06, 0x8c, 0xd7, 0x02, 0xa2, 0x5d, 0xae, 0xaf, 0xf2, 0x20, 0x05, 0xbc, 0x3f, 0xcf, 0x1c, 0x3a,
+ 0x40, 0x81, 0xfd, 0xe5, 0x12, 0x9c, 0xe4, 0xd6, 0x07, 0x0b, 0x7b, 0xbe, 0xdb, 0xac, 0xf9, 0x4d,
+ 0xe1, 0x3d, 0xf5, 0x09, 0x18, 0xeb, 0x68, 0xb2, 0xc9, 0xa2, 0x38, 0xa1, 0xba, 0x0c, 0x33, 0x96,
+ 0xa6, 0xe8, 0xa5, 0xd8, 0xa0, 0x85, 0x9a, 0x30, 0x46, 0xf6, 0xdc, 0x86, 0x52, 0x61, 0x97, 0x0e,
+ 0x7d, 0xd1, 0xa9, 0x56, 0x96, 0x35, 0x3a, 0xd8, 0xa0, 0xfa, 0x10, 0x32, 0x53, 0xdb, 0x3f, 0x66,
+ 0xc1, 0x23, 0x39, 0x51, 0x45, 0x69, 0x73, 0x77, 0x98, 0x9d, 0x87, 0x58, 0xb6, 0xaa, 0x39, 0x6e,
+ 0xfd, 0x81, 0x05, 0x14, 0x7d, 0x0c, 0x80, 0x5b, 0x6f, 0xd0, 0x57, 0x7a, 0xaf, 0xf0, 0x8b, 0x46,
+ 0xe4, 0x38, 0x2d, 0x08, 0x98, 0xac, 0x8f, 0x35, 0x5a, 0xf6, 0x17, 0x07, 0x60, 0x90, 0x67, 0xd1,
+ 0xaf, 0xc1, 0xf0, 0x0e, 0xcf, 0x13, 0x53, 0x38, 0x6f, 0x14, 0x57, 0xa6, 0x9e, 0x89, 0xe7, 0x4d,
+ 0x2b, 0xc5, 0x92, 0x0c, 0x5a, 0x83, 0x13, 0x3c, 0x5d, 0x4f, 0xab, 0x4a, 0x5a, 0xce, 0xbe, 0x14,
+ 0xfb, 0xf1, 0xdc, 0xb2, 0x4a, 0xfc, 0xb9, 0x9a, 0x46, 0xc1, 0x59, 0xf5, 0xd0, 0xab, 0x30, 0x41,
+ 0x9f, 0x61, 0x7e, 0x37, 0x92, 0x94, 0x78, 0xa2, 0x1e, 0xf5, 0xee, 0xdb, 0x30, 0xa0, 0x38, 0x81,
+ 0x8d, 0x5e, 0x81, 0xf1, 0x4e, 0x4a, 0xc0, 0x39, 0x18, 0x4b, 0x02, 0x4c, 0xa1, 0xa6, 0x89, 0xcb,
+ 0x4c, 0x6b, 0xbb, 0xcc, 0x90, 0x78, 0x63, 0x27, 0x20, 0xe1, 0x8e, 0xdf, 0x6a, 0x32, 0xf6, 0x6f,
+ 0x50, 0x33, 0xad, 0x4d, 0xc0, 0x71, 0xaa, 0x06, 0xa5, 0xb2, 0xe5, 0xb8, 0xad, 0x6e, 0x40, 0x62,
+ 0x2a, 0x43, 0x26, 0x95, 0x95, 0x04, 0x1c, 0xa7, 0x6a, 0xf4, 0x96, 0xdc, 0x0e, 0x1f, 0x8d, 0xe4,
+ 0xd6, 0xfe, 0x5b, 0x25, 0x30, 0xa6, 0xf6, 0x5b, 0x37, 0x81, 0x10, 0xfd, 0xb2, 0xed, 0xa0, 0xd3,
+ 0x10, 0x96, 0x31, 0x99, 0x5f, 0x16, 0xe7, 0x05, 0xe5, 0x5f, 0x46, 0xff, 0x63, 0x56, 0x8b, 0xee,
+ 0xf1, 0x53, 0xb5, 0xc0, 0xa7, 0x97, 0x9c, 0x0c, 0x63, 0xa5, 0x2c, 0xd8, 0x87, 0xa5, 0x77, 0x6f,
+ 0x41, 0xc0, 0x47, 0x61, 0xe3, 0xcb, 0x29, 0x18, 0x46, 0x24, 0x75, 0xe1, 0x6b, 0x2f, 0xa9, 0xa0,
+ 0xcb, 0x30, 0x2a, 0xb2, 0xc2, 0x30, 0x43, 0x6b, 0xbe, 0x99, 0x98, 0xd1, 0x4b, 0x35, 0x2e, 0xc6,
+ 0x3a, 0x8e, 0xfd, 0x03, 0x25, 0x38, 0x91, 0xe1, 0x29, 0xc3, 0xaf, 0x91, 0x6d, 0x37, 0x8c, 0x54,
+ 0xea, 0x51, 0xed, 0x1a, 0xe1, 0xe5, 0x58, 0x61, 0xd0, 0xb3, 0x8a, 0x5f, 0x54, 0xc9, 0xcb, 0x49,
+ 0x58, 0xa2, 0x0b, 0xe8, 0x21, 0x93, 0x78, 0x9e, 0x87, 0x81, 0x6e, 0x48, 0x64, 0xa8, 0x56, 0x75,
+ 0x6d, 0x33, 0xb5, 0x26, 0x83, 0xd0, 0x67, 0xd4, 0xb6, 0xd2, 0x10, 0x6a, 0xcf, 0x28, 0xae, 0x23,
+ 0xe4, 0x30, 0xda, 0xb9, 0x88, 0x78, 0x8e, 0x17, 0x89, 0xc7, 0x56, 0x1c, 0x73, 0x90, 0x95, 0x62,
+ 0x01, 0xb5, 0xbf, 0x50, 0x86, 0x33, 0xb9, 0xbe, 0x73, 0xb4, 0xeb, 0x6d, 0xdf, 0x73, 0x23, 0x5f,
+ 0x59, 0x13, 0xf1, 0x38, 0x83, 0xa4, 0xb3, 0xb3, 0x26, 0xca, 0xb1, 0xc2, 0x40, 0x17, 0x60, 0x90,
+ 0x09, 0x45, 0x53, 0x49, 0x58, 0x17, 0xab, 0x3c, 0xf0, 0x14, 0x07, 0xf7, 0x9d, 0x37, 0xfb, 0x09,
+ 0xca, 0xc1, 0xf8, 0xad, 0xe4, 0x85, 0x42, 0xbb, 0xeb, 0xfb, 0x2d, 0xcc, 0x80, 0xe8, 0x7d, 0x62,
+ 0xbc, 0x12, 0xe6, 0x33, 0xd8, 0x69, 0xfa, 0xa1, 0x36, 0x68, 0x4f, 0xc1, 0xf0, 0x2e, 0xd9, 0x0f,
+ 0x5c, 0x6f, 0x3b, 0x69, 0x56, 0x75, 0x8d, 0x17, 0x63, 0x09, 0x37, 0xb3, 0x06, 0x0e, 0x1f, 0x75,
+ 0xc2, 0xeb, 0x91, 0x9e, 0xec, 0xc9, 0x0f, 0x95, 0x61, 0x12, 0x2f, 0x56, 0xdf, 0x9d, 0x88, 0x9b,
+ 0xe9, 0x89, 0x38, 0xea, 0x84, 0xd7, 0xbd, 0x67, 0xe3, 0xe7, 0x2d, 0x98, 0x64, 0xb9, 0x69, 0x84,
+ 0x87, 0xbc, 0xeb, 0x7b, 0xc7, 0xf0, 0x14, 0x78, 0x02, 0x06, 0x03, 0xda, 0x68, 0x32, 0xfb, 0x2a,
+ 0xeb, 0x09, 0xe6, 0x30, 0xf4, 0x18, 0x0c, 0xb0, 0x2e, 0xd0, 0xc9, 0x1b, 0xe3, 0x47, 0x70, 0xd5,
+ 0x89, 0x1c, 0xcc, 0x4a, 0x59, 0xd8, 0x25, 0x4c, 0x3a, 0x2d, 0x97, 0x77, 0x3a, 0x56, 0x59, 0xbf,
+ 0x33, 0xbc, 0xea, 0x33, 0xbb, 0xf6, 0xf6, 0xc2, 0x2e, 0x65, 0x93, 0x2c, 0x7e, 0x66, 0xff, 0x51,
+ 0x09, 0xce, 0x65, 0xd6, 0xeb, 0x3b, 0xec, 0x52, 0x71, 0xed, 0x87, 0x99, 0x7d, 0xa4, 0x7c, 0x8c,
+ 0x46, 0xab, 0x03, 0xfd, 0x72, 0xff, 0x83, 0x7d, 0x44, 0x43, 0xca, 0x1c, 0xb2, 0x77, 0x48, 0x34,
+ 0xa4, 0xcc, 0xbe, 0xe5, 0x88, 0x09, 0xfe, 0xbc, 0x94, 0xf3, 0x2d, 0x4c, 0x60, 0x70, 0x91, 0x9e,
+ 0x33, 0x0c, 0x18, 0xca, 0x47, 0x38, 0x3f, 0x63, 0x78, 0x19, 0x56, 0x50, 0xb4, 0x00, 0x93, 0x6d,
+ 0xd7, 0xa3, 0x87, 0xcf, 0xbe, 0xc9, 0x8a, 0xab, 0x60, 0x75, 0x6b, 0x26, 0x18, 0x27, 0xf1, 0x91,
+ 0xab, 0x45, 0x4a, 0xe2, 0x5f, 0xf7, 0xca, 0xa1, 0x76, 0xdd, 0xbc, 0xa9, 0xce, 0x57, 0xa3, 0x98,
+ 0x11, 0x35, 0x69, 0x4d, 0x93, 0x13, 0x95, 0xfb, 0x97, 0x13, 0x8d, 0x65, 0xcb, 0x88, 0x66, 0x5f,
+ 0x81, 0xf1, 0x07, 0x56, 0x0c, 0xd8, 0x5f, 0x2b, 0xc3, 0xa3, 0x05, 0xdb, 0x9e, 0x9f, 0xf5, 0xc6,
+ 0x1c, 0x68, 0x67, 0x7d, 0x6a, 0x1e, 0x6a, 0x70, 0x72, 0xab, 0xdb, 0x6a, 0xed, 0x33, 0x5f, 0x0e,
+ 0xd2, 0x94, 0x18, 0x82, 0xa7, 0x94, 0xc2, 0x91, 0x93, 0x2b, 0x19, 0x38, 0x38, 0xb3, 0x26, 0x7d,
+ 0x62, 0xd1, 0x9b, 0x64, 0x5f, 0x91, 0x4a, 0x3c, 0xb1, 0xb0, 0x0e, 0xc4, 0x26, 0x2e, 0xba, 0x02,
+ 0xd3, 0xce, 0x9e, 0xe3, 0xf2, 0x70, 0xd3, 0x92, 0x00, 0x7f, 0x63, 0x29, 0x79, 0xee, 0x42, 0x12,
+ 0x01, 0xa7, 0xeb, 0xa0, 0xd7, 0x00, 0xf9, 0x9b, 0xcc, 0xe2, 0xbb, 0x79, 0x85, 0x78, 0x42, 0xeb,
+ 0xca, 0xe6, 0xae, 0x1c, 0x1f, 0x09, 0x37, 0x52, 0x18, 0x38, 0xa3, 0x56, 0x22, 0x22, 0xd0, 0x50,
+ 0x7e, 0x44, 0xa0, 0xe2, 0x73, 0xb1, 0x67, 0xe2, 0x9b, 0xff, 0x64, 0xd1, 0xeb, 0x8b, 0x33, 0xf9,
+ 0x66, 0x00, 0xcd, 0x57, 0x98, 0xd5, 0x24, 0x97, 0xf5, 0x6a, 0xf1, 0x53, 0x4e, 0x69, 0x56, 0x93,
+ 0x31, 0x10, 0x9b, 0xb8, 0x7c, 0x41, 0x84, 0xb1, 0xdb, 0xae, 0xc1, 0xe2, 0x8b, 0x28, 0x5f, 0x0a,
+ 0x03, 0x7d, 0x1c, 0x86, 0x9b, 0xee, 0x9e, 0x1b, 0x0a, 0x49, 0xd7, 0xa1, 0xd5, 0x4a, 0xf1, 0x39,
+ 0x58, 0xe5, 0x64, 0xb0, 0xa4, 0x67, 0xff, 0x50, 0x09, 0xc6, 0x65, 0x8b, 0xaf, 0x77, 0xfd, 0xc8,
+ 0x39, 0x86, 0x6b, 0xf9, 0x8a, 0x71, 0x2d, 0xbf, 0xaf, 0x28, 0xd4, 0x19, 0xeb, 0x52, 0xee, 0x75,
+ 0x7c, 0x23, 0x71, 0x1d, 0x3f, 0xd9, 0x9b, 0x54, 0xf1, 0x35, 0xfc, 0x8f, 0x2d, 0x98, 0x36, 0xf0,
+ 0x8f, 0xe1, 0x36, 0x58, 0x31, 0x6f, 0x83, 0xc7, 0x7b, 0x7e, 0x43, 0xce, 0x2d, 0xf0, 0xbd, 0xe5,
+ 0x44, 0xdf, 0xd9, 0xe9, 0xff, 0x26, 0x0c, 0xec, 0x38, 0x41, 0xb3, 0x28, 0xb5, 0x43, 0xaa, 0xd2,
+ 0xfc, 0x55, 0x27, 0x10, 0x6a, 0xe7, 0x67, 0xe4, 0xa8, 0xd3, 0xa2, 0x9e, 0x2a, 0x67, 0xd6, 0x14,
+ 0x7a, 0x09, 0x86, 0xc2, 0x86, 0xdf, 0x51, 0x9e, 0x1c, 0xe7, 0xd9, 0x40, 0xb3, 0x92, 0xfb, 0x07,
+ 0x73, 0xc8, 0x6c, 0x8e, 0x16, 0x63, 0x81, 0x8f, 0x3e, 0x01, 0xe3, 0xec, 0x97, 0xb2, 0x01, 0x2b,
+ 0xe7, 0x8b, 0x23, 0xea, 0x3a, 0x22, 0x37, 0x90, 0x34, 0x8a, 0xb0, 0x49, 0x6a, 0x76, 0x1b, 0x2a,
+ 0xea, 0xb3, 0x1e, 0xaa, 0xde, 0xf6, 0xdf, 0x97, 0xe1, 0x44, 0xc6, 0x9a, 0x43, 0xa1, 0x31, 0x13,
+ 0x97, 0xfb, 0x5c, 0xaa, 0x6f, 0x73, 0x2e, 0x42, 0xf6, 0x1a, 0x6a, 0x8a, 0xb5, 0xd5, 0x77, 0xa3,
+ 0x37, 0x43, 0x92, 0x6c, 0x94, 0x16, 0xf5, 0x6e, 0x94, 0x36, 0x76, 0x6c, 0x43, 0x4d, 0x1b, 0x52,
+ 0x3d, 0x7d, 0xa8, 0x73, 0xfa, 0xa7, 0x65, 0x38, 0x99, 0x15, 0x7d, 0x11, 0x7d, 0x36, 0x91, 0x58,
+ 0xf4, 0x85, 0x7e, 0xe3, 0x36, 0xf2, 0x6c, 0xa3, 0x22, 0x20, 0xdc, 0xbc, 0x99, 0x6a, 0xb4, 0xe7,
+ 0x30, 0x8b, 0x36, 0x59, 0x48, 0x8a, 0x80, 0x27, 0x84, 0x95, 0xc7, 0xc7, 0x07, 0xfb, 0xee, 0x80,
+ 0xc8, 0x24, 0x1b, 0x26, 0xec, 0x4b, 0x64, 0x71, 0x6f, 0xfb, 0x12, 0xd9, 0xf2, 0xac, 0x0b, 0xa3,
+ 0xda, 0xd7, 0x3c, 0xd4, 0x19, 0xdf, 0xa5, 0xb7, 0x95, 0xd6, 0xef, 0x87, 0x3a, 0xeb, 0x3f, 0x66,
+ 0x41, 0xc2, 0xe5, 0x40, 0x89, 0xc5, 0xac, 0x5c, 0xb1, 0xd8, 0x79, 0x18, 0x08, 0xfc, 0x16, 0x49,
+ 0x66, 0xe0, 0xc4, 0x7e, 0x8b, 0x60, 0x06, 0xa1, 0x18, 0x51, 0x2c, 0xec, 0x18, 0xd3, 0x1f, 0x72,
+ 0xe2, 0x89, 0xf6, 0x04, 0x0c, 0xb6, 0xc8, 0x1e, 0x69, 0x25, 0x13, 0x25, 0x5d, 0xa7, 0x85, 0x98,
+ 0xc3, 0xec, 0x9f, 0x1f, 0x80, 0xb3, 0x85, 0x41, 0x5d, 0xe8, 0x73, 0x68, 0xdb, 0x89, 0xc8, 0x1d,
+ 0x67, 0x3f, 0x99, 0xd1, 0xe4, 0x0a, 0x2f, 0xc6, 0x12, 0xce, 0x3c, 0xc9, 0x78, 0x60, 0xf2, 0x84,
+ 0x10, 0x51, 0xc4, 0x23, 0x17, 0x50, 0x53, 0x28, 0x55, 0x3e, 0x0a, 0xa1, 0xd4, 0x73, 0x00, 0x61,
+ 0xd8, 0xe2, 0x86, 0x59, 0x4d, 0xe1, 0xa2, 0x16, 0x07, 0xb0, 0xaf, 0x5f, 0x17, 0x10, 0xac, 0x61,
+ 0xa1, 0x2a, 0x4c, 0x75, 0x02, 0x3f, 0xe2, 0x32, 0xd9, 0x2a, 0xb7, 0x5d, 0x1c, 0x34, 0xe3, 0x69,
+ 0xd4, 0x12, 0x70, 0x9c, 0xaa, 0x81, 0x5e, 0x84, 0x51, 0x11, 0x63, 0xa3, 0xe6, 0xfb, 0x2d, 0x21,
+ 0x06, 0x52, 0xe6, 0x7c, 0xf5, 0x18, 0x84, 0x75, 0x3c, 0xad, 0x1a, 0x13, 0xf4, 0x0e, 0x67, 0x56,
+ 0xe3, 0xc2, 0x5e, 0x0d, 0x2f, 0x11, 0x89, 0x75, 0xa4, 0xaf, 0x48, 0xac, 0xb1, 0x60, 0xac, 0xd2,
+ 0xb7, 0xde, 0x11, 0x7a, 0x8a, 0x92, 0x7e, 0x76, 0x00, 0x4e, 0x88, 0x85, 0xf3, 0xb0, 0x97, 0xcb,
+ 0xcd, 0xf4, 0x72, 0x39, 0x0a, 0xd1, 0xd9, 0xbb, 0x6b, 0xe6, 0xb8, 0xd7, 0xcc, 0x0f, 0x5b, 0x60,
+ 0xb2, 0x57, 0xe8, 0xff, 0xcb, 0x4d, 0x09, 0xf5, 0x62, 0x2e, 0xbb, 0xa6, 0xa2, 0x7a, 0xbe, 0xcd,
+ 0xe4, 0x50, 0xf6, 0x7f, 0xb4, 0xe0, 0xf1, 0x9e, 0x14, 0xd1, 0x32, 0x54, 0x18, 0x0f, 0xa8, 0xbd,
+ 0xce, 0x9e, 0x54, 0xb6, 0xcd, 0x12, 0x90, 0xc3, 0x92, 0xc6, 0x35, 0xd1, 0x72, 0x2a, 0xf7, 0xd6,
+ 0x53, 0x19, 0xb9, 0xb7, 0x4e, 0x19, 0xc3, 0xf3, 0x80, 0xc9, 0xb7, 0x7e, 0x90, 0xde, 0x38, 0x86,
+ 0x5f, 0x11, 0xfa, 0xa0, 0x21, 0xf6, 0xb3, 0x13, 0x62, 0x3f, 0x64, 0x62, 0x6b, 0x77, 0xc8, 0x47,
+ 0x61, 0x8a, 0x05, 0xdf, 0x62, 0x96, 0xf6, 0xc2, 0xe3, 0xa9, 0x14, 0x5b, 0xd3, 0x5e, 0x4f, 0xc0,
+ 0x70, 0x0a, 0xdb, 0xfe, 0xc3, 0x32, 0x0c, 0xf1, 0xed, 0x77, 0x0c, 0x6f, 0xc2, 0xa7, 0xa1, 0xe2,
+ 0xb6, 0xdb, 0x5d, 0x9e, 0x4e, 0x69, 0x90, 0xfb, 0x46, 0xd3, 0x79, 0x5a, 0x95, 0x85, 0x38, 0x86,
+ 0xa3, 0x15, 0x21, 0x71, 0x2e, 0x88, 0xef, 0xc9, 0x3b, 0x3e, 0x5f, 0x75, 0x22, 0x87, 0x33, 0x38,
+ 0xea, 0x9e, 0x8d, 0x65, 0xd3, 0xe8, 0x53, 0x00, 0x61, 0x14, 0xb8, 0xde, 0x36, 0x2d, 0x13, 0x61,
+ 0x85, 0xdf, 0x5f, 0x40, 0xad, 0xae, 0x90, 0x39, 0xcd, 0xf8, 0xcc, 0x51, 0x00, 0xac, 0x51, 0x44,
+ 0xf3, 0xc6, 0x4d, 0x3f, 0x9b, 0x98, 0x3b, 0xe0, 0x54, 0xe3, 0x39, 0x9b, 0xfd, 0x10, 0x54, 0x14,
+ 0xf1, 0x5e, 0xf2, 0xa7, 0x31, 0x9d, 0x2d, 0xfa, 0x08, 0x4c, 0x26, 0xfa, 0x76, 0x28, 0xf1, 0xd5,
+ 0x2f, 0x58, 0x30, 0xc9, 0x3b, 0xb3, 0xec, 0xed, 0x89, 0xdb, 0xe0, 0x2d, 0x38, 0xd9, 0xca, 0x38,
+ 0x95, 0xc5, 0xf4, 0xf7, 0x7f, 0x8a, 0x2b, 0x71, 0x55, 0x16, 0x14, 0x67, 0xb6, 0x81, 0x2e, 0xd2,
+ 0x1d, 0x47, 0x4f, 0x5d, 0xa7, 0x25, 0x5c, 0xa5, 0xc7, 0xf8, 0x6e, 0xe3, 0x65, 0x58, 0x41, 0xed,
+ 0xdf, 0xb1, 0x60, 0x9a, 0xf7, 0xfc, 0x1a, 0xd9, 0x57, 0x67, 0xd3, 0x37, 0xb2, 0xef, 0x22, 0x91,
+ 0x5f, 0x29, 0x27, 0x91, 0x9f, 0xfe, 0x69, 0xe5, 0xc2, 0x4f, 0xfb, 0xb2, 0x05, 0x62, 0x85, 0x1c,
+ 0x83, 0x10, 0xe2, 0xdb, 0x4d, 0x21, 0xc4, 0x6c, 0xfe, 0x26, 0xc8, 0x91, 0x3e, 0xfc, 0x99, 0x05,
+ 0x53, 0x1c, 0x21, 0xd6, 0x96, 0x7f, 0x43, 0xe7, 0xa1, 0x9f, 0x74, 0xdf, 0xd7, 0xc8, 0xfe, 0x86,
+ 0x5f, 0x73, 0xa2, 0x9d, 0xec, 0x8f, 0x32, 0x26, 0x6b, 0xa0, 0x70, 0xb2, 0x9a, 0x72, 0x03, 0x19,
+ 0x79, 0x6e, 0x7a, 0xc4, 0x8f, 0x38, 0x6c, 0x9e, 0x1b, 0xfb, 0xeb, 0x16, 0x20, 0xde, 0x8c, 0xc1,
+ 0xb8, 0x51, 0x76, 0x88, 0x95, 0x6a, 0x17, 0x5d, 0x7c, 0x34, 0x29, 0x08, 0xd6, 0xb0, 0x8e, 0x64,
+ 0x78, 0x12, 0x26, 0x0f, 0xe5, 0xde, 0x26, 0x0f, 0x87, 0x18, 0xd1, 0x7f, 0x33, 0x04, 0x49, 0xdf,
+ 0x2a, 0x74, 0x0b, 0xc6, 0x1a, 0x4e, 0xc7, 0xd9, 0x74, 0x5b, 0x6e, 0xe4, 0x92, 0xb0, 0xc8, 0x1e,
+ 0x6a, 0x49, 0xc3, 0x13, 0x4a, 0x6a, 0xad, 0x04, 0x1b, 0x74, 0xd0, 0x3c, 0x40, 0x27, 0x70, 0xf7,
+ 0xdc, 0x16, 0xd9, 0x66, 0xb2, 0x12, 0x16, 0x9c, 0x81, 0x1b, 0x67, 0xc9, 0x52, 0xac, 0x61, 0x64,
+ 0x38, 0xb2, 0x97, 0x1f, 0xb2, 0x23, 0x3b, 0x1c, 0x9b, 0x23, 0xfb, 0xc0, 0xa1, 0x1c, 0xd9, 0x47,
+ 0x0e, 0xed, 0xc8, 0x3e, 0xd8, 0x97, 0x23, 0x3b, 0x86, 0xd3, 0x92, 0xf7, 0xa4, 0xff, 0x57, 0xdc,
+ 0x16, 0x11, 0x0f, 0x0e, 0x1e, 0x51, 0x62, 0xf6, 0xde, 0xc1, 0xdc, 0x69, 0x9c, 0x89, 0x81, 0x73,
+ 0x6a, 0xa2, 0x8f, 0xc1, 0x8c, 0xd3, 0x6a, 0xf9, 0x77, 0xd4, 0xa4, 0x2e, 0x87, 0x0d, 0xa7, 0xc5,
+ 0x95, 0x10, 0xc3, 0x8c, 0xea, 0x63, 0xf7, 0x0e, 0xe6, 0x66, 0x16, 0x72, 0x70, 0x70, 0x6e, 0x6d,
+ 0xf4, 0x61, 0xa8, 0x74, 0x02, 0xbf, 0xb1, 0xa6, 0x39, 0x80, 0x9e, 0xa3, 0x03, 0x58, 0x93, 0x85,
+ 0xf7, 0x0f, 0xe6, 0xc6, 0xd5, 0x1f, 0x76, 0xe1, 0xc7, 0x15, 0x32, 0x3c, 0xd3, 0x47, 0x8f, 0xd4,
+ 0x33, 0x7d, 0x17, 0x4e, 0xd4, 0x49, 0xe0, 0x3a, 0x2d, 0xf7, 0x2d, 0xca, 0x2f, 0xcb, 0xf3, 0x69,
+ 0x03, 0x2a, 0x41, 0xe2, 0x44, 0xee, 0x2b, 0xe6, 0xa6, 0x96, 0x70, 0x44, 0x9e, 0xc0, 0x31, 0x21,
+ 0xfb, 0x7f, 0x5b, 0x30, 0x2c, 0x7c, 0xa9, 0x8e, 0x81, 0x6b, 0x5c, 0x30, 0x34, 0x09, 0x73, 0xd9,
+ 0x03, 0xc6, 0x3a, 0x93, 0xab, 0x43, 0x58, 0x4d, 0xe8, 0x10, 0x1e, 0x2f, 0x22, 0x52, 0xac, 0x3d,
+ 0xf8, 0x6b, 0x65, 0xca, 0xbd, 0x1b, 0x5e, 0xbd, 0x0f, 0x7f, 0x08, 0xd6, 0x61, 0x38, 0x14, 0x5e,
+ 0xa5, 0xa5, 0x7c, 0x9f, 0x86, 0xe4, 0x24, 0xc6, 0x76, 0x6c, 0xc2, 0x8f, 0x54, 0x12, 0xc9, 0x74,
+ 0x57, 0x2d, 0x3f, 0x44, 0x77, 0xd5, 0x5e, 0x7e, 0xcf, 0x03, 0x47, 0xe1, 0xf7, 0x6c, 0x7f, 0x95,
+ 0xdd, 0x9c, 0x7a, 0xf9, 0x31, 0x30, 0x55, 0x57, 0xcc, 0x3b, 0xd6, 0x2e, 0x58, 0x59, 0xa2, 0x53,
+ 0x39, 0xcc, 0xd5, 0xcf, 0x59, 0x70, 0x36, 0xe3, 0xab, 0x34, 0x4e, 0xeb, 0x19, 0x18, 0x71, 0xba,
+ 0x4d, 0x57, 0xed, 0x65, 0x4d, 0x9f, 0xb8, 0x20, 0xca, 0xb1, 0xc2, 0x40, 0x4b, 0x30, 0x4d, 0xee,
+ 0x76, 0x5c, 0xae, 0x4a, 0xd5, 0xcd, 0x7f, 0xcb, 0xdc, 0x01, 0x6f, 0x39, 0x09, 0xc4, 0x69, 0x7c,
+ 0x15, 0x6b, 0xa6, 0x9c, 0x1b, 0x6b, 0xe6, 0xef, 0x5a, 0x30, 0xaa, 0xfc, 0x2a, 0x1f, 0xfa, 0x68,
+ 0x7f, 0xd4, 0x1c, 0xed, 0x47, 0x0b, 0x46, 0x3b, 0x67, 0x98, 0x7f, 0xab, 0xa4, 0xfa, 0x5b, 0xf3,
+ 0x83, 0xa8, 0x0f, 0x0e, 0xee, 0xc1, 0x5d, 0x17, 0x2e, 0xc3, 0xa8, 0xd3, 0xe9, 0x48, 0x80, 0xb4,
+ 0x41, 0x63, 0x11, 0x94, 0xe3, 0x62, 0xac, 0xe3, 0x28, 0x4f, 0x8a, 0x72, 0xae, 0x27, 0x45, 0x13,
+ 0x20, 0x72, 0x82, 0x6d, 0x12, 0xd1, 0x32, 0x61, 0x32, 0x9b, 0x7f, 0xde, 0x74, 0x23, 0xb7, 0x35,
+ 0xef, 0x7a, 0x51, 0x18, 0x05, 0xf3, 0xab, 0x5e, 0x74, 0x23, 0xe0, 0x4f, 0x48, 0x2d, 0x5a, 0x93,
+ 0xa2, 0x85, 0x35, 0xba, 0x32, 0x86, 0x00, 0x6b, 0x63, 0xd0, 0x34, 0x66, 0x58, 0x17, 0xe5, 0x58,
+ 0x61, 0xd8, 0x1f, 0x62, 0xb7, 0x0f, 0x1b, 0xd3, 0xc3, 0x45, 0x2a, 0xfa, 0xfb, 0x63, 0x6a, 0x36,
+ 0x98, 0x26, 0xb3, 0xaa, 0xc7, 0x43, 0x2a, 0x3e, 0xec, 0x69, 0xc3, 0xba, 0x5f, 0x5f, 0x1c, 0x34,
+ 0x09, 0x7d, 0x47, 0xca, 0x40, 0xe5, 0xd9, 0x1e, 0xb7, 0xc6, 0x21, 0x4c, 0x52, 0x58, 0x3a, 0x15,
+ 0x96, 0x6c, 0x62, 0xb5, 0x26, 0xf6, 0x85, 0x96, 0x4e, 0x45, 0x00, 0x70, 0x8c, 0x43, 0x99, 0x29,
+ 0xf5, 0x27, 0x9c, 0x41, 0x71, 0x58, 0x51, 0x85, 0x1d, 0x62, 0x0d, 0x03, 0x5d, 0x12, 0x02, 0x05,
+ 0xae, 0x17, 0x78, 0x34, 0x21, 0x50, 0x90, 0xc3, 0xa5, 0x49, 0x81, 0x2e, 0xc3, 0xa8, 0xca, 0xa0,
+ 0x5d, 0xe3, 0x89, 0x8c, 0xc4, 0x32, 0x5b, 0x8e, 0x8b, 0xb1, 0x8e, 0x83, 0x36, 0x60, 0x32, 0xe4,
+ 0x72, 0x36, 0x15, 0xeb, 0x99, 0xcb, 0x2b, 0xdf, 0x2f, 0xad, 0x80, 0xea, 0x26, 0xf8, 0x3e, 0x2b,
+ 0xe2, 0xa7, 0x93, 0xf4, 0xf3, 0x4f, 0x92, 0x40, 0xaf, 0xc2, 0x44, 0xcb, 0x77, 0x9a, 0x8b, 0x4e,
+ 0xcb, 0xf1, 0x1a, 0x6c, 0x7c, 0x46, 0xcc, 0x44, 0xac, 0xd7, 0x0d, 0x28, 0x4e, 0x60, 0x53, 0xe6,
+ 0x4d, 0x2f, 0x11, 0xf1, 0xc9, 0x1d, 0x6f, 0x9b, 0x84, 0x22, 0x1f, 0x32, 0x63, 0xde, 0xae, 0xe7,
+ 0xe0, 0xe0, 0xdc, 0xda, 0xe8, 0x25, 0x18, 0x93, 0x9f, 0xaf, 0x85, 0xc5, 0x88, 0x9d, 0x52, 0x34,
+ 0x18, 0x36, 0x30, 0xd1, 0x1d, 0x38, 0x25, 0xff, 0x6f, 0x04, 0xce, 0xd6, 0x96, 0xdb, 0x10, 0xbe,
+ 0xe2, 0xdc, 0x7b, 0x75, 0x41, 0xba, 0x58, 0x2e, 0x67, 0x21, 0xdd, 0x3f, 0x98, 0x3b, 0x2f, 0x46,
+ 0x2d, 0x13, 0xce, 0x26, 0x31, 0x9b, 0x3e, 0x5a, 0x83, 0x13, 0x3b, 0xc4, 0x69, 0x45, 0x3b, 0x4b,
+ 0x3b, 0xa4, 0xb1, 0x2b, 0x37, 0x1d, 0x0b, 0xb6, 0xa1, 0x39, 0x70, 0x5c, 0x4d, 0xa3, 0xe0, 0xac,
+ 0x7a, 0xe8, 0x0d, 0x98, 0xe9, 0x74, 0x37, 0x5b, 0x6e, 0xb8, 0xb3, 0xee, 0x47, 0xcc, 0x14, 0x48,
+ 0x25, 0xe4, 0x16, 0x51, 0x39, 0x54, 0x38, 0x93, 0x5a, 0x0e, 0x1e, 0xce, 0xa5, 0x80, 0xde, 0x82,
+ 0x53, 0x89, 0xc5, 0x20, 0xe2, 0x12, 0x4c, 0xe4, 0x67, 0x7b, 0xa8, 0x67, 0x55, 0x10, 0x21, 0x3e,
+ 0xb2, 0x40, 0x38, 0xbb, 0x09, 0xf4, 0x32, 0x80, 0xdb, 0x59, 0x71, 0xda, 0x6e, 0x8b, 0x3e, 0x17,
+ 0x4f, 0xb0, 0x75, 0x42, 0x9f, 0x0e, 0xb0, 0x5a, 0x93, 0xa5, 0xf4, 0x7c, 0x16, 0xff, 0xf6, 0xb1,
+ 0x86, 0x8d, 0x6a, 0x30, 0x21, 0xfe, 0xed, 0x8b, 0x69, 0x9d, 0x56, 0x21, 0x00, 0x26, 0x64, 0x0d,
+ 0x35, 0x97, 0xc8, 0x2c, 0x61, 0xb3, 0x97, 0xa8, 0x8f, 0xb6, 0xe1, 0xac, 0xcc, 0xde, 0xa5, 0xaf,
+ 0x53, 0x39, 0x0f, 0x21, 0x4b, 0xb3, 0x30, 0xc2, 0xfd, 0x43, 0x16, 0x8a, 0x10, 0x71, 0x31, 0x1d,
+ 0x7a, 0xbf, 0xeb, 0xcb, 0x9d, 0x7b, 0xd0, 0x9e, 0xe2, 0xe6, 0x49, 0xf4, 0x7e, 0xbf, 0x9e, 0x04,
+ 0xe2, 0x34, 0x3e, 0x0a, 0xe1, 0x94, 0xeb, 0x65, 0xad, 0xee, 0xd3, 0x8c, 0xd0, 0x47, 0xb8, 0xf3,
+ 0x70, 0xf1, 0xca, 0xce, 0x84, 0xf3, 0x95, 0x9d, 0x49, 0xfb, 0xed, 0x59, 0xe1, 0xfd, 0xb6, 0x45,
+ 0x6b, 0x6b, 0x9c, 0x3a, 0xfa, 0x34, 0x8c, 0xe9, 0x1f, 0x26, 0xb8, 0x8e, 0x0b, 0xd9, 0x8c, 0xac,
+ 0x76, 0x3e, 0x70, 0x3e, 0x5f, 0x9d, 0x01, 0x3a, 0x0c, 0x1b, 0x14, 0x51, 0x23, 0xc3, 0xcd, 0xfe,
+ 0x52, 0x7f, 0x5c, 0x4d, 0xff, 0x46, 0x68, 0x04, 0xb2, 0x97, 0x3d, 0xba, 0x0e, 0x23, 0x8d, 0x96,
+ 0x4b, 0xbc, 0x68, 0xb5, 0x56, 0x14, 0x4b, 0x6f, 0x49, 0xe0, 0x88, 0x7d, 0x24, 0xb2, 0x26, 0xf0,
+ 0x32, 0xac, 0x28, 0xd8, 0xbf, 0x5a, 0x82, 0xb9, 0x1e, 0x29, 0x38, 0x12, 0x2a, 0x29, 0xab, 0x2f,
+ 0x95, 0xd4, 0x82, 0xcc, 0x3a, 0xbf, 0x9e, 0x90, 0x76, 0x25, 0x32, 0xca, 0xc7, 0x32, 0xaf, 0x24,
+ 0x7e, 0xdf, 0x2e, 0x02, 0xba, 0x56, 0x6b, 0xa0, 0xa7, 0x93, 0x8b, 0xa1, 0xcd, 0x1e, 0xec, 0xff,
+ 0x09, 0x9c, 0xab, 0x99, 0xb4, 0xbf, 0x5a, 0x82, 0x53, 0x6a, 0x08, 0xbf, 0x75, 0x07, 0xee, 0x66,
+ 0x7a, 0xe0, 0x8e, 0x40, 0xaf, 0x6b, 0xdf, 0x80, 0x21, 0x1e, 0x1c, 0xb0, 0x0f, 0xd6, 0xfb, 0x09,
+ 0x33, 0xf8, 0xae, 0xe2, 0xf6, 0x8c, 0x00, 0xbc, 0xdf, 0x6f, 0xc1, 0x64, 0xc2, 0xd7, 0x0c, 0x61,
+ 0xcd, 0x21, 0xf9, 0x41, 0xd8, 0xe3, 0x2c, 0xc6, 0xfb, 0x3c, 0x0c, 0xec, 0xf8, 0x61, 0x94, 0x34,
+ 0xfa, 0xb8, 0xea, 0x87, 0x11, 0x66, 0x10, 0xfb, 0x77, 0x2d, 0x18, 0xdc, 0x70, 0x5c, 0x2f, 0x92,
+ 0x0a, 0x02, 0x2b, 0x47, 0x41, 0xd0, 0xcf, 0x77, 0xa1, 0x17, 0x61, 0x88, 0x6c, 0x6d, 0x91, 0x46,
+ 0x24, 0x66, 0x55, 0x46, 0x73, 0x18, 0x5a, 0x66, 0xa5, 0x94, 0x17, 0x64, 0x8d, 0xf1, 0xbf, 0x58,
+ 0x20, 0xa3, 0xdb, 0x50, 0x89, 0xdc, 0x36, 0x59, 0x68, 0x36, 0x85, 0xda, 0xfc, 0x01, 0x22, 0x52,
+ 0x6c, 0x48, 0x02, 0x38, 0xa6, 0x65, 0x7f, 0xa1, 0x04, 0x10, 0x47, 0x55, 0xea, 0xf5, 0x89, 0x8b,
+ 0x29, 0x85, 0xea, 0x85, 0x0c, 0x85, 0x2a, 0x8a, 0x09, 0x66, 0x68, 0x53, 0xd5, 0x30, 0x95, 0xfb,
+ 0x1a, 0xa6, 0x81, 0xc3, 0x0c, 0xd3, 0x12, 0x4c, 0xc7, 0x51, 0xa1, 0xcc, 0xa0, 0x78, 0xec, 0xfa,
+ 0xdc, 0x48, 0x02, 0x71, 0x1a, 0xdf, 0x26, 0x70, 0x5e, 0x05, 0xc7, 0x11, 0x37, 0x1a, 0xb3, 0xca,
+ 0xd6, 0x15, 0xd4, 0x3d, 0xc6, 0x29, 0xd6, 0x18, 0x97, 0x72, 0x35, 0xc6, 0x3f, 0x69, 0xc1, 0xc9,
+ 0x64, 0x3b, 0xcc, 0x85, 0xf9, 0xf3, 0x16, 0x9c, 0x62, 0x7a, 0x73, 0xd6, 0x6a, 0x5a, 0x4b, 0xff,
+ 0x42, 0x61, 0xc0, 0x9f, 0x9c, 0x1e, 0xc7, 0x61, 0x43, 0xd6, 0xb2, 0x48, 0xe3, 0xec, 0x16, 0xed,
+ 0xff, 0x50, 0x82, 0x99, 0xbc, 0x48, 0x41, 0xcc, 0x69, 0xc3, 0xb9, 0x5b, 0xdf, 0x25, 0x77, 0x84,
+ 0x69, 0x7c, 0xec, 0xb4, 0xc1, 0x8b, 0xb1, 0x84, 0x27, 0xb3, 0x2a, 0x94, 0xfa, 0xcc, 0xaa, 0xb0,
+ 0x03, 0xd3, 0x77, 0x76, 0x88, 0x77, 0xd3, 0x0b, 0x9d, 0xc8, 0x0d, 0xb7, 0x5c, 0xa6, 0x63, 0xe6,
+ 0xeb, 0x46, 0xa6, 0x62, 0x9d, 0xbe, 0x9d, 0x44, 0xb8, 0x7f, 0x30, 0x77, 0xd6, 0x28, 0x88, 0xbb,
+ 0xcc, 0x0f, 0x12, 0x9c, 0x26, 0x9a, 0x4e, 0x4a, 0x31, 0xf0, 0x10, 0x93, 0x52, 0xd8, 0x9f, 0xb7,
+ 0xe0, 0x4c, 0x6e, 0x5e, 0x62, 0x74, 0x11, 0x46, 0x9c, 0x8e, 0xcb, 0xc5, 0xf4, 0xe2, 0x18, 0x65,
+ 0xe2, 0xa0, 0xda, 0x2a, 0x17, 0xd2, 0x2b, 0x28, 0x3d, 0xbd, 0x76, 0x5d, 0xaf, 0x99, 0x3c, 0xbd,
+ 0xae, 0xb9, 0x5e, 0x13, 0x33, 0x88, 0x3a, 0x8e, 0xcb, 0x79, 0xc7, 0xb1, 0xfd, 0x7d, 0x16, 0x08,
+ 0x87, 0xd3, 0x3e, 0xce, 0xee, 0x4f, 0xc0, 0xd8, 0x5e, 0x3a, 0x71, 0xd5, 0xf9, 0x7c, 0x0f, 0x5c,
+ 0x91, 0xae, 0x4a, 0x31, 0x64, 0x46, 0x92, 0x2a, 0x83, 0x96, 0xdd, 0x04, 0x01, 0xad, 0x12, 0x26,
+ 0x84, 0xee, 0xdd, 0x9b, 0xe7, 0x00, 0x9a, 0x0c, 0x97, 0x65, 0xb3, 0x2c, 0x99, 0x37, 0x73, 0x55,
+ 0x41, 0xb0, 0x86, 0x65, 0xff, 0xbb, 0x12, 0x8c, 0xca, 0x44, 0x49, 0x5d, 0xaf, 0x1f, 0x51, 0xd1,
+ 0xa1, 0x32, 0xa7, 0xa2, 0x4b, 0x50, 0x61, 0xb2, 0xcc, 0x5a, 0x2c, 0x61, 0x53, 0x92, 0x84, 0x35,
+ 0x09, 0xc0, 0x31, 0x0e, 0xdd, 0x45, 0x61, 0x77, 0x93, 0xa1, 0x27, 0xdc, 0x23, 0xeb, 0xbc, 0x18,
+ 0x4b, 0x38, 0xfa, 0x18, 0x4c, 0xf1, 0x7a, 0x81, 0xdf, 0x71, 0xb6, 0xb9, 0xfe, 0x63, 0x50, 0xc5,
+ 0x9c, 0x98, 0x5a, 0x4b, 0xc0, 0xee, 0x1f, 0xcc, 0x9d, 0x4c, 0x96, 0x31, 0xc5, 0x5e, 0x8a, 0x0a,
+ 0x33, 0x73, 0xe2, 0x8d, 0xd0, 0xdd, 0x9f, 0xb2, 0x8e, 0x8a, 0x41, 0x58, 0xc7, 0xb3, 0x3f, 0x0d,
+ 0x28, 0x9d, 0x32, 0x0a, 0xbd, 0xc6, 0x6d, 0x5b, 0xdd, 0x80, 0x34, 0x8b, 0x14, 0x7d, 0x7a, 0x64,
+ 0x05, 0xe9, 0xd9, 0xc4, 0x6b, 0x61, 0x55, 0xdf, 0xfe, 0x8b, 0x65, 0x98, 0x4a, 0xfa, 0x72, 0xa3,
+ 0xab, 0x30, 0xc4, 0x59, 0x0f, 0x41, 0xbe, 0xc0, 0x8e, 0x44, 0xf3, 0x00, 0x67, 0x87, 0xb0, 0xe0,
+ 0x5e, 0x44, 0x7d, 0xf4, 0x06, 0x8c, 0x36, 0xfd, 0x3b, 0xde, 0x1d, 0x27, 0x68, 0x2e, 0xd4, 0x56,
+ 0xc5, 0x72, 0xce, 0x7c, 0xd8, 0x56, 0x63, 0x34, 0xdd, 0xab, 0x9c, 0xe9, 0x4c, 0x63, 0x10, 0xd6,
+ 0xc9, 0xa1, 0x0d, 0x16, 0x67, 0x7e, 0xcb, 0xdd, 0x5e, 0x73, 0x3a, 0x45, 0x8e, 0x0e, 0x4b, 0x12,
+ 0x49, 0xa3, 0x3c, 0x2e, 0x82, 0xd1, 0x73, 0x00, 0x8e, 0x09, 0xa1, 0xcf, 0xc2, 0x89, 0x30, 0x47,
+ 0xdc, 0x9e, 0x97, 0x41, 0xb0, 0x48, 0x02, 0xbd, 0xf8, 0xc8, 0xbd, 0x83, 0xb9, 0x13, 0x59, 0x82,
+ 0xf9, 0xac, 0x66, 0xec, 0x2f, 0x9e, 0x04, 0x63, 0x13, 0x1b, 0x09, 0x65, 0xad, 0x23, 0x4a, 0x28,
+ 0x8b, 0x61, 0x84, 0xb4, 0x3b, 0xd1, 0x7e, 0xd5, 0x0d, 0x8a, 0xd2, 0xea, 0x2f, 0x0b, 0x9c, 0x34,
+ 0x4d, 0x09, 0xc1, 0x8a, 0x4e, 0x76, 0xd6, 0xdf, 0xf2, 0x37, 0x30, 0xeb, 0xef, 0xc0, 0x31, 0x66,
+ 0xfd, 0x5d, 0x87, 0xe1, 0x6d, 0x37, 0xc2, 0xa4, 0xe3, 0x0b, 0xa6, 0x3f, 0x73, 0x1d, 0x5e, 0xe1,
+ 0x28, 0xe9, 0xfc, 0x92, 0x02, 0x80, 0x25, 0x11, 0xf4, 0x9a, 0xda, 0x81, 0x43, 0xf9, 0x0f, 0xf3,
+ 0xb4, 0xc1, 0x43, 0xe6, 0x1e, 0x14, 0xb9, 0x7d, 0x87, 0x1f, 0x34, 0xb7, 0xef, 0x8a, 0xcc, 0xc8,
+ 0x3b, 0x92, 0xef, 0x95, 0xc4, 0x12, 0xee, 0xf6, 0xc8, 0xc3, 0x7b, 0x4b, 0xcf, 0x62, 0x5c, 0xc9,
+ 0x3f, 0x09, 0x54, 0x82, 0xe2, 0x3e, 0x73, 0x17, 0x7f, 0x9f, 0x05, 0xa7, 0x3a, 0x59, 0x09, 0xbd,
+ 0x85, 0x6d, 0xc0, 0x8b, 0x7d, 0xe7, 0x0c, 0x37, 0x1a, 0x64, 0x32, 0xb5, 0xec, 0xac, 0xf0, 0xd9,
+ 0xcd, 0xd1, 0x81, 0x0e, 0x36, 0x9b, 0x42, 0x47, 0xfd, 0x44, 0x4e, 0x12, 0xe4, 0x82, 0xd4, 0xc7,
+ 0x1b, 0x19, 0x09, 0x77, 0xdf, 0x9b, 0x97, 0x70, 0xb7, 0xef, 0x34, 0xbb, 0xaf, 0xa9, 0xf4, 0xc7,
+ 0xe3, 0xf9, 0x4b, 0x89, 0x27, 0x37, 0xee, 0x99, 0xf4, 0xf8, 0x35, 0x95, 0xf4, 0xb8, 0x20, 0x1e,
+ 0x30, 0x4f, 0x69, 0xdc, 0x33, 0xd5, 0xb1, 0x96, 0xae, 0x78, 0xf2, 0x68, 0xd2, 0x15, 0x1b, 0x57,
+ 0x0d, 0xcf, 0x98, 0xfb, 0x74, 0x8f, 0xab, 0xc6, 0xa0, 0x5b, 0x7c, 0xd9, 0xf0, 0xd4, 0xcc, 0xd3,
+ 0x0f, 0x94, 0x9a, 0xf9, 0x96, 0x9e, 0xea, 0x18, 0xf5, 0xc8, 0xe5, 0x4b, 0x91, 0xfa, 0x4c, 0x70,
+ 0x7c, 0x4b, 0xbf, 0x00, 0x4f, 0xe4, 0xd3, 0x55, 0xf7, 0x5c, 0x9a, 0x6e, 0xe6, 0x15, 0x98, 0x4a,
+ 0x9c, 0x7c, 0xf2, 0x78, 0x12, 0x27, 0x9f, 0x3a, 0xf2, 0xc4, 0xc9, 0xa7, 0x8f, 0x21, 0x71, 0xf2,
+ 0x23, 0xc7, 0x98, 0x38, 0xf9, 0x16, 0x33, 0xa8, 0xe1, 0x61, 0x7b, 0x44, 0xfc, 0xe2, 0xa7, 0x72,
+ 0xa2, 0x5e, 0xa5, 0x63, 0xfb, 0xf0, 0x8f, 0x53, 0x20, 0x1c, 0x93, 0xca, 0x48, 0xc8, 0x3c, 0xf3,
+ 0x10, 0x12, 0x32, 0xaf, 0xc7, 0x09, 0x99, 0xcf, 0xe4, 0x4f, 0x75, 0x86, 0x0b, 0x46, 0x4e, 0x1a,
+ 0xe6, 0x5b, 0x7a, 0xfa, 0xe4, 0x47, 0x0b, 0xb4, 0x26, 0x59, 0x82, 0xc7, 0x82, 0xa4, 0xc9, 0xaf,
+ 0xf2, 0xa4, 0xc9, 0x8f, 0xe5, 0x9f, 0xe4, 0xc9, 0xeb, 0xce, 0x48, 0x95, 0x4c, 0xfb, 0xa5, 0xc2,
+ 0x5e, 0xb2, 0x48, 0xcd, 0x39, 0xfd, 0x52, 0x71, 0x33, 0xd3, 0xfd, 0x52, 0x20, 0x1c, 0x93, 0xb2,
+ 0x7f, 0xa0, 0x04, 0xe7, 0x8a, 0xf7, 0x5b, 0x2c, 0x4d, 0xad, 0xc5, 0x4a, 0xe4, 0x84, 0x34, 0x95,
+ 0xbf, 0xd9, 0x62, 0xac, 0xbe, 0xa3, 0xf8, 0x5d, 0x81, 0x69, 0xe5, 0xbb, 0xd1, 0x72, 0x1b, 0xfb,
+ 0xeb, 0xf1, 0xcb, 0x57, 0xf9, 0xbb, 0xd7, 0x93, 0x08, 0x38, 0x5d, 0x07, 0x2d, 0xc0, 0xa4, 0x51,
+ 0xb8, 0x5a, 0x15, 0x6f, 0x33, 0x25, 0xbe, 0xad, 0x9b, 0x60, 0x9c, 0xc4, 0xb7, 0xbf, 0x64, 0xc1,
+ 0x23, 0x39, 0x19, 0x07, 0xfb, 0x0e, 0x52, 0xb7, 0x05, 0x93, 0x1d, 0xb3, 0x6a, 0x8f, 0xb8, 0x9a,
+ 0x46, 0x5e, 0x43, 0xd5, 0xd7, 0x04, 0x00, 0x27, 0x89, 0xda, 0x3f, 0x5d, 0x82, 0xb3, 0x85, 0xc6,
+ 0x88, 0x08, 0xc3, 0xe9, 0xed, 0x76, 0xe8, 0x2c, 0x05, 0xa4, 0x49, 0xbc, 0xc8, 0x75, 0x5a, 0xf5,
+ 0x0e, 0x69, 0x68, 0xf2, 0x70, 0x66, 0xd5, 0x77, 0x65, 0xad, 0xbe, 0x90, 0xc6, 0xc0, 0x39, 0x35,
+ 0xd1, 0x0a, 0xa0, 0x34, 0x44, 0xcc, 0x30, 0x8b, 0xf9, 0x9d, 0xa6, 0x87, 0x33, 0x6a, 0xa0, 0x0f,
+ 0xc1, 0xb8, 0x32, 0x72, 0xd4, 0x66, 0x9c, 0x1d, 0xec, 0x58, 0x07, 0x60, 0x13, 0x0f, 0x5d, 0xe6,
+ 0x41, 0xe3, 0x45, 0x7a, 0x01, 0x21, 0x3c, 0x9f, 0x94, 0x11, 0xe1, 0x45, 0x31, 0xd6, 0x71, 0x16,
+ 0x2f, 0xfe, 0xda, 0xef, 0x9f, 0x7b, 0xcf, 0x6f, 0xfe, 0xfe, 0xb9, 0xf7, 0xfc, 0xce, 0xef, 0x9f,
+ 0x7b, 0xcf, 0x77, 0xdd, 0x3b, 0x67, 0xfd, 0xda, 0xbd, 0x73, 0xd6, 0x6f, 0xde, 0x3b, 0x67, 0xfd,
+ 0xce, 0xbd, 0x73, 0xd6, 0xef, 0xdd, 0x3b, 0x67, 0x7d, 0xe1, 0x0f, 0xce, 0xbd, 0xe7, 0x13, 0xa5,
+ 0xbd, 0xcb, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x4d, 0xc9, 0x26, 0x9f, 0xc5, 0x07, 0x01, 0x00,
}
func (m *AWSElasticBlockStoreVolumeSource) Marshal() (dAtA []byte, err error) {
@@ -10574,6 +10605,39 @@ func (m *GCEPersistentDiskVolumeSource) MarshalToSizedBuffer(dAtA []byte) (int,
return len(dAtA) - i, nil
}
+func (m *GRPCAction) Marshal() (dAtA []byte, err error) {
+ size := m.Size()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *GRPCAction) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *GRPCAction) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if m.Service != nil {
+ i -= len(*m.Service)
+ copy(dAtA[i:], *m.Service)
+ i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Service)))
+ i--
+ dAtA[i] = 0x12
+ }
+ i = encodeVarintGenerated(dAtA, i, uint64(m.Port))
+ i--
+ dAtA[i] = 0x8
+ return len(dAtA) - i, nil
+}
+
func (m *GitRepoVolumeSource) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
@@ -15971,6 +16035,18 @@ func (m *ProbeHandler) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
+ if m.GRPC != nil {
+ {
+ size, err := m.GRPC.MarshalToSizedBuffer(dAtA[:i])
+ if err != nil {
+ return 0, err
+ }
+ i -= size
+ i = encodeVarintGenerated(dAtA, i, uint64(size))
+ }
+ i--
+ dAtA[i] = 0x22
+ }
if m.TCPSocket != nil {
{
size, err := m.TCPSocket.MarshalToSizedBuffer(dAtA[:i])
@@ -20966,6 +21042,20 @@ func (m *GCEPersistentDiskVolumeSource) Size() (n int) {
return n
}
+func (m *GRPCAction) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ n += 1 + sovGenerated(uint64(m.Port))
+ if m.Service != nil {
+ l = len(*m.Service)
+ n += 1 + l + sovGenerated(uint64(l))
+ }
+ return n
+}
+
func (m *GitRepoVolumeSource) Size() (n int) {
if m == nil {
return 0
@@ -22940,6 +23030,10 @@ func (m *ProbeHandler) Size() (n int) {
l = m.TCPSocket.Size()
n += 1 + l + sovGenerated(uint64(l))
}
+ if m.GRPC != nil {
+ l = m.GRPC.Size()
+ n += 1 + l + sovGenerated(uint64(l))
+ }
return n
}
@@ -25246,6 +25340,17 @@ func (this *GCEPersistentDiskVolumeSource) String() string {
}, "")
return s
}
+func (this *GRPCAction) String() string {
+ if this == nil {
+ return "nil"
+ }
+ s := strings.Join([]string{`&GRPCAction{`,
+ `Port:` + fmt.Sprintf("%v", this.Port) + `,`,
+ `Service:` + valueToStringGenerated(this.Service) + `,`,
+ `}`,
+ }, "")
+ return s
+}
func (this *GitRepoVolumeSource) String() string {
if this == nil {
return "nil"
@@ -26751,6 +26856,7 @@ func (this *ProbeHandler) String() string {
`Exec:` + strings.Replace(this.Exec.String(), "ExecAction", "ExecAction", 1) + `,`,
`HTTPGet:` + strings.Replace(this.HTTPGet.String(), "HTTPGetAction", "HTTPGetAction", 1) + `,`,
`TCPSocket:` + strings.Replace(this.TCPSocket.String(), "TCPSocketAction", "TCPSocketAction", 1) + `,`,
+ `GRPC:` + strings.Replace(this.GRPC.String(), "GRPCAction", "GRPCAction", 1) + `,`,
`}`,
}, "")
return s
@@ -38913,6 +39019,108 @@ func (m *GCEPersistentDiskVolumeSource) Unmarshal(dAtA []byte) error {
}
return nil
}
+func (m *GRPCAction) Unmarshal(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: GRPCAction: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: GRPCAction: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Port", wireType)
+ }
+ m.Port = 0
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ m.Port |= int32(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ case 2:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Service", wireType)
+ }
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ s := string(dAtA[iNdEx:postIndex])
+ m.Service = &s
+ iNdEx = postIndex
+ default:
+ iNdEx = preIndex
+ skippy, err := skipGenerated(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
func (m *GitRepoVolumeSource) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
@@ -56052,6 +56260,42 @@ func (m *ProbeHandler) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 4:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field GRPC", wireType)
+ }
+ var msglen int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ msglen |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ if msglen < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ postIndex := iNdEx + msglen
+ if postIndex < 0 {
+ return ErrInvalidLengthGenerated
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ if m.GRPC == nil {
+ m.GRPC = &GRPCAction{}
+ }
+ if err := m.GRPC.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+ return err
+ }
+ iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])
diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto
index dbfe979e1cd..b5b44781f02 100644
--- a/staging/src/k8s.io/api/core/v1/generated.proto
+++ b/staging/src/k8s.io/api/core/v1/generated.proto
@@ -1646,6 +1646,19 @@ message GCEPersistentDiskVolumeSource {
optional bool readOnly = 4;
}
+message GRPCAction {
+ // Port number of the gRPC service. Number must be in the range 1 to 65535.
+ optional int32 port = 1;
+
+ // Service is the name of the service to place in the gRPC HealthCheckRequest
+ // (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
+ //
+ // If this is not specified, the default behavior is defined by gRPC.
+ // +optional
+ // +default=""
+ optional string service = 2;
+}
+
// Represents a volume that is populated with the contents of a git repository.
// Git repo volumes do not support ownership management.
// Git repo volumes support SELinux relabeling.
@@ -4005,6 +4018,12 @@ message ProbeHandler {
// TCPSocket specifies an action involving a TCP port.
// +optional
optional TCPSocketAction tcpSocket = 3;
+
+ // GRPC specifies an action involving a GRPC port.
+ // This is an alpha field and requires enabling GRPCContainerProbe feature gate.
+ // +featureGate=GRPCContainerProbe
+ // +optional
+ optional GRPCAction grpc = 4;
}
// Represents a projected volume source
diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go
index d359707b43c..144767c2dab 100644
--- a/staging/src/k8s.io/api/core/v1/types.go
+++ b/staging/src/k8s.io/api/core/v1/types.go
@@ -2156,6 +2156,19 @@ type TCPSocketAction struct {
Host string `json:"host,omitempty" protobuf:"bytes,2,opt,name=host"`
}
+type GRPCAction struct {
+ // Port number of the gRPC service. Number must be in the range 1 to 65535.
+ Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
+
+ // Service is the name of the service to place in the gRPC HealthCheckRequest
+ // (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
+ //
+ // If this is not specified, the default behavior is defined by gRPC.
+ // +optional
+ // +default=""
+ Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
+}
+
// ExecAction describes a "run in container" action.
type ExecAction struct {
// Command is the command line to execute inside the container, the working directory for the
@@ -2450,6 +2463,12 @@ type ProbeHandler struct {
// TCPSocket specifies an action involving a TCP port.
// +optional
TCPSocket *TCPSocketAction `json:"tcpSocket,omitempty" protobuf:"bytes,3,opt,name=tcpSocket"`
+
+ // GRPC specifies an action involving a GRPC port.
+ // This is an alpha field and requires enabling GRPCContainerProbe feature gate.
+ // +featureGate=GRPCContainerProbe
+ // +optional
+ GRPC *GRPCAction `json:"gRPC,omitempty" protobuf:"bytes,4,opt,name=grpc"`
}
// LifecycleHandler defines a specific action that should be taken in a lifecycle
diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
index 3f83dbcabbc..65ff7038e93 100644
--- a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
+++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go
@@ -749,6 +749,15 @@ func (GCEPersistentDiskVolumeSource) SwaggerDoc() map[string]string {
return map_GCEPersistentDiskVolumeSource
}
+var map_GRPCAction = map[string]string{
+ "port": "Port number of the gRPC service. Number must be in the range 1 to 65535.",
+ "service": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.",
+}
+
+func (GRPCAction) SwaggerDoc() map[string]string {
+ return map_GRPCAction
+}
+
var map_GitRepoVolumeSource = map[string]string{
"": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.",
"repository": "Repository URL",
@@ -1799,6 +1808,7 @@ var map_ProbeHandler = map[string]string{
"exec": "Exec specifies the action to take.",
"httpGet": "HTTPGet specifies the http request to perform.",
"tcpSocket": "TCPSocket specifies an action involving a TCP port.",
+ "gRPC": "GRPC specifies an action involving a GRPC port. This is an alpha field and requires enabling GRPCContainerProbe feature gate.",
}
func (ProbeHandler) SwaggerDoc() map[string]string {
diff --git a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go
index d7cb35d8b44..fc951ad44d2 100644
--- a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go
+++ b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go
@@ -1669,6 +1669,27 @@ func (in *GCEPersistentDiskVolumeSource) DeepCopy() *GCEPersistentDiskVolumeSour
return out
}
+// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
+func (in *GRPCAction) DeepCopyInto(out *GRPCAction) {
+ *out = *in
+ if in.Service != nil {
+ in, out := &in.Service, &out.Service
+ *out = new(string)
+ **out = **in
+ }
+ return
+}
+
+// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GRPCAction.
+func (in *GRPCAction) DeepCopy() *GRPCAction {
+ if in == nil {
+ return nil
+ }
+ out := new(GRPCAction)
+ in.DeepCopyInto(out)
+ return out
+}
+
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *GitRepoVolumeSource) DeepCopyInto(out *GitRepoVolumeSource) {
*out = *in
@@ -4232,6 +4253,11 @@ func (in *ProbeHandler) DeepCopyInto(out *ProbeHandler) {
*out = new(TCPSocketAction)
**out = **in
}
+ if in.GRPC != nil {
+ in, out := &in.GRPC, &out.GRPC
+ *out = new(GRPCAction)
+ (*in).DeepCopyInto(*out)
+ }
return
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json
index d9ba8655ec1..04afda44d7d 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.json
@@ -558,605 +558,645 @@
"port": 1714588921,
"host": "213"
},
- "initialDelaySeconds": -1246371817,
- "timeoutSeconds": 617318981,
- "periodSeconds": 432291364,
- "successThreshold": 676578360,
- "failureThreshold": -552281772,
- "terminationGracePeriodSeconds": -2910346974754087949
+ "gRPC": {
+ "port": -614161319,
+ "service": "214"
+ },
+ "initialDelaySeconds": 452673549,
+ "timeoutSeconds": 627670321,
+ "periodSeconds": -125932767,
+ "successThreshold": -18758819,
+ "failureThreshold": -1666819085,
+ "terminationGracePeriodSeconds": -1212012606981050727
},
"readinessProbe": {
"exec": {
"command": [
- "214"
+ "215"
]
},
"httpGet": {
- "path": "215",
- "port": 656200799,
- "host": "216",
+ "path": "216",
+ "port": "217",
+ "host": "218",
+ "scheme": "\u0026皥贸碔lNKƙ順\\E¦队偯",
"httpHeaders": [
{
- "name": "217",
- "value": "218"
+ "name": "219",
+ "value": "220"
}
]
},
"tcpSocket": {
- "port": "219",
- "host": "220"
+ "port": -316996074,
+ "host": "221"
},
- "initialDelaySeconds": -2165496,
- "timeoutSeconds": -1778952574,
- "periodSeconds": 1386255869,
- "successThreshold": -778272981,
- "failureThreshold": 2056774277,
- "terminationGracePeriodSeconds": -9219895030215397584
+ "gRPC": {
+ "port": -760292259,
+ "service": "222"
+ },
+ "initialDelaySeconds": -1164530482,
+ "timeoutSeconds": 1877574041,
+ "periodSeconds": 1430286749,
+ "successThreshold": -374766088,
+ "failureThreshold": -736151561,
+ "terminationGracePeriodSeconds": -6508463748290235837
},
"startupProbe": {
"exec": {
"command": [
- "221"
+ "223"
]
},
"httpGet": {
- "path": "222",
- "port": "223",
- "host": "224",
- "scheme": "鬶l獕;跣Hǝcw",
+ "path": "224",
+ "port": "225",
+ "host": "226",
+ "scheme": "颶妧Ö闊",
"httpHeaders": [
{
- "name": "225",
- "value": "226"
+ "name": "227",
+ "value": "228"
}
]
},
"tcpSocket": {
- "port": -374766088,
- "host": "227"
+ "port": "229",
+ "host": "230"
},
- "initialDelaySeconds": -736151561,
- "timeoutSeconds": -1515369804,
- "periodSeconds": -1856061695,
- "successThreshold": 1868683352,
- "failureThreshold": -1137436579,
- "terminationGracePeriodSeconds": 8876559635423161004
+ "gRPC": {
+ "port": -1984097455,
+ "service": "231"
+ },
+ "initialDelaySeconds": -253326525,
+ "timeoutSeconds": 567263590,
+ "periodSeconds": 887319241,
+ "successThreshold": 1559618829,
+ "failureThreshold": 1156888068,
+ "terminationGracePeriodSeconds": -5566612115749133989
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "228"
+ "232"
]
},
"httpGet": {
- "path": "229",
- "port": "230",
- "host": "231",
- "scheme": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
+ "path": "233",
+ "port": 1328165061,
+ "host": "234",
+ "scheme": "¸gĩ",
"httpHeaders": [
{
- "name": "232",
- "value": "233"
+ "name": "235",
+ "value": "236"
}
]
},
"tcpSocket": {
- "port": 1993268896,
- "host": "234"
+ "port": 1186392166,
+ "host": "237"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "238"
]
},
"httpGet": {
- "path": "236",
- "port": "237",
- "host": "238",
- "scheme": "ƿ頀\"冓鍓贯澔 ",
+ "path": "239",
+ "port": -1315487077,
+ "host": "240",
+ "scheme": "ğ_",
"httpHeaders": [
{
- "name": "239",
- "value": "240"
+ "name": "241",
+ "value": "242"
}
]
},
"tcpSocket": {
- "port": "241",
- "host": "242"
+ "port": "243",
+ "host": "244"
}
}
},
- "terminationMessagePath": "243",
- "terminationMessagePolicy": "6Ɖ飴ɎiǨź'",
- "imagePullPolicy": "{屿oiɥ嵐sC8?Ǻ",
+ "terminationMessagePath": "245",
+ "terminationMessagePolicy": "ëJ橈'琕鶫:顇ə娯Ȱ囌",
+ "imagePullPolicy": "ɐ鰥",
"securityContext": {
"capabilities": {
"add": [
- ";Nŕ璻Jih亏yƕ丆録²Ŏ"
+ "´DÒȗÔÂɘɢ鬍熖B芭花ª瘡"
],
"drop": [
- "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫"
+ "J"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "244",
- "role": "245",
- "type": "246",
- "level": "247"
+ "user": "246",
+ "role": "247",
+ "type": "248",
+ "level": "249"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "248",
- "gmsaCredentialSpec": "249",
- "runAsUserName": "250",
+ "gmsaCredentialSpecName": "250",
+ "gmsaCredentialSpec": "251",
+ "runAsUserName": "252",
"hostProcess": true
},
- "runAsUser": 4041264710404335706,
- "runAsGroup": 6453802934472477147,
+ "runAsUser": 8519266600558609398,
+ "runAsGroup": -8859267173741137425,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ",
+ "procMount": "nj汰8ŕİi騎C\"6x$1sȣ±p",
"seccompProfile": {
- "type": "V擭銆j",
- "localhostProfile": "251"
+ "type": "",
+ "localhostProfile": "253"
}
- }
+ },
+ "stdin": true,
+ "stdinOnce": true,
+ "tty": true
}
],
"containers": [
{
- "name": "252",
- "image": "253",
+ "name": "254",
+ "image": "255",
"command": [
- "254"
+ "256"
],
"args": [
- "255"
+ "257"
],
- "workingDir": "256",
+ "workingDir": "258",
"ports": [
{
- "name": "257",
- "hostPort": -1408385387,
- "containerPort": -1225881740,
- "protocol": "撑¼蠾8餑噭",
- "hostIP": "258"
+ "name": "259",
+ "hostPort": -1170565984,
+ "containerPort": -444561761,
+ "protocol": "5哇芆斩ìh4ɊHȖ|ʐş",
+ "hostIP": "260"
}
],
"envFrom": [
{
- "prefix": "259",
+ "prefix": "261",
"configMapRef": {
- "name": "260",
- "optional": true
+ "name": "262",
+ "optional": false
},
"secretRef": {
- "name": "261",
- "optional": false
+ "name": "263",
+ "optional": true
}
}
],
"env": [
{
- "name": "262",
- "value": "263",
+ "name": "264",
+ "value": "265",
"valueFrom": {
"fieldRef": {
- "apiVersion": "264",
- "fieldPath": "265"
+ "apiVersion": "266",
+ "fieldPath": "267"
},
"resourceFieldRef": {
- "containerName": "266",
- "resource": "267",
- "divisor": "834"
+ "containerName": "268",
+ "resource": "269",
+ "divisor": "219"
},
"configMapKeyRef": {
- "name": "268",
- "key": "269",
- "optional": true
- },
- "secretKeyRef": {
"name": "270",
"key": "271",
"optional": false
+ },
+ "secretKeyRef": {
+ "name": "272",
+ "key": "273",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "n(fǂǢ曣ŋayåe躒訙Ǫ": "12"
+ "丽饾| 鞤ɱď": "590"
},
"requests": {
- "(娕uE增猍": "264"
+ "噭DµņP)DŽ髐njʉBn(f": "584"
}
},
"volumeMounts": [
{
- "name": "272",
- "mountPath": "273",
- "subPath": "274",
- "mountPropagation": "irȎ3Ĕ\\ɢX鰨松",
- "subPathExpr": "275"
+ "name": "274",
+ "readOnly": true,
+ "mountPath": "275",
+ "subPath": "276",
+ "mountPropagation": "鑳w妕眵笭/9崍h趭",
+ "subPathExpr": "277"
}
],
"volumeDevices": [
{
- "name": "276",
- "devicePath": "277"
+ "name": "278",
+ "devicePath": "279"
}
],
"livenessProbe": {
"exec": {
"command": [
- "278"
+ "280"
]
},
"httpGet": {
- "path": "279",
- "port": "280",
- "host": "281",
- "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(",
+ "path": "281",
+ "port": 597943993,
+ "host": "282",
+ "scheme": "8",
"httpHeaders": [
{
- "name": "282",
- "value": "283"
+ "name": "283",
+ "value": "284"
}
]
},
"tcpSocket": {
- "port": 317211081,
- "host": "284"
+ "port": "285",
+ "host": "286"
},
- "initialDelaySeconds": -1934305215,
- "timeoutSeconds": -655359985,
- "periodSeconds": 875971520,
- "successThreshold": 161338049,
- "failureThreshold": 65094252,
- "terminationGracePeriodSeconds": -6831592407095063988
+ "gRPC": {
+ "port": -977348956,
+ "service": "287"
+ },
+ "initialDelaySeconds": -637630736,
+ "timeoutSeconds": 601942575,
+ "periodSeconds": -1320027474,
+ "successThreshold": -1750169306,
+ "failureThreshold": 2112112129,
+ "terminationGracePeriodSeconds": 2270336783402505634
},
"readinessProbe": {
"exec": {
"command": [
- "285"
+ "288"
]
},
"httpGet": {
- "path": "286",
- "port": -2126891601,
- "host": "287",
- "scheme": "l}Ñ蠂Ü[ƛ^輅9ɛ棕",
+ "path": "289",
+ "port": -239264629,
+ "host": "290",
+ "scheme": "ɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "291",
+ "value": "292"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": "293",
+ "host": "294"
},
- "initialDelaySeconds": 1660454722,
- "timeoutSeconds": -1317234078,
- "periodSeconds": -1347045470,
- "successThreshold": 1169580662,
- "failureThreshold": 404234347,
- "terminationGracePeriodSeconds": 8560122250231719622
+ "gRPC": {
+ "port": 626243488,
+ "service": "295"
+ },
+ "initialDelaySeconds": -1920304485,
+ "timeoutSeconds": -1842062977,
+ "periodSeconds": 1424401373,
+ "successThreshold": -531787516,
+ "failureThreshold": 2073630689,
+ "terminationGracePeriodSeconds": -3568583337361453338
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "296"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "ǚŜEuEy竬ʆɞ",
+ "path": "297",
+ "port": -894026356,
+ "host": "298",
+ "scheme": "繐汚磉反-n覦",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "299",
+ "value": "300"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "301",
+ "host": "302"
},
- "initialDelaySeconds": 336252010,
- "timeoutSeconds": 677650619,
- "periodSeconds": 930785927,
- "successThreshold": 1624098740,
- "failureThreshold": 1419787816,
- "terminationGracePeriodSeconds": -506227444233847191
+ "gRPC": {
+ "port": 413903479,
+ "service": "303"
+ },
+ "initialDelaySeconds": 1708236944,
+ "timeoutSeconds": -1192140557,
+ "periodSeconds": 1961354355,
+ "successThreshold": -1977635123,
+ "failureThreshold": 1660454722,
+ "terminationGracePeriodSeconds": -5657477284668711794
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "304"
]
},
"httpGet": {
- "path": "301",
- "port": "302",
- "host": "303",
- "scheme": "ĝ®EĨǔvÄÚ×p鬷",
+ "path": "305",
+ "port": 1190831814,
+ "host": "306",
+ "scheme": "dŊiɢ",
"httpHeaders": [
{
- "name": "304",
- "value": "305"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 1673908530,
- "host": "306"
+ "port": -370404018,
+ "host": "309"
}
},
"preStop": {
"exec": {
"command": [
- "307"
+ "310"
]
},
"httpGet": {
- "path": "308",
- "port": "309",
- "host": "310",
- "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀",
+ "path": "311",
+ "port": 280878117,
+ "host": "312",
+ "scheme": "ɞȥ}礤铟怖ý萜Ǖ",
"httpHeaders": [
{
- "name": "311",
- "value": "312"
+ "name": "313",
+ "value": "314"
}
]
},
"tcpSocket": {
- "port": -1912967242,
- "host": "313"
+ "port": -1088996269,
+ "host": "315"
}
}
},
- "terminationMessagePath": "314",
- "terminationMessagePolicy": "漤ŗ坟",
- "imagePullPolicy": "-紑浘牬釼aTGÒ鵌",
+ "terminationMessagePath": "316",
+ "terminationMessagePolicy": "ƘƵŧ1ƟƓ宆!",
+ "imagePullPolicy": "×p鬷m罂o3ǰ廋i乳'ȘUɻ;",
"securityContext": {
"capabilities": {
"add": [
- "Nh×DJɶ羹ƞʓ%ʝ`ǭ"
+ "桉桃喕蠲$ɛ溢臜裡×"
],
"drop": [
- "ñ?卶滿筇ȟP:/a"
+ "-紑浘牬釼aTGÒ鵌"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "315",
- "role": "316",
- "type": "317",
- "level": "318"
+ "user": "317",
+ "role": "318",
+ "type": "319",
+ "level": "320"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "319",
- "gmsaCredentialSpec": "320",
- "runAsUserName": "321",
+ "gmsaCredentialSpecName": "321",
+ "gmsaCredentialSpec": "322",
+ "runAsUserName": "323",
"hostProcess": false
},
- "runAsUser": 308757565294839546,
- "runAsGroup": 5797412715505520759,
+ "runAsUser": -3539084410583519556,
+ "runAsGroup": 296399212346260204,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
- "allowPrivilegeEscalation": false,
- "procMount": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "ʓ%ʝ`ǭ躌ñ?卶滿筇ȟP:/",
"seccompProfile": {
- "type": "繽敮ǰ詀ǿ忀oɎƺ",
- "localhostProfile": "322"
+ "type": "殆诵H玲鑠ĭ$#卛8ð仁Q",
+ "localhostProfile": "324"
}
},
- "tty": true
+ "stdinOnce": true
}
],
"ephemeralContainers": [
{
- "name": "323",
- "image": "324",
+ "name": "325",
+ "image": "326",
"command": [
- "325"
+ "327"
],
"args": [
- "326"
+ "328"
],
- "workingDir": "327",
+ "workingDir": "329",
"ports": [
{
- "name": "328",
- "hostPort": 788093377,
- "containerPort": -557687916,
- "protocol": "_敕",
- "hostIP": "329"
+ "name": "330",
+ "hostPort": -846940406,
+ "containerPort": 2004993767,
+ "protocol": "Ű藛b磾sYȠ繽敮ǰ",
+ "hostIP": "331"
}
],
"envFrom": [
{
- "prefix": "330",
+ "prefix": "332",
"configMapRef": {
- "name": "331",
- "optional": true
+ "name": "333",
+ "optional": false
},
"secretRef": {
- "name": "332",
- "optional": false
+ "name": "334",
+ "optional": true
}
}
],
"env": [
{
- "name": "333",
- "value": "334",
+ "name": "335",
+ "value": "336",
"valueFrom": {
"fieldRef": {
- "apiVersion": "335",
- "fieldPath": "336"
+ "apiVersion": "337",
+ "fieldPath": "338"
},
"resourceFieldRef": {
- "containerName": "337",
- "resource": "338",
- "divisor": "971"
+ "containerName": "339",
+ "resource": "340",
+ "divisor": "121"
},
"configMapKeyRef": {
- "name": "339",
- "key": "340",
- "optional": true
- },
- "secretKeyRef": {
"name": "341",
"key": "342",
"optional": true
+ },
+ "secretKeyRef": {
+ "name": "343",
+ "key": "344",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "湷D谹気Ƀ秮òƬɸĻo:{": "523"
+ "$矐_敕ű嵞嬯t{Eɾ敹Ȯ-": "642"
},
"requests": {
- "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»": "929"
+ "蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx": "77"
}
},
"volumeMounts": [
{
- "name": "343",
- "readOnly": true,
- "mountPath": "344",
- "subPath": "345",
- "mountPropagation": "|ǓÓ敆OɈÏ 瞍髃",
- "subPathExpr": "346"
+ "name": "345",
+ "mountPath": "346",
+ "subPath": "347",
+ "mountPropagation": "¬h`職铳s44矕Ƈè*鑏='ʨ|",
+ "subPathExpr": "348"
}
],
"volumeDevices": [
{
- "name": "347",
- "devicePath": "348"
+ "name": "349",
+ "devicePath": "350"
}
],
"livenessProbe": {
"exec": {
"command": [
- "349"
+ "351"
]
},
"httpGet": {
- "path": "350",
- "port": "351",
- "host": "352",
- "scheme": "07曳wœj堑ūM鈱ɖ'蠨",
+ "path": "352",
+ "port": -592535081,
+ "host": "353",
+ "scheme": "fsǕT",
"httpHeaders": [
{
- "name": "353",
- "value": "354"
+ "name": "354",
+ "value": "355"
}
]
},
"tcpSocket": {
- "port": "355",
+ "port": -394464008,
"host": "356"
},
- "initialDelaySeconds": -242798806,
- "timeoutSeconds": -1940800545,
- "periodSeconds": 681004793,
- "successThreshold": 2002666266,
- "failureThreshold": -2033879721,
- "terminationGracePeriodSeconds": -4409241678312226730
+ "gRPC": {
+ "port": -839925309,
+ "service": "357"
+ },
+ "initialDelaySeconds": -526099499,
+ "timeoutSeconds": -1014296961,
+ "periodSeconds": 1708011112,
+ "successThreshold": -603097910,
+ "failureThreshold": 1776174141,
+ "terminationGracePeriodSeconds": -5794598592563963676
},
"readinessProbe": {
"exec": {
"command": [
- "357"
+ "358"
]
},
"httpGet": {
- "path": "358",
- "port": 279062028,
- "host": "359",
- "scheme": "Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p",
+ "path": "359",
+ "port": 134832144,
+ "host": "360",
+ "scheme": "Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍",
"httpHeaders": [
{
- "name": "360",
- "value": "361"
+ "name": "361",
+ "value": "362"
}
]
},
"tcpSocket": {
- "port": -943058206,
- "host": "362"
+ "port": -1289510276,
+ "host": "363"
},
- "initialDelaySeconds": 725557531,
- "timeoutSeconds": -703127031,
- "periodSeconds": 741667779,
- "successThreshold": -381344241,
- "failureThreshold": -2122876628,
- "terminationGracePeriodSeconds": 2700145646260085226
+ "gRPC": {
+ "port": 701103233,
+ "service": "364"
+ },
+ "initialDelaySeconds": 1995848794,
+ "timeoutSeconds": -281926929,
+ "periodSeconds": -372626292,
+ "successThreshold": 2018111855,
+ "failureThreshold": 1019901190,
+ "terminationGracePeriodSeconds": -6980960365540477247
},
"startupProbe": {
"exec": {
"command": [
- "363"
+ "365"
]
},
"httpGet": {
- "path": "364",
- "port": "365",
- "host": "366",
- "scheme": "thp像-",
+ "path": "366",
+ "port": "367",
+ "host": "368",
+ "scheme": "p蓋沥7uPƒw©ɴ",
"httpHeaders": [
{
- "name": "367",
- "value": "368"
+ "name": "369",
+ "value": "370"
}
]
},
"tcpSocket": {
- "port": "369",
- "host": "370"
+ "port": -671265235,
+ "host": "371"
},
- "initialDelaySeconds": 1589417286,
- "timeoutSeconds": 445878206,
- "periodSeconds": 1874051321,
- "successThreshold": -500012714,
- "failureThreshold": 1762917570,
- "terminationGracePeriodSeconds": 4794571970514469019
+ "gRPC": {
+ "port": 1782790310,
+ "service": "372"
+ },
+ "initialDelaySeconds": 1587036035,
+ "timeoutSeconds": 1760208172,
+ "periodSeconds": -59501664,
+ "successThreshold": 1261462387,
+ "failureThreshold": -1289875111,
+ "terminationGracePeriodSeconds": -7492770647593151162
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "371"
+ "373"
]
},
"httpGet": {
- "path": "372",
- "port": "373",
- "host": "374",
- "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
+ "path": "374",
+ "port": 1762917570,
+ "host": "375",
+ "scheme": "Ų買霎ȃň[\u003eą",
"httpHeaders": [
{
- "name": "375",
- "value": "376"
+ "name": "376",
+ "value": "377"
}
]
},
"tcpSocket": {
- "port": "377",
+ "port": 1414336865,
"host": "378"
}
},
@@ -1168,8 +1208,9 @@
},
"httpGet": {
"path": "380",
- "port": -1743587482,
+ "port": 1129006716,
"host": "381",
+ "scheme": "ȱɷȰW瀤oɢ嫎¸殚篎3",
"httpHeaders": [
{
"name": "382",
@@ -1178,104 +1219,101 @@
]
},
"tcpSocket": {
- "port": 858034123,
- "host": "384"
+ "port": "384",
+ "host": "385"
}
}
},
- "terminationMessagePath": "385",
- "terminationMessagePolicy": "喾@潷",
- "imagePullPolicy": "#t(ȗŜŲ\u0026洪y儕l",
+ "terminationMessagePath": "386",
+ "terminationMessagePolicy": "[y#t(",
"securityContext": {
"capabilities": {
"add": [
- "ɻŶJ詢"
+ "rƈa餖Ľ"
],
"drop": [
- "ǾɁ鍻G鯇ɀ魒Ð扬=惍E"
+ "淴ɑ?¶Ȳ"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "386",
- "role": "387",
- "type": "388",
- "level": "389"
+ "user": "387",
+ "role": "388",
+ "type": "389",
+ "level": "390"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "390",
- "gmsaCredentialSpec": "391",
- "runAsUserName": "392",
- "hostProcess": false
+ "gmsaCredentialSpecName": "391",
+ "gmsaCredentialSpec": "392",
+ "runAsUserName": "393",
+ "hostProcess": true
},
- "runAsUser": -5071790362153704411,
- "runAsGroup": -2841141127223294729,
- "runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
+ "runAsUser": 5200080507234099655,
+ "runAsGroup": 8544841476815986834,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": ";Ƭ婦d%蹶/ʗp壥Ƥ",
+ "procMount": "œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ",
"seccompProfile": {
- "type": "郡ɑ鮽ǍJB膾扉A1襏櫯³",
- "localhostProfile": "393"
+ "type": "ʫį淓¯Ą0ƛ忀z委\u003e,趐V曡88 ",
+ "localhostProfile": "394"
}
},
"stdinOnce": true,
- "targetContainerName": "394"
+ "targetContainerName": "395"
}
],
- "restartPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉",
- "terminationGracePeriodSeconds": -1390311149947249535,
- "activeDeadlineSeconds": 2684251781701131156,
- "dnsPolicy": "厶s",
+ "restartPolicy": "荊ù灹8緔Tj§E蓋",
+ "terminationGracePeriodSeconds": -2019276087967685705,
+ "activeDeadlineSeconds": 9106348347596466980,
+ "dnsPolicy": "ȩ愉B",
"nodeSelector": {
- "395": "396"
+ "396": "397"
},
- "serviceAccountName": "397",
- "serviceAccount": "398",
+ "serviceAccountName": "398",
+ "serviceAccount": "399",
"automountServiceAccountToken": true,
- "nodeName": "399",
- "hostPID": true,
- "hostIPC": true,
- "shareProcessNamespace": true,
+ "nodeName": "400",
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "400",
- "role": "401",
- "type": "402",
- "level": "403"
+ "user": "401",
+ "role": "402",
+ "type": "403",
+ "level": "404"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "404",
- "gmsaCredentialSpec": "405",
- "runAsUserName": "406",
- "hostProcess": true
+ "gmsaCredentialSpecName": "405",
+ "gmsaCredentialSpec": "406",
+ "runAsUserName": "407",
+ "hostProcess": false
},
- "runAsUser": -3184085461588437523,
- "runAsGroup": -2037509302018919599,
+ "runAsUser": 231646691853926712,
+ "runAsGroup": 3044211288080348140,
"runAsNonRoot": true,
"supplementalGroups": [
- -885564056413671854
+ 7168071284072373028
],
- "fsGroup": 4301352137345790658,
+ "fsGroup": -640858663485353963,
"sysctls": [
{
- "name": "407",
- "value": "408"
+ "name": "408",
+ "value": "409"
}
],
- "fsGroupChangePolicy": "柱栦阫Ƈʥ椹",
+ "fsGroupChangePolicy": "氙'[\u003eĵ'o儿",
"seccompProfile": {
- "type": "飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i",
- "localhostProfile": "409"
+ "type": "銭u裡_Ơ9o",
+ "localhostProfile": "410"
}
},
"imagePullSecrets": [
{
- "name": "410"
+ "name": "411"
}
],
- "hostname": "411",
- "subdomain": "412",
+ "hostname": "412",
+ "subdomain": "413",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1283,19 +1321,19 @@
{
"matchExpressions": [
{
- "key": "413",
- "operator": "șƷK*ƌ驔瓊'",
+ "key": "414",
+ "operator": "ʛ饊ɣKIJWĶʗ{裦i÷ɷȤ砘",
"values": [
- "414"
+ "415"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "Mĕ霉}閜LIȜŚɇA%ɀ蓧",
+ "key": "416",
+ "operator": "K*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗ",
"values": [
- "416"
+ "417"
]
}
]
@@ -1304,23 +1342,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 836045166,
+ "weight": -1084193035,
"preference": {
"matchExpressions": [
{
- "key": "417",
- "operator": "ȋ灋槊盘",
+ "key": "418",
+ "operator": "",
"values": [
- "418"
+ "419"
]
}
],
"matchFields": [
{
- "key": "419",
- "operator": "牬庘颮6(",
+ "key": "420",
+ "operator": "",
"values": [
- "420"
+ "421"
]
}
]
@@ -1333,29 +1371,26 @@
{
"labelSelector": {
"matchLabels": {
- "8o1-x-1wl--7/S.ol": "Fgw_-z_659GE.l_.23--_6l.-5B"
+ "p8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/V.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8oJ": "46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e"
},
"matchExpressions": [
{
- "key": "z_o_2.--4Z7__i1T.miw_a",
- "operator": "NotIn",
- "values": [
- "At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t"
- ]
+ "key": "f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "427"
+ "428"
],
- "topologyKey": "428",
+ "topologyKey": "429",
"namespaceSelector": {
"matchLabels": {
- "5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL": "GIT_B"
+ "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa"
},
"matchExpressions": [
{
- "key": "8-b6E_--Y_Dp8O_._e_3_.4_Wh",
+ "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p",
"operator": "DoesNotExist"
}
]
@@ -1364,36 +1399,36 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -585767440,
+ "weight": -37906634,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "I_--.k47M7y-Dy__3wc.q.8_00.0_._f": "L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0"
+ "4.7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.eD": "5_.W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g"
},
"matchExpressions": [
{
- "key": "n",
+ "key": "cx-64dw-buvf.1g--1035ad1o-d-6-bk81-34s-s-63z-v--8r-0-2--rad877gr2/w_tdt_-Z0T",
"operator": "NotIn",
"values": [
- "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP"
+ "g.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-U"
]
}
]
},
"namespaces": [
- "441"
+ "442"
],
- "topologyKey": "442",
+ "topologyKey": "443",
"namespaceSelector": {
"matchLabels": {
- "tO4-7-P41_.-.-AQ._r.-_R1": "8KLu..ly--J-_.ZCRT.0z-e"
+ "T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI": "I-mt4...rQ"
},
"matchExpressions": [
{
- "key": "34G._--u.._.105-4_ed-0-H",
- "operator": "NotIn",
+ "key": "vSW_4-__h",
+ "operator": "In",
"values": [
- "a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q"
+ "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1"
]
}
]
@@ -1407,27 +1442,33 @@
{
"labelSelector": {
"matchLabels": {
- "3_Lsu-H_.f82-82": "dWNn_U-...1P_.D8_t..-Ww27"
+ "4-vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476b---nhc50-2/7_3o_V-w._-0d__7.81_-._-_8_.._.a": "L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.R"
},
"matchExpressions": [
{
- "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1",
- "operator": "DoesNotExist"
+ "key": "Q-.-.g-_Z_-nSLq",
+ "operator": "In",
+ "values": [
+ "lks7dG-9S-O62o.8._.---UK_-.j2z"
+ ]
}
]
},
"namespaces": [
- "455"
+ "456"
],
- "topologyKey": "456",
+ "topologyKey": "457",
"namespaceSelector": {
"matchLabels": {
- "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR"
+ "1p-06jVZ-uP.t_.O937uh": "j-dY7_M_-._M5..-N_H_55..--EO"
},
"matchExpressions": [
{
- "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7",
- "operator": "DoesNotExist"
+ "key": "F_o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.WxPc---K__-iguFGT._Y",
+ "operator": "NotIn",
+ "values": [
+ ""
+ ]
}
]
}
@@ -1435,31 +1476,37 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 339079271,
+ "weight": -1205967741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
+ "38vuo17qre-33-5-u8f0f1qv--i72-x3e.z-8-tcd2-84s-n-i-711s4--9s8--o-8dm---b----036/6M__4-Pg": "EI_4G"
},
"matchExpressions": [
{
- "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
- "operator": "Exists"
+ "key": "g--v8-c58kh44k-b13--522555-11jla8-phs1a--y.m4j1-10-p-4zk-63m-z235-af-3z6-ql----v-r8th/o._g_..o",
+ "operator": "NotIn",
+ "values": [
+ "C_60-__.19_-gYY._..fP--hQ7e"
+ ]
}
]
},
"namespaces": [
- "469"
+ "470"
],
- "topologyKey": "470",
+ "topologyKey": "471",
"namespaceSelector": {
"matchLabels": {
- "E35H__.B_E": "U..u8gwbk"
+ "3c9_4._U.kT-.---c---cO1_x.Pi.---l.---9._-__X2_w_bn..--_qD-J_.4": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
},
"matchExpressions": [
{
- "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
- "operator": "Exists"
+ "key": "KTlO.__0PX",
+ "operator": "In",
+ "values": [
+ "V6K_.3_583-6.f-.9-.V..Q-K_6_3"
+ ]
}
]
}
@@ -1468,66 +1515,64 @@
]
}
},
- "schedulerName": "477",
+ "schedulerName": "478",
"tolerations": [
{
- "key": "478",
- "operator": "ŭʔb'?舍ȃʥx臥]å摞",
- "value": "479",
- "tolerationSeconds": 3053978290188957517
+ "key": "479",
+ "operator": "Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏",
+ "value": "480",
+ "effect": "r埁摢噓涫祲ŗȨĽ堐mpƮ搌",
+ "tolerationSeconds": 6217170132371410053
}
],
"hostAliases": [
{
- "ip": "480",
+ "ip": "481",
"hostnames": [
- "481"
+ "482"
]
}
],
- "priorityClassName": "482",
- "priority": -340583156,
+ "priorityClassName": "483",
+ "priority": -1371816595,
"dnsConfig": {
"nameservers": [
- "483"
+ "484"
],
"searches": [
- "484"
+ "485"
],
"options": [
{
- "name": "485",
- "value": "486"
+ "name": "486",
+ "value": "487"
}
]
},
"readinessGates": [
{
- "conditionType": "țc£PAÎǨȨ栋"
+ "conditionType": "?ȣ4c"
}
],
- "runtimeClassName": "487",
+ "runtimeClassName": "488",
"enableServiceLinks": false,
- "preemptionPolicy": "n{鳻",
+ "preemptionPolicy": "%ǁšjƾ$ʛ螳%65c3盧Ŷb",
"overhead": {
- "隅DžbİEMǶɼ`|褞": "229"
+ "ʬÇ[輚趞ț@": "597"
},
"topologySpreadConstraints": [
{
- "maxSkew": 1486667065,
- "topologyKey": "488",
- "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
+ "maxSkew": 1762898358,
+ "topologyKey": "489",
+ "whenUnsatisfiable": "ʚʛ\u0026]ŶɄğɒơ舎",
"labelSelector": {
"matchLabels": {
- "H_55..--E3_2D-1DW__o_-.k": "7"
+ "5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w": "j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7"
},
"matchExpressions": [
{
- "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
- "operator": "NotIn",
- "values": [
- "H1z..j_.r3--T"
- ]
+ "key": "kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V",
+ "operator": "Exists"
}
]
}
@@ -1535,37 +1580,37 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "Ê"
+ "name": "%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ"
}
}
},
"updateStrategy": {
- "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
+ "type": "ʟ]mʦ獪霛圦Ƶ胐N砽§",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -463159422,
- "revisionHistoryLimit": -855944448
+ "minReadySeconds": 529770835,
+ "revisionHistoryLimit": -1937346941
},
"status": {
- "currentNumberScheduled": -1556190810,
- "numberMisscheduled": -487001726,
- "desiredNumberScheduled": 929611261,
- "numberReady": -1728725476,
- "observedGeneration": -6594742865080720976,
- "updatedNumberScheduled": -1612961101,
- "numberAvailable": 1731921624,
- "numberUnavailable": 826023875,
- "collisionCount": 619959999,
+ "currentNumberScheduled": -1039302739,
+ "numberMisscheduled": -89689385,
+ "desiredNumberScheduled": -1429991698,
+ "numberReady": 428205654,
+ "observedGeneration": -7167127345249609151,
+ "updatedNumberScheduled": -1647164053,
+ "numberAvailable": -1402277158,
+ "numberUnavailable": -1513836046,
+ "collisionCount": -230316059,
"conditions": [
{
- "type": "¹bCũw¼ ǫđ槴Ċį軠\u003e桼劑躮",
- "status": "9=ȳB鼲糰Eè6苁嗀ĕ佣",
- "lastTransitionTime": "2821-04-08T08:07:20Z",
- "reason": "495",
- "message": "496"
+ "type": "Ƙȑ",
+ "status": "ɘʘ?s檣ŝƚʤ\u003cƟʚ`÷",
+ "lastTransitionTime": "2825-03-21T02:40:56Z",
+ "reason": "496",
+ "message": "497"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb
index d7f35cd0553..d0041556d90 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml
index 071f1a834d8..236589547b0 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml
@@ -31,8 +31,8 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -463159422
- revisionHistoryLimit: -855944448
+ minReadySeconds: 529770835
+ revisionHistoryLimit: -1937346941
selector:
matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@@ -73,350 +73,366 @@ spec:
selfLink: "29"
uid: TʡȂŏ{sǡƟ
spec:
- activeDeadlineSeconds: 2684251781701131156
+ activeDeadlineSeconds: 9106348347596466980
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "417"
- operator: ȋ灋槊盘
+ - key: "418"
+ operator: ""
values:
- - "418"
+ - "419"
matchFields:
- - key: "419"
- operator: 牬庘颮6(
+ - key: "420"
+ operator: ""
values:
- - "420"
- weight: 836045166
+ - "421"
+ weight: -1084193035
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "413"
- operator: șƷK*ƌ驔瓊'
+ - key: "414"
+ operator: ʛ饊ɣKIJWĶʗ{裦i÷ɷȤ砘
values:
- - "414"
+ - "415"
matchFields:
- - key: "415"
- operator: Mĕ霉}閜LIȜŚɇA%ɀ蓧
+ - key: "416"
+ operator: K*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗ
values:
- - "416"
+ - "417"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: "n"
+ - key: cx-64dw-buvf.1g--1035ad1o-d-6-bk81-34s-s-63z-v--8r-0-2--rad877gr2/w_tdt_-Z0T
operator: NotIn
values:
- - a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
+ - g.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-U
matchLabels:
- I_--.k47M7y-Dy__3wc.q.8_00.0_._f: L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0
+ 4.7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.eD: 5_.W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
namespaceSelector:
matchExpressions:
- - key: 34G._--u.._.105-4_ed-0-H
- operator: NotIn
+ - key: vSW_4-__h
+ operator: In
values:
- - a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q
+ - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
matchLabels:
- tO4-7-P41_.-.-AQ._r.-_R1: 8KLu..ly--J-_.ZCRT.0z-e
+ T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ
namespaces:
- - "441"
- topologyKey: "442"
- weight: -585767440
+ - "442"
+ topologyKey: "443"
+ weight: -37906634
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: z_o_2.--4Z7__i1T.miw_a
- operator: NotIn
- values:
- - At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t
- matchLabels:
- 8o1-x-1wl--7/S.ol: Fgw_-z_659GE.l_.23--_6l.-5B
- namespaceSelector:
- matchExpressions:
- - key: 8-b6E_--Y_Dp8O_._e_3_.4_Wh
+ - key: f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO
operator: DoesNotExist
matchLabels:
- 5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL: GIT_B
+ ? p8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/V.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8oJ
+ : 46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e
+ namespaceSelector:
+ matchExpressions:
+ - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p
+ operator: DoesNotExist
+ matchLabels:
+ 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa
namespaces:
- - "427"
- topologyKey: "428"
+ - "428"
+ topologyKey: "429"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
- operator: Exists
+ - key: g--v8-c58kh44k-b13--522555-11jla8-phs1a--y.m4j1-10-p-4zk-63m-z235-af-3z6-ql----v-r8th/o._g_..o
+ operator: NotIn
+ values:
+ - C_60-__.19_-gYY._..fP--hQ7e
matchLabels:
- ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
+ 38vuo17qre-33-5-u8f0f1qv--i72-x3e.z-8-tcd2-84s-n-i-711s4--9s8--o-8dm---b----036/6M__4-Pg: EI_4G
namespaceSelector:
matchExpressions:
- - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
- operator: Exists
+ - key: KTlO.__0PX
+ operator: In
+ values:
+ - V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
- E35H__.B_E: U..u8gwbk
+ 3c9_4._U.kT-.---c---cO1_x.Pi.---l.---9._-__X2_w_bn..--_qD-J_.4: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
namespaces:
- - "469"
- topologyKey: "470"
- weight: 339079271
+ - "470"
+ topologyKey: "471"
+ weight: -1205967741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
- operator: DoesNotExist
+ - key: Q-.-.g-_Z_-nSLq
+ operator: In
+ values:
+ - lks7dG-9S-O62o.8._.---UK_-.j2z
matchLabels:
- 3_Lsu-H_.f82-82: dWNn_U-...1P_.D8_t..-Ww27
+ 4-vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476b---nhc50-2/7_3o_V-w._-0d__7.81_-._-_8_.._.a: L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.R
namespaceSelector:
matchExpressions:
- - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7
- operator: DoesNotExist
+ - key: F_o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.WxPc---K__-iguFGT._Y
+ operator: NotIn
+ values:
+ - ""
matchLabels:
- "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR
+ 1p-06jVZ-uP.t_.O937uh: j-dY7_M_-._M5..-N_H_55..--EO
namespaces:
- - "455"
- topologyKey: "456"
+ - "456"
+ topologyKey: "457"
automountServiceAccountToken: true
containers:
- args:
- - "255"
+ - "257"
command:
- - "254"
+ - "256"
env:
- - name: "262"
- value: "263"
+ - name: "264"
+ value: "265"
valueFrom:
configMapKeyRef:
- key: "269"
- name: "268"
- optional: true
- fieldRef:
- apiVersion: "264"
- fieldPath: "265"
- resourceFieldRef:
- containerName: "266"
- divisor: "834"
- resource: "267"
- secretKeyRef:
key: "271"
name: "270"
optional: false
+ fieldRef:
+ apiVersion: "266"
+ fieldPath: "267"
+ resourceFieldRef:
+ containerName: "268"
+ divisor: "219"
+ resource: "269"
+ secretKeyRef:
+ key: "273"
+ name: "272"
+ optional: false
envFrom:
- configMapRef:
- name: "260"
- optional: true
- prefix: "259"
- secretRef:
- name: "261"
+ name: "262"
optional: false
- image: "253"
- imagePullPolicy: -紑浘牬釼aTGÒ鵌
+ prefix: "261"
+ secretRef:
+ name: "263"
+ optional: true
+ image: "255"
+ imagePullPolicy: ×p鬷m罂o3ǰ廋i乳'ȘUɻ;
lifecycle:
postStart:
exec:
command:
- - "300"
+ - "304"
httpGet:
- host: "303"
- httpHeaders:
- - name: "304"
- value: "305"
- path: "301"
- port: "302"
- scheme: ĝ®EĨǔvÄÚ×p鬷
- tcpSocket:
host: "306"
- port: 1673908530
+ httpHeaders:
+ - name: "307"
+ value: "308"
+ path: "305"
+ port: 1190831814
+ scheme: dŊiɢ
+ tcpSocket:
+ host: "309"
+ port: -370404018
preStop:
exec:
command:
- - "307"
+ - "310"
httpGet:
- host: "310"
+ host: "312"
httpHeaders:
- - name: "311"
- value: "312"
- path: "308"
- port: "309"
- scheme: żLj捲攻xƂ9阠$嬏wy¶熀
+ - name: "313"
+ value: "314"
+ path: "311"
+ port: 280878117
+ scheme: ɞȥ}礤铟怖ý萜Ǖ
tcpSocket:
- host: "313"
- port: -1912967242
+ host: "315"
+ port: -1088996269
livenessProbe:
exec:
command:
- - "278"
- failureThreshold: 65094252
+ - "280"
+ failureThreshold: 2112112129
+ gRPC:
+ port: -977348956
+ service: "287"
httpGet:
- host: "281"
+ host: "282"
httpHeaders:
- - name: "282"
- value: "283"
- path: "279"
- port: "280"
- scheme: ɜ瞍阎lğ Ņ#耗Ǚ(
- initialDelaySeconds: -1934305215
- periodSeconds: 875971520
- successThreshold: 161338049
+ - name: "283"
+ value: "284"
+ path: "281"
+ port: 597943993
+ scheme: "8"
+ initialDelaySeconds: -637630736
+ periodSeconds: -1320027474
+ successThreshold: -1750169306
tcpSocket:
- host: "284"
- port: 317211081
- terminationGracePeriodSeconds: -6831592407095063988
- timeoutSeconds: -655359985
- name: "252"
+ host: "286"
+ port: "285"
+ terminationGracePeriodSeconds: 2270336783402505634
+ timeoutSeconds: 601942575
+ name: "254"
ports:
- - containerPort: -1225881740
- hostIP: "258"
- hostPort: -1408385387
- name: "257"
- protocol: 撑¼蠾8餑噭
+ - containerPort: -444561761
+ hostIP: "260"
+ hostPort: -1170565984
+ name: "259"
+ protocol: 5哇芆斩ìh4ɊHȖ|ʐş
readinessProbe:
exec:
command:
- - "285"
- failureThreshold: 404234347
+ - "288"
+ failureThreshold: 2073630689
+ gRPC:
+ port: 626243488
+ service: "295"
httpGet:
- host: "287"
+ host: "290"
httpHeaders:
- - name: "288"
- value: "289"
- path: "286"
- port: -2126891601
- scheme: l}Ñ蠂Ü[ƛ^輅9ɛ棕
- initialDelaySeconds: 1660454722
- periodSeconds: -1347045470
- successThreshold: 1169580662
+ - name: "291"
+ value: "292"
+ path: "289"
+ port: -239264629
+ scheme: ɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ
+ initialDelaySeconds: -1920304485
+ periodSeconds: 1424401373
+ successThreshold: -531787516
tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: 8560122250231719622
- timeoutSeconds: -1317234078
+ host: "294"
+ port: "293"
+ terminationGracePeriodSeconds: -3568583337361453338
+ timeoutSeconds: -1842062977
resources:
limits:
- n(fǂǢ曣ŋayåe躒訙Ǫ: "12"
+ 丽饾| 鞤ɱď: "590"
requests:
- (娕uE增猍: "264"
+ 噭DµņP)DŽ髐njʉBn(f: "584"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - Nh×DJɶ羹ƞʓ%ʝ`ǭ
+ - 桉桃喕蠲$ɛ溢臜裡×
drop:
- - ñ?卶滿筇ȟP:/a
- privileged: false
- procMount: ð仁Q橱9ij\Ď愝Ű藛b磾sY
- readOnlyRootFilesystem: true
- runAsGroup: 5797412715505520759
+ - -紑浘牬釼aTGÒ鵌
+ privileged: true
+ procMount: ʓ%ʝ`ǭ躌ñ?卶滿筇ȟP:/
+ readOnlyRootFilesystem: false
+ runAsGroup: 296399212346260204
runAsNonRoot: false
- runAsUser: 308757565294839546
+ runAsUser: -3539084410583519556
seLinuxOptions:
- level: "318"
- role: "316"
- type: "317"
- user: "315"
+ level: "320"
+ role: "318"
+ type: "319"
+ user: "317"
seccompProfile:
- localhostProfile: "322"
- type: 繽敮ǰ詀ǿ忀oɎƺ
+ localhostProfile: "324"
+ type: 殆诵H玲鑠ĭ$#卛8ð仁Q
windowsOptions:
- gmsaCredentialSpec: "320"
- gmsaCredentialSpecName: "319"
+ gmsaCredentialSpec: "322"
+ gmsaCredentialSpecName: "321"
hostProcess: false
- runAsUserName: "321"
+ runAsUserName: "323"
startupProbe:
exec:
command:
- - "292"
- failureThreshold: 1419787816
+ - "296"
+ failureThreshold: 1660454722
+ gRPC:
+ port: 413903479
+ service: "303"
httpGet:
- host: "295"
+ host: "298"
httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: ǚŜEuEy竬ʆɞ
- initialDelaySeconds: 336252010
- periodSeconds: 930785927
- successThreshold: 1624098740
+ - name: "299"
+ value: "300"
+ path: "297"
+ port: -894026356
+ scheme: 繐汚磉反-n覦
+ initialDelaySeconds: 1708236944
+ periodSeconds: 1961354355
+ successThreshold: -1977635123
tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -506227444233847191
- timeoutSeconds: 677650619
- terminationMessagePath: "314"
- terminationMessagePolicy: 漤ŗ坟
- tty: true
+ host: "302"
+ port: "301"
+ terminationGracePeriodSeconds: -5657477284668711794
+ timeoutSeconds: -1192140557
+ stdinOnce: true
+ terminationMessagePath: "316"
+ terminationMessagePolicy: ƘƵŧ1ƟƓ宆!
volumeDevices:
- - devicePath: "277"
- name: "276"
+ - devicePath: "279"
+ name: "278"
volumeMounts:
- - mountPath: "273"
- mountPropagation: irȎ3Ĕ\ɢX鰨松
- name: "272"
- subPath: "274"
- subPathExpr: "275"
- workingDir: "256"
+ - mountPath: "275"
+ mountPropagation: 鑳w妕眵笭/9崍h趭
+ name: "274"
+ readOnly: true
+ subPath: "276"
+ subPathExpr: "277"
+ workingDir: "258"
dnsConfig:
nameservers:
- - "483"
- options:
- - name: "485"
- value: "486"
- searches:
- "484"
- dnsPolicy: 厶s
+ options:
+ - name: "486"
+ value: "487"
+ searches:
+ - "485"
+ dnsPolicy: ȩ愉B
enableServiceLinks: false
ephemeralContainers:
- args:
- - "326"
+ - "328"
command:
- - "325"
+ - "327"
env:
- - name: "333"
- value: "334"
+ - name: "335"
+ value: "336"
valueFrom:
configMapKeyRef:
- key: "340"
- name: "339"
- optional: true
- fieldRef:
- apiVersion: "335"
- fieldPath: "336"
- resourceFieldRef:
- containerName: "337"
- divisor: "971"
- resource: "338"
- secretKeyRef:
key: "342"
name: "341"
optional: true
+ fieldRef:
+ apiVersion: "337"
+ fieldPath: "338"
+ resourceFieldRef:
+ containerName: "339"
+ divisor: "121"
+ resource: "340"
+ secretKeyRef:
+ key: "344"
+ name: "343"
+ optional: false
envFrom:
- configMapRef:
- name: "331"
- optional: true
- prefix: "330"
- secretRef:
- name: "332"
+ name: "333"
optional: false
- image: "324"
- imagePullPolicy: '#t(ȗŜŲ&洪y儕l'
+ prefix: "332"
+ secretRef:
+ name: "334"
+ optional: true
+ image: "326"
lifecycle:
postStart:
exec:
command:
- - "371"
+ - "373"
httpGet:
- host: "374"
+ host: "375"
httpHeaders:
- - name: "375"
- value: "376"
- path: "372"
- port: "373"
- scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
+ - name: "376"
+ value: "377"
+ path: "374"
+ port: 1762917570
+ scheme: Ų買霎ȃň[>ą
tcpSocket:
host: "378"
- port: "377"
+ port: 1414336865
preStop:
exec:
command:
@@ -427,135 +443,142 @@ spec:
- name: "382"
value: "383"
path: "380"
- port: -1743587482
+ port: 1129006716
+ scheme: ȱɷȰW瀤oɢ嫎¸殚篎3
tcpSocket:
- host: "384"
- port: 858034123
+ host: "385"
+ port: "384"
livenessProbe:
exec:
command:
- - "349"
- failureThreshold: -2033879721
+ - "351"
+ failureThreshold: 1776174141
+ gRPC:
+ port: -839925309
+ service: "357"
httpGet:
- host: "352"
+ host: "353"
httpHeaders:
- - name: "353"
- value: "354"
- path: "350"
- port: "351"
- scheme: 07曳wœj堑ūM鈱ɖ'蠨
- initialDelaySeconds: -242798806
- periodSeconds: 681004793
- successThreshold: 2002666266
+ - name: "354"
+ value: "355"
+ path: "352"
+ port: -592535081
+ scheme: fsǕT
+ initialDelaySeconds: -526099499
+ periodSeconds: 1708011112
+ successThreshold: -603097910
tcpSocket:
host: "356"
- port: "355"
- terminationGracePeriodSeconds: -4409241678312226730
- timeoutSeconds: -1940800545
- name: "323"
+ port: -394464008
+ terminationGracePeriodSeconds: -5794598592563963676
+ timeoutSeconds: -1014296961
+ name: "325"
ports:
- - containerPort: -557687916
- hostIP: "329"
- hostPort: 788093377
- name: "328"
- protocol: _敕
+ - containerPort: 2004993767
+ hostIP: "331"
+ hostPort: -846940406
+ name: "330"
+ protocol: Ű藛b磾sYȠ繽敮ǰ
readinessProbe:
exec:
command:
- - "357"
- failureThreshold: -2122876628
+ - "358"
+ failureThreshold: 1019901190
+ gRPC:
+ port: 701103233
+ service: "364"
httpGet:
- host: "359"
+ host: "360"
httpHeaders:
- - name: "360"
- value: "361"
- path: "358"
- port: 279062028
- scheme: Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p
- initialDelaySeconds: 725557531
- periodSeconds: 741667779
- successThreshold: -381344241
+ - name: "361"
+ value: "362"
+ path: "359"
+ port: 134832144
+ scheme: Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍
+ initialDelaySeconds: 1995848794
+ periodSeconds: -372626292
+ successThreshold: 2018111855
tcpSocket:
- host: "362"
- port: -943058206
- terminationGracePeriodSeconds: 2700145646260085226
- timeoutSeconds: -703127031
+ host: "363"
+ port: -1289510276
+ terminationGracePeriodSeconds: -6980960365540477247
+ timeoutSeconds: -281926929
resources:
limits:
- 湷D谹気Ƀ秮òƬɸĻo:{: "523"
+ $矐_敕ű嵞嬯t{Eɾ敹Ȯ-: "642"
requests:
- 赮ǒđ>*劶?jĎĭ¥#ƱÁR»: "929"
+ 蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx: "77"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - ɻŶJ詢
+ - rƈa餖Ľ
drop:
- - ǾɁ鍻G鯇ɀ魒Ð扬=惍E
- privileged: false
- procMount: ;Ƭ婦d%蹶/ʗp壥Ƥ
- readOnlyRootFilesystem: false
- runAsGroup: -2841141127223294729
- runAsNonRoot: false
- runAsUser: -5071790362153704411
+ - 淴ɑ?¶Ȳ
+ privileged: true
+ procMount: œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ
+ readOnlyRootFilesystem: true
+ runAsGroup: 8544841476815986834
+ runAsNonRoot: true
+ runAsUser: 5200080507234099655
seLinuxOptions:
- level: "389"
- role: "387"
- type: "388"
- user: "386"
+ level: "390"
+ role: "388"
+ type: "389"
+ user: "387"
seccompProfile:
- localhostProfile: "393"
- type: 郡ɑ鮽ǍJB膾扉A1襏櫯³
+ localhostProfile: "394"
+ type: 'ʫį淓¯Ą0ƛ忀z委>,趐V曡88 '
windowsOptions:
- gmsaCredentialSpec: "391"
- gmsaCredentialSpecName: "390"
- hostProcess: false
- runAsUserName: "392"
+ gmsaCredentialSpec: "392"
+ gmsaCredentialSpecName: "391"
+ hostProcess: true
+ runAsUserName: "393"
startupProbe:
exec:
command:
- - "363"
- failureThreshold: 1762917570
+ - "365"
+ failureThreshold: -1289875111
+ gRPC:
+ port: 1782790310
+ service: "372"
httpGet:
- host: "366"
+ host: "368"
httpHeaders:
- - name: "367"
- value: "368"
- path: "364"
- port: "365"
- scheme: thp像-
- initialDelaySeconds: 1589417286
- periodSeconds: 1874051321
- successThreshold: -500012714
+ - name: "369"
+ value: "370"
+ path: "366"
+ port: "367"
+ scheme: p蓋沥7uPƒw©ɴ
+ initialDelaySeconds: 1587036035
+ periodSeconds: -59501664
+ successThreshold: 1261462387
tcpSocket:
- host: "370"
- port: "369"
- terminationGracePeriodSeconds: 4794571970514469019
- timeoutSeconds: 445878206
+ host: "371"
+ port: -671265235
+ terminationGracePeriodSeconds: -7492770647593151162
+ timeoutSeconds: 1760208172
stdinOnce: true
- targetContainerName: "394"
- terminationMessagePath: "385"
- terminationMessagePolicy: 喾@潷
+ targetContainerName: "395"
+ terminationMessagePath: "386"
+ terminationMessagePolicy: '[y#t('
volumeDevices:
- - devicePath: "348"
- name: "347"
+ - devicePath: "350"
+ name: "349"
volumeMounts:
- - mountPath: "344"
- mountPropagation: '|ǓÓ敆OɈÏ 瞍髃'
- name: "343"
- readOnly: true
- subPath: "345"
- subPathExpr: "346"
- workingDir: "327"
+ - mountPath: "346"
+ mountPropagation: ¬h`職铳s44矕Ƈè*鑏='ʨ|
+ name: "345"
+ subPath: "347"
+ subPathExpr: "348"
+ workingDir: "329"
hostAliases:
- hostnames:
- - "481"
- ip: "480"
- hostIPC: true
- hostPID: true
- hostname: "411"
+ - "482"
+ ip: "481"
+ hostname: "412"
imagePullSecrets:
- - name: "410"
+ - name: "411"
initContainers:
- args:
- "184"
@@ -589,43 +612,46 @@ spec:
name: "190"
optional: false
image: "182"
- imagePullPolicy: '{屿oiɥ嵐sC8?Ǻ'
+ imagePullPolicy: ɐ鰥
lifecycle:
postStart:
exec:
command:
- - "228"
+ - "232"
httpGet:
- host: "231"
- httpHeaders:
- - name: "232"
- value: "233"
- path: "229"
- port: "230"
- scheme: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
- tcpSocket:
host: "234"
- port: 1993268896
+ httpHeaders:
+ - name: "235"
+ value: "236"
+ path: "233"
+ port: 1328165061
+ scheme: ¸gĩ
+ tcpSocket:
+ host: "237"
+ port: 1186392166
preStop:
exec:
command:
- - "235"
+ - "238"
httpGet:
- host: "238"
+ host: "240"
httpHeaders:
- - name: "239"
- value: "240"
- path: "236"
- port: "237"
- scheme: 'ƿ頀"冓鍓贯澔 '
+ - name: "241"
+ value: "242"
+ path: "239"
+ port: -1315487077
+ scheme: ğ_
tcpSocket:
- host: "242"
- port: "241"
+ host: "244"
+ port: "243"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -552281772
+ failureThreshold: -1666819085
+ gRPC:
+ port: -614161319
+ service: "214"
httpGet:
host: "210"
httpHeaders:
@@ -634,14 +660,14 @@ spec:
path: "208"
port: "209"
scheme: u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ
- initialDelaySeconds: -1246371817
- periodSeconds: 432291364
- successThreshold: 676578360
+ initialDelaySeconds: 452673549
+ periodSeconds: -125932767
+ successThreshold: -18758819
tcpSocket:
host: "213"
port: 1714588921
- terminationGracePeriodSeconds: -2910346974754087949
- timeoutSeconds: 617318981
+ terminationGracePeriodSeconds: -1212012606981050727
+ timeoutSeconds: 627670321
name: "181"
ports:
- containerPort: -1252938503
@@ -652,23 +678,27 @@ spec:
readinessProbe:
exec:
command:
- - "214"
- failureThreshold: 2056774277
+ - "215"
+ failureThreshold: -736151561
+ gRPC:
+ port: -760292259
+ service: "222"
httpGet:
- host: "216"
+ host: "218"
httpHeaders:
- - name: "217"
- value: "218"
- path: "215"
- port: 656200799
- initialDelaySeconds: -2165496
- periodSeconds: 1386255869
- successThreshold: -778272981
+ - name: "219"
+ value: "220"
+ path: "216"
+ port: "217"
+ scheme: '&皥贸碔lNKƙ順\E¦队偯'
+ initialDelaySeconds: -1164530482
+ periodSeconds: 1430286749
+ successThreshold: -374766088
tcpSocket:
- host: "220"
- port: "219"
- terminationGracePeriodSeconds: -9219895030215397584
- timeoutSeconds: -1778952574
+ host: "221"
+ port: -316996074
+ terminationGracePeriodSeconds: -6508463748290235837
+ timeoutSeconds: 1877574041
resources:
limits:
LĹ]佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊: "807"
@@ -678,51 +708,57 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - ;Nŕ璻Jih亏yƕ丆録²Ŏ
+ - ´DÒȗÔÂɘɢ鬍熖B芭花ª瘡
drop:
- - /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫
- privileged: true
- procMount: šeSvEȤƏ埮pɵ{WOŭW灬pȭ
+ - J
+ privileged: false
+ procMount: nj汰8ŕİi騎C"6x$1sȣ±p
readOnlyRootFilesystem: true
- runAsGroup: 6453802934472477147
+ runAsGroup: -8859267173741137425
runAsNonRoot: true
- runAsUser: 4041264710404335706
+ runAsUser: 8519266600558609398
seLinuxOptions:
- level: "247"
- role: "245"
- type: "246"
- user: "244"
+ level: "249"
+ role: "247"
+ type: "248"
+ user: "246"
seccompProfile:
- localhostProfile: "251"
- type: V擭銆j
+ localhostProfile: "253"
+ type: ""
windowsOptions:
- gmsaCredentialSpec: "249"
- gmsaCredentialSpecName: "248"
+ gmsaCredentialSpec: "251"
+ gmsaCredentialSpecName: "250"
hostProcess: true
- runAsUserName: "250"
+ runAsUserName: "252"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: -1137436579
+ - "223"
+ failureThreshold: 1156888068
+ gRPC:
+ port: -1984097455
+ service: "231"
httpGet:
- host: "224"
+ host: "226"
httpHeaders:
- - name: "225"
- value: "226"
- path: "222"
- port: "223"
- scheme: 鬶l獕;跣Hǝcw
- initialDelaySeconds: -736151561
- periodSeconds: -1856061695
- successThreshold: 1868683352
+ - name: "227"
+ value: "228"
+ path: "224"
+ port: "225"
+ scheme: 颶妧Ö闊
+ initialDelaySeconds: -253326525
+ periodSeconds: 887319241
+ successThreshold: 1559618829
tcpSocket:
- host: "227"
- port: -374766088
- terminationGracePeriodSeconds: 8876559635423161004
- timeoutSeconds: -1515369804
- terminationMessagePath: "243"
- terminationMessagePolicy: 6Ɖ飴ɎiǨź'
+ host: "230"
+ port: "229"
+ terminationGracePeriodSeconds: -5566612115749133989
+ timeoutSeconds: 567263590
+ stdin: true
+ stdinOnce: true
+ terminationMessagePath: "245"
+ terminationMessagePolicy: ëJ橈'琕鶫:顇ə娯Ȱ囌
+ tty: true
volumeDevices:
- devicePath: "206"
name: "205"
@@ -733,68 +769,67 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "399"
+ nodeName: "400"
nodeSelector:
- "395": "396"
+ "396": "397"
os:
- name: Ê
+ name: '%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ'
overhead:
- 隅DžbİEMǶɼ`|褞: "229"
- preemptionPolicy: n{鳻
- priority: -340583156
- priorityClassName: "482"
+ ʬÇ[輚趞ț@: "597"
+ preemptionPolicy: '%ǁšjƾ$ʛ螳%65c3盧Ŷb'
+ priority: -1371816595
+ priorityClassName: "483"
readinessGates:
- - conditionType: țc£PAÎǨȨ栋
- restartPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉
- runtimeClassName: "487"
- schedulerName: "477"
+ - conditionType: ?ȣ4c
+ restartPolicy: 荊ù灹8緔Tj§E蓋
+ runtimeClassName: "488"
+ schedulerName: "478"
securityContext:
- fsGroup: 4301352137345790658
- fsGroupChangePolicy: 柱栦阫Ƈʥ椹
- runAsGroup: -2037509302018919599
+ fsGroup: -640858663485353963
+ fsGroupChangePolicy: 氙'[>ĵ'o儿
+ runAsGroup: 3044211288080348140
runAsNonRoot: true
- runAsUser: -3184085461588437523
+ runAsUser: 231646691853926712
seLinuxOptions:
- level: "403"
- role: "401"
- type: "402"
- user: "400"
+ level: "404"
+ role: "402"
+ type: "403"
+ user: "401"
seccompProfile:
- localhostProfile: "409"
- type: 飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i
+ localhostProfile: "410"
+ type: 銭u裡_Ơ9o
supplementalGroups:
- - -885564056413671854
+ - 7168071284072373028
sysctls:
- - name: "407"
- value: "408"
+ - name: "408"
+ value: "409"
windowsOptions:
- gmsaCredentialSpec: "405"
- gmsaCredentialSpecName: "404"
- hostProcess: true
- runAsUserName: "406"
- serviceAccount: "398"
- serviceAccountName: "397"
+ gmsaCredentialSpec: "406"
+ gmsaCredentialSpecName: "405"
+ hostProcess: false
+ runAsUserName: "407"
+ serviceAccount: "399"
+ serviceAccountName: "398"
setHostnameAsFQDN: false
- shareProcessNamespace: true
- subdomain: "412"
- terminationGracePeriodSeconds: -1390311149947249535
+ shareProcessNamespace: false
+ subdomain: "413"
+ terminationGracePeriodSeconds: -2019276087967685705
tolerations:
- - key: "478"
- operator: ŭʔb'?舍ȃʥx臥]å摞
- tolerationSeconds: 3053978290188957517
- value: "479"
+ - effect: r埁摢噓涫祲ŗȨĽ堐mpƮ搌
+ key: "479"
+ operator: Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏
+ tolerationSeconds: 6217170132371410053
+ value: "480"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
- operator: NotIn
- values:
- - H1z..j_.r3--T
+ - key: kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V
+ operator: Exists
matchLabels:
- H_55..--E3_2D-1DW__o_-.k: "7"
- maxSkew: 1486667065
- topologyKey: "488"
- whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
+ 5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w: j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7
+ maxSkew: 1762898358
+ topologyKey: "489"
+ whenUnsatisfiable: ʚʛ&]ŶɄğɒơ舎
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1055,20 +1090,20 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
+ type: ʟ]mʦ獪霛圦Ƶ胐N砽§
status:
- collisionCount: 619959999
+ collisionCount: -230316059
conditions:
- - lastTransitionTime: "2821-04-08T08:07:20Z"
- message: "496"
- reason: "495"
- status: 9=ȳB鼲糰Eè6苁嗀ĕ佣
- type: ¹bCũw¼ ǫđ槴Ċį軠>桼劑躮
- currentNumberScheduled: -1556190810
- desiredNumberScheduled: 929611261
- numberAvailable: 1731921624
- numberMisscheduled: -487001726
- numberReady: -1728725476
- numberUnavailable: 826023875
- observedGeneration: -6594742865080720976
- updatedNumberScheduled: -1612961101
+ - lastTransitionTime: "2825-03-21T02:40:56Z"
+ message: "497"
+ reason: "496"
+ status: ɘʘ?s檣ŝƚʤ<Ɵʚ`÷
+ type: Ƙȑ
+ currentNumberScheduled: -1039302739
+ desiredNumberScheduled: -1429991698
+ numberAvailable: -1402277158
+ numberMisscheduled: -89689385
+ numberReady: 428205654
+ numberUnavailable: -1513836046
+ observedGeneration: -7167127345249609151
+ updatedNumberScheduled: -1647164053
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json
index 31083694261..7daf2f80b37 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,39 +1573,38 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"strategy": {
- "type": "Ýɹ橽ƴåj}c殶ėŔ裑烴\u003c暉Ŝ!",
+ "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -779806398,
- "revisionHistoryLimit": 440570496,
- "paused": true,
- "progressDeadlineSeconds": 1952245732
+ "minReadySeconds": -463159422,
+ "revisionHistoryLimit": -855944448,
+ "progressDeadlineSeconds": -487001726
},
"status": {
- "observedGeneration": 3465735415490749292,
- "replicas": 1535734699,
- "updatedReplicas": 1969397344,
- "readyReplicas": 1117243224,
- "availableReplicas": 1150861753,
- "unavailableReplicas": -750110452,
+ "observedGeneration": -430213889424572931,
+ "replicas": -1728725476,
+ "updatedReplicas": -36544080,
+ "readyReplicas": -1612961101,
+ "availableReplicas": 1731921624,
+ "unavailableReplicas": 826023875,
"conditions": [
{
- "type": "妽4LM桵Ţ宧ʜ",
- "status": "ŲNªǕt谍Ã\u0026榠塹",
- "lastUpdateTime": "2128-12-14T03:53:25Z",
- "lastTransitionTime": "2463-06-07T06:21:23Z",
- "reason": "491",
- "message": "492"
+ "type": "¦褅桃|薝Țµʍ^鼑:$Ǿ觇ƒ",
+ "status": "桼劑躮ǿȦU锭ǭ舒",
+ "lastUpdateTime": "2294-08-28T16:58:10Z",
+ "lastTransitionTime": "2140-08-23T12:38:52Z",
+ "reason": "503",
+ "message": "504"
}
],
- "collisionCount": 407647568
+ "collisionCount": 275578828
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb
index b0ca4fb892d..c98fb338bdd 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml
index f50d2da074e..aceabad2d1c 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.yaml
@@ -31,11 +31,10 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -779806398
- paused: true
- progressDeadlineSeconds: 1952245732
+ minReadySeconds: -463159422
+ progressDeadlineSeconds: -487001726
replicas: 896585016
- revisionHistoryLimit: 440570496
+ revisionHistoryLimit: -855944448
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@@ -46,7 +45,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: Ýɹ橽ƴåj}c殶ėŔ裑烴<暉Ŝ!
+ type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
template:
metadata:
annotations:
@@ -79,490 +78,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -640,14 +661,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -658,24 +679,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -685,52 +709,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -742,69 +769,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1064,17 +1090,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 1150861753
- collisionCount: 407647568
+ availableReplicas: 1731921624
+ collisionCount: 275578828
conditions:
- - lastTransitionTime: "2463-06-07T06:21:23Z"
- lastUpdateTime: "2128-12-14T03:53:25Z"
- message: "492"
- reason: "491"
- status: ŲNªǕt谍Ã&榠塹
- type: 妽4LM桵Ţ宧ʜ
- observedGeneration: 3465735415490749292
- readyReplicas: 1117243224
- replicas: 1535734699
- unavailableReplicas: -750110452
- updatedReplicas: 1969397344
+ - lastTransitionTime: "2140-08-23T12:38:52Z"
+ lastUpdateTime: "2294-08-28T16:58:10Z"
+ message: "504"
+ reason: "503"
+ status: 桼劑躮ǿȦU锭ǭ舒
+ type: ¦褅桃|薝Țµʍ^鼑:$Ǿ觇ƒ
+ observedGeneration: -430213889424572931
+ readyReplicas: -1612961101
+ replicas: -1728725476
+ unavailableReplicas: 826023875
+ updatedReplicas: -36544080
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json
index 79a1559b75b..ff7e81cb94f 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.json
@@ -558,24 +558,28 @@
"port": -187060941,
"host": "212"
},
- "initialDelaySeconds": -442393168,
- "timeoutSeconds": -307373517,
- "periodSeconds": 1109079597,
- "successThreshold": -646728130,
- "failureThreshold": 1684643131,
- "terminationGracePeriodSeconds": 5055443896475056676
+ "gRPC": {
+ "port": 1507815593,
+ "service": "213"
+ },
+ "initialDelaySeconds": 1498833271,
+ "timeoutSeconds": 1505082076,
+ "periodSeconds": 1447898632,
+ "successThreshold": 1602745893,
+ "failureThreshold": 1599076900,
+ "terminationGracePeriodSeconds": -8249176398367452506
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": 963670270,
"host": "216",
- "scheme": "惇¸t颟.鵫ǚ灄鸫rʤî萨",
+ "scheme": "ɘȌ脾嚏吐ĠLƐȤ藠3.v",
"httpHeaders": [
{
"name": "217",
@@ -587,336 +591,330 @@
"port": "219",
"host": "220"
},
- "initialDelaySeconds": 1885896895,
- "timeoutSeconds": -1232888129,
- "periodSeconds": -1682044542,
- "successThreshold": 1182477686,
- "failureThreshold": -503805926,
- "terminationGracePeriodSeconds": 332054723335023688
+ "gRPC": {
+ "port": 1182477686,
+ "service": "221"
+ },
+ "initialDelaySeconds": -503805926,
+ "timeoutSeconds": 77312514,
+ "periodSeconds": -763687725,
+ "successThreshold": -246563990,
+ "failureThreshold": 10098903,
+ "terminationGracePeriodSeconds": 4704090421576984895
},
"startupProbe": {
"exec": {
"command": [
- "221"
+ "222"
]
},
"httpGet": {
- "path": "222",
- "port": "223",
- "host": "224",
- "scheme": "«丯Ƙ枛牐ɺ皚",
+ "path": "223",
+ "port": "224",
+ "host": "225",
+ "scheme": "牐ɺ皚|懥",
"httpHeaders": [
{
- "name": "225",
- "value": "226"
+ "name": "226",
+ "value": "227"
}
]
},
"tcpSocket": {
- "port": -1934111455,
- "host": "227"
+ "port": "228",
+ "host": "229"
},
- "initialDelaySeconds": 766864314,
- "timeoutSeconds": 1146016612,
- "periodSeconds": 1495880465,
- "successThreshold": -1032967081,
- "failureThreshold": 59664438,
- "terminationGracePeriodSeconds": 4116652091516790056
+ "gRPC": {
+ "port": 593802074,
+ "service": "230"
+ },
+ "initialDelaySeconds": 538852927,
+ "timeoutSeconds": -407545915,
+ "periodSeconds": 902535764,
+ "successThreshold": 716842280,
+ "failureThreshold": 1479266199,
+ "terminationGracePeriodSeconds": 702282827459446622
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "228"
+ "231"
]
},
"httpGet": {
- "path": "229",
- "port": -1196874390,
- "host": "230",
- "scheme": "S晒嶗UÐ_ƮA攤",
+ "path": "232",
+ "port": 1883209805,
+ "host": "233",
+ "scheme": "ɓȌʟni酛3ƁÀ*",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "234",
+ "value": "235"
}
]
},
"tcpSocket": {
- "port": -498930176,
- "host": "233"
+ "port": "236",
+ "host": "237"
}
},
"preStop": {
"exec": {
"command": [
- "234"
+ "238"
]
},
"httpGet": {
- "path": "235",
- "port": "236",
- "host": "237",
- "scheme": "鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡",
+ "path": "239",
+ "port": "240",
+ "host": "241",
+ "scheme": "fBls3!Zɾģ毋Ó6",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "242",
+ "value": "243"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": -832805508,
+ "host": "244"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "?$矡ȶ网棊ʢ",
- "imagePullPolicy": "ʎȺ眖R#",
+ "terminationMessagePath": "245",
+ "terminationMessagePolicy": "庎D}埽uʎȺ眖R#yV'WKw(ğ儴",
+ "imagePullPolicy": "跦Opwǩ曬逴褜1",
"securityContext": {
"capabilities": {
"add": [
- "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ"
+ "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]"
],
"drop": [
- ""
+ "¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "246",
+ "role": "247",
+ "type": "248",
+ "level": "249"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
+ "gmsaCredentialSpecName": "250",
+ "gmsaCredentialSpec": "251",
+ "runAsUserName": "252",
"hostProcess": false
},
- "runAsUser": -2529737859863639391,
- "runAsGroup": 7694930383795602762,
+ "runAsUser": 2185575187737222181,
+ "runAsGroup": 3811348330690808371,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "\u003e郵[+扴ȨŮ",
+ "allowPrivilegeEscalation": false,
+ "procMount": " 苧yñKJɐ",
"seccompProfile": {
- "type": "朷Ǝ膯ljVX1虊谇",
- "localhostProfile": "250"
+ "type": "Gƚ绤fʀļ腩墺Ò媁荭gw",
+ "localhostProfile": "253"
}
},
- "stdin": true,
- "tty": true
+ "stdinOnce": true
}
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "254",
+ "image": "255",
"command": [
- "253"
+ "256"
],
"args": [
- "254"
+ "257"
],
- "workingDir": "255",
+ "workingDir": "258",
"ports": [
{
- "name": "256",
- "hostPort": 1381579966,
- "containerPort": -1418092595,
- "protocol": "闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x",
- "hostIP": "257"
+ "name": "259",
+ "hostPort": -1532958330,
+ "containerPort": -438588982,
+ "protocol": "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥",
+ "hostIP": "260"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "261",
"configMapRef": {
- "name": "259",
- "optional": true
+ "name": "262",
+ "optional": false
},
"secretRef": {
- "name": "260",
- "optional": true
+ "name": "263",
+ "optional": false
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "264",
+ "value": "265",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "266",
+ "fieldPath": "267"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "894"
+ "containerName": "268",
+ "resource": "269",
+ "divisor": "801"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
- "optional": true
+ "name": "270",
+ "key": "271",
+ "optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
- "optional": false
+ "name": "272",
+ "key": "273",
+ "optional": true
}
}
}
],
"resources": {
"limits": {
- "W\u003c敄lu|榝$î.Ȏ": "546"
+ "队偯J僳徥淳4揻": "175"
},
"requests": {
- "剒蔞|表": "379"
+ "": "170"
}
},
"volumeMounts": [
{
- "name": "271",
- "readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "朦 wƯ貾坢'跩",
- "subPathExpr": "274"
+ "name": "274",
+ "mountPath": "275",
+ "subPath": "276",
+ "mountPropagation": "×x锏ɟ4Ǒ",
+ "subPathExpr": "277"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "278",
+ "devicePath": "279"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "280"
]
},
"httpGet": {
- "path": "278",
- "port": -1471289102,
- "host": "279",
- "scheme": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳",
+ "path": "281",
+ "port": "282",
+ "host": "283",
+ "scheme": "澝qV訆Ǝżŧ",
"httpHeaders": [
{
- "name": "280",
- "value": "281"
+ "name": "284",
+ "value": "285"
}
]
},
"tcpSocket": {
- "port": 113873869,
- "host": "282"
+ "port": 204229950,
+ "host": "286"
},
- "initialDelaySeconds": -1421951296,
- "timeoutSeconds": 878005329,
- "periodSeconds": -1244119841,
- "successThreshold": 1235694147,
- "failureThreshold": 348370746,
- "terminationGracePeriodSeconds": 2011630253582325853
+ "gRPC": {
+ "port": 1315054653,
+ "service": "287"
+ },
+ "initialDelaySeconds": 711020087,
+ "timeoutSeconds": 1103049140,
+ "periodSeconds": -1965247100,
+ "successThreshold": 218453478,
+ "failureThreshold": 1993268896,
+ "terminationGracePeriodSeconds": -9140155223242250138
},
"readinessProbe": {
"exec": {
"command": [
- "283"
+ "288"
]
},
"httpGet": {
- "path": "284",
- "port": 1907998540,
- "host": "285",
- "scheme": ",ŕ",
+ "path": "289",
+ "port": -1315487077,
+ "host": "290",
+ "scheme": "ğ_",
"httpHeaders": [
{
- "name": "286",
- "value": "287"
+ "name": "291",
+ "value": "292"
}
]
},
"tcpSocket": {
- "port": "288",
- "host": "289"
+ "port": "293",
+ "host": "294"
},
- "initialDelaySeconds": -253326525,
- "timeoutSeconds": 567263590,
- "periodSeconds": 887319241,
- "successThreshold": 1559618829,
- "failureThreshold": 1156888068,
- "terminationGracePeriodSeconds": -5566612115749133989
+ "gRPC": {
+ "port": 972193458,
+ "service": "295"
+ },
+ "initialDelaySeconds": 1290950685,
+ "timeoutSeconds": 12533543,
+ "periodSeconds": 1058960779,
+ "successThreshold": -2133441986,
+ "failureThreshold": 472742933,
+ "terminationGracePeriodSeconds": 217739466937954194
},
"startupProbe": {
"exec": {
"command": [
- "290"
+ "296"
]
},
"httpGet": {
- "path": "291",
- "port": 1315054653,
- "host": "292",
- "scheme": "蚃ɣľ)酊龨δ摖ȱ",
+ "path": "297",
+ "port": 1401790459,
+ "host": "298",
+ "scheme": "ǵɐ鰥Z",
"httpHeaders": [
{
- "name": "293",
- "value": "294"
+ "name": "299",
+ "value": "300"
}
]
},
"tcpSocket": {
- "port": "295",
- "host": "296"
+ "port": -1103045151,
+ "host": "301"
},
- "initialDelaySeconds": 1905181464,
- "timeoutSeconds": -1730959016,
- "periodSeconds": 1272940694,
- "successThreshold": -385597677,
- "failureThreshold": 422133388,
- "terminationGracePeriodSeconds": 8385745044578923915
+ "gRPC": {
+ "port": 311083651,
+ "service": "302"
+ },
+ "initialDelaySeconds": 353361793,
+ "timeoutSeconds": -2081447068,
+ "periodSeconds": -708413798,
+ "successThreshold": -898536659,
+ "failureThreshold": -1513284745,
+ "terminationGracePeriodSeconds": 5404658974498114041
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "297"
+ "303"
]
},
"httpGet": {
- "path": "298",
- "port": "299",
- "host": "300",
- "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ",
- "httpHeaders": [
- {
- "name": "301",
- "value": "302"
- }
- ]
- },
- "tcpSocket": {
- "port": 802134138,
- "host": "303"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "304"
- ]
- },
- "httpGet": {
- "path": "305",
- "port": -126958936,
+ "path": "304",
+ "port": "305",
"host": "306",
- "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻",
"httpHeaders": [
{
"name": "307",
@@ -925,104 +923,130 @@
]
},
"tcpSocket": {
- "port": "309",
- "host": "310"
+ "port": 323903711,
+ "host": "309"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "310"
+ ]
+ },
+ "httpGet": {
+ "path": "311",
+ "port": "312",
+ "host": "313",
+ "scheme": "丆",
+ "httpHeaders": [
+ {
+ "name": "314",
+ "value": "315"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "316",
+ "host": "317"
}
}
},
- "terminationMessagePath": "311",
- "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS",
- "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮",
+ "terminationMessagePath": "318",
+ "terminationMessagePolicy": "Ŏ)/灩聋3趐囨鏻砅邻",
+ "imagePullPolicy": "騎C\"6x$1sȣ±p鋄",
"securityContext": {
"capabilities": {
"add": [
- "嘢4ʗN,丽饾| 鞤ɱďW賁"
+ "ȹ均i绝5哇芆斩ìh4Ɋ"
],
"drop": [
- "ɭɪǹ0衷,"
+ "Ȗ|ʐşƧ諔迮ƙIJ嘢4"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "312",
- "role": "313",
- "type": "314",
- "level": "315"
+ "user": "319",
+ "role": "320",
+ "type": "321",
+ "level": "322"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "316",
- "gmsaCredentialSpec": "317",
- "runAsUserName": "318",
- "hostProcess": true
+ "gmsaCredentialSpecName": "323",
+ "gmsaCredentialSpec": "324",
+ "runAsUserName": "325",
+ "hostProcess": false
},
- "runAsUser": -1119183212148951030,
- "runAsGroup": -7146044409185304665,
+ "runAsUser": -7936947433725476327,
+ "runAsGroup": -5712715102324619404,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
+ "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
- "procMount": "w妕眵笭/9崍h趭(娕",
+ "procMount": "W賁Ěɭɪǹ0",
"seccompProfile": {
- "type": "E增猍",
- "localhostProfile": "319"
+ "type": ",ƷƣMț譎懚XW疪鑳",
+ "localhostProfile": "326"
}
- }
+ },
+ "stdin": true,
+ "stdinOnce": true,
+ "tty": true
}
],
"ephemeralContainers": [
{
- "name": "320",
- "image": "321",
+ "name": "327",
+ "image": "328",
"command": [
- "322"
+ "329"
],
"args": [
- "323"
+ "330"
],
- "workingDir": "324",
+ "workingDir": "331",
"ports": [
{
- "name": "325",
- "hostPort": 601942575,
- "containerPort": -1320027474,
- "protocol": "Ƶf",
- "hostIP": "326"
+ "name": "332",
+ "hostPort": 217308913,
+ "containerPort": 455919108,
+ "protocol": "崍h趭(娕u",
+ "hostIP": "333"
}
],
"envFrom": [
{
- "prefix": "327",
+ "prefix": "334",
"configMapRef": {
- "name": "328",
- "optional": true
+ "name": "335",
+ "optional": false
},
"secretRef": {
- "name": "329",
- "optional": true
+ "name": "336",
+ "optional": false
}
}
],
"env": [
{
- "name": "330",
- "value": "331",
+ "name": "337",
+ "value": "338",
"valueFrom": {
"fieldRef": {
- "apiVersion": "332",
- "fieldPath": "333"
+ "apiVersion": "339",
+ "fieldPath": "340"
},
"resourceFieldRef": {
- "containerName": "334",
- "resource": "335",
- "divisor": "179"
+ "containerName": "341",
+ "resource": "342",
+ "divisor": "360"
},
"configMapKeyRef": {
- "name": "336",
- "key": "337",
+ "name": "343",
+ "key": "344",
"optional": false
},
"secretKeyRef": {
- "name": "338",
- "key": "339",
+ "name": "345",
+ "key": "346",
"optional": false
}
}
@@ -1030,57 +1054,29 @@
],
"resources": {
"limits": {
- "阎l": "464"
+ "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422"
},
"requests": {
- "'佉": "633"
+ "蕎'": "62"
}
},
"volumeMounts": [
{
- "name": "340",
- "mountPath": "341",
- "subPath": "342",
- "mountPropagation": "(ť1ùfŭƽ",
- "subPathExpr": "343"
+ "name": "347",
+ "readOnly": true,
+ "mountPath": "348",
+ "subPath": "349",
+ "mountPropagation": "Ǚ(",
+ "subPathExpr": "350"
}
],
"volumeDevices": [
{
- "name": "344",
- "devicePath": "345"
+ "name": "351",
+ "devicePath": "352"
}
],
"livenessProbe": {
- "exec": {
- "command": [
- "346"
- ]
- },
- "httpGet": {
- "path": "347",
- "port": -684167223,
- "host": "348",
- "scheme": "1b",
- "httpHeaders": [
- {
- "name": "349",
- "value": "350"
- }
- ]
- },
- "tcpSocket": {
- "port": "351",
- "host": "352"
- },
- "initialDelaySeconds": -47594442,
- "timeoutSeconds": -2064284357,
- "periodSeconds": 725624946,
- "successThreshold": -34803208,
- "failureThreshold": -313085430,
- "terminationGracePeriodSeconds": -7686796864837350582
- },
- "readinessProbe": {
"exec": {
"command": [
"353"
@@ -1088,9 +1084,9 @@
},
"httpGet": {
"path": "354",
- "port": 1611386356,
+ "port": -1842062977,
"host": "355",
- "scheme": "ɼ搳ǭ濑箨ʨIk(",
+ "scheme": "輔3璾ėȜv1b繐汚磉反-n覦",
"httpHeaders": [
{
"name": "356",
@@ -1099,185 +1095,227 @@
]
},
"tcpSocket": {
- "port": 2115799218,
- "host": "358"
+ "port": "358",
+ "host": "359"
},
- "initialDelaySeconds": 1984241264,
- "timeoutSeconds": -758033170,
- "periodSeconds": -487434422,
- "successThreshold": -370404018,
- "failureThreshold": -1844150067,
- "terminationGracePeriodSeconds": 1778358283914418699
+ "gRPC": {
+ "port": 413903479,
+ "service": "360"
+ },
+ "initialDelaySeconds": 1708236944,
+ "timeoutSeconds": -1192140557,
+ "periodSeconds": 1961354355,
+ "successThreshold": -1977635123,
+ "failureThreshold": 1660454722,
+ "terminationGracePeriodSeconds": -5657477284668711794
},
- "startupProbe": {
+ "readinessProbe": {
"exec": {
"command": [
- "359"
+ "361"
]
},
"httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "焬CQm坊柩",
+ "path": "362",
+ "port": 1993058773,
+ "host": "363",
+ "scheme": "糂腂ǂǚŜEu",
"httpHeaders": [
{
- "name": "363",
- "value": "364"
+ "name": "364",
+ "value": "365"
}
]
},
"tcpSocket": {
- "port": "365",
+ "port": -468215285,
"host": "366"
},
- "initialDelaySeconds": -135823101,
- "timeoutSeconds": -1345219897,
- "periodSeconds": 1141812777,
- "successThreshold": -1830926023,
- "failureThreshold": -320410537,
- "terminationGracePeriodSeconds": 8766190045617353809
+ "gRPC": {
+ "port": 571693619,
+ "service": "367"
+ },
+ "initialDelaySeconds": 1643238856,
+ "timeoutSeconds": -2028546276,
+ "periodSeconds": -2128305760,
+ "successThreshold": 1605974497,
+ "failureThreshold": 466207237,
+ "terminationGracePeriodSeconds": 6810468860514125748
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "368"
+ ]
+ },
+ "httpGet": {
+ "path": "369",
+ "port": "370",
+ "host": "371",
+ "scheme": "[ƕƑĝ®EĨǔvÄÚ",
+ "httpHeaders": [
+ {
+ "name": "372",
+ "value": "373"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": 1673785355,
+ "host": "374"
+ },
+ "gRPC": {
+ "port": 559999152,
+ "service": "375"
+ },
+ "initialDelaySeconds": -843639240,
+ "timeoutSeconds": 1573261475,
+ "periodSeconds": -1211577347,
+ "successThreshold": 1529027685,
+ "failureThreshold": -1612005385,
+ "terminationGracePeriodSeconds": -7329765383695934568
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "367"
+ "376"
]
},
"httpGet": {
- "path": "368",
- "port": "369",
- "host": "370",
- "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj",
+ "path": "377",
+ "port": "378",
+ "host": "379",
+ "scheme": "ɻ;襕ċ桉桃喕",
"httpHeaders": [
{
- "name": "371",
- "value": "372"
+ "name": "380",
+ "value": "381"
}
]
},
"tcpSocket": {
- "port": 1333166203,
- "host": "373"
+ "port": "382",
+ "host": "383"
}
},
"preStop": {
"exec": {
"command": [
- "374"
+ "384"
]
},
"httpGet": {
- "path": "375",
- "port": 758604605,
- "host": "376",
- "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑",
+ "path": "385",
+ "port": "386",
+ "host": "387",
+ "scheme": "漤ŗ坟",
"httpHeaders": [
{
- "name": "377",
- "value": "378"
+ "name": "388",
+ "value": "389"
}
]
},
"tcpSocket": {
- "port": "379",
- "host": "380"
+ "port": -1617422199,
+ "host": "390"
}
}
},
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "釼aTGÒ鵌",
- "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ",
+ "terminationMessagePath": "391",
+ "terminationMessagePolicy": "鯶縆",
+ "imagePullPolicy": "aTGÒ鵌Ē3",
"securityContext": {
"capabilities": {
"add": [
- "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á"
+ "×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶滿筇"
],
"drop": [
- "tl敷斢杧ż鯀"
+ "P:/a殆诵H玲鑠ĭ$#卛8ð仁Q"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "392",
+ "role": "393",
+ "type": "394",
+ "level": "395"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "396",
+ "gmsaCredentialSpec": "397",
+ "runAsUserName": "398",
+ "hostProcess": false
},
- "runAsUser": -3379825899840103887,
- "runAsGroup": -6950412587983829837,
- "runAsNonRoot": true,
+ "runAsUser": -4594605252165716214,
+ "runAsGroup": 8611382659007276093,
+ "runAsNonRoot": false,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰",
+ "allowPrivilegeEscalation": false,
+ "procMount": "sYȠ繽敮ǰ詀",
"seccompProfile": {
- "type": "咑耖p^鏋蛹Ƚȿ醏g",
- "localhostProfile": "389"
+ "type": "忀oɎƺL肄$鬬",
+ "localhostProfile": "399"
}
},
+ "stdin": true,
"tty": true,
- "targetContainerName": "390"
+ "targetContainerName": "400"
}
],
- "restartPolicy": "飂廤Ƌʙcx",
- "terminationGracePeriodSeconds": -4767735291842597991,
- "activeDeadlineSeconds": -7888525810745339742,
- "dnsPolicy": "h`職铳s44矕Ƈ",
+ "restartPolicy": "_敕",
+ "terminationGracePeriodSeconds": 7232696855417465611,
+ "activeDeadlineSeconds": -3924015511039305229,
+ "dnsPolicy": "穜姰l咑耖p^鏋蛹Ƚȿ",
"nodeSelector": {
- "391": "392"
+ "401": "402"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "403",
+ "serviceAccount": "404",
"automountServiceAccountToken": true,
- "nodeName": "395",
- "hostIPC": true,
- "shareProcessNamespace": true,
+ "nodeName": "405",
+ "hostNetwork": true,
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "406",
+ "role": "407",
+ "type": "408",
+ "level": "409"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
- "hostProcess": false
+ "gmsaCredentialSpecName": "410",
+ "gmsaCredentialSpec": "411",
+ "runAsUserName": "412",
+ "hostProcess": true
},
- "runAsUser": 5422399684456852309,
- "runAsGroup": -4636770370363077377,
- "runAsNonRoot": false,
+ "runAsUser": -8490059975047402203,
+ "runAsGroup": 6219097993402437076,
+ "runAsNonRoot": true,
"supplementalGroups": [
- -5728960352366086876
+ 4224635496843945227
],
- "fsGroup": 1712752437570220896,
+ "fsGroup": 73764735411458498,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "413",
+ "value": "414"
}
],
- "fsGroupChangePolicy": "",
+ "fsGroupChangePolicy": "劶?jĎĭ¥#ƱÁR»",
"seccompProfile": {
- "type": "#",
- "localhostProfile": "405"
+ "type": "揀.e鍃G昧牱fsǕT衩k",
+ "localhostProfile": "415"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "416"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "417",
+ "subdomain": "418",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1285,19 +1323,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3",
+ "key": "419",
+ "operator": "s梊ɥʋăƻ遲njlȘ鹾K",
"values": [
- "410"
+ "420"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿",
+ "key": "421",
+ "operator": "_h盌",
"values": [
- "412"
+ "422"
]
}
]
@@ -1306,23 +1344,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 687140791,
+ "weight": -1249187397,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "ļǹʅŚO虀",
+ "key": "423",
+ "operator": "9两@8Byß讪Ă2讅缔m葰賦迾娙ƴ4",
"values": [
- "414"
+ "424"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "key": "425",
+ "operator": "#ļǹʅŚO虀^背遻堣灭ƴɦ燻",
"values": [
- "416"
+ "426"
]
}
]
@@ -1335,30 +1373,30 @@
{
"labelSelector": {
"matchLabels": {
- "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7"
+ "7-3x-3/23_P": "d._.Um.-__k.5"
},
"matchExpressions": [
{
- "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o",
+ "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C",
"operator": "In",
"values": [
- "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7"
+ "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw"
]
}
]
},
"namespaces": [
- "423"
+ "433"
],
- "topologyKey": "424",
+ "topologyKey": "434",
"namespaceSelector": {
"matchLabels": {
- "4eq5": ""
+ "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM"
},
"matchExpressions": [
{
- "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z",
- "operator": "Exists"
+ "key": "8mtxb__-ex-_1_-ODgC_1-_8__3",
+ "operator": "DoesNotExist"
}
]
}
@@ -1366,37 +1404,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 888976270,
+ "weight": -555161071,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n"
+ "73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C": "r-v-3-BO"
},
"matchExpressions": [
{
- "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0",
- "operator": "In",
- "values": [
- "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ"
- ]
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "447"
],
- "topologyKey": "438",
+ "topologyKey": "448",
"namespaceSelector": {
"matchLabels": {
- "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V",
- "operator": "In",
- "values": [
- "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7"
- ]
+ "key": "RT.0zo",
+ "operator": "DoesNotExist"
}
]
}
@@ -1409,29 +1441,29 @@
{
"labelSelector": {
"matchLabels": {
- "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8",
- "operator": "Exists"
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "461"
],
- "topologyKey": "452",
+ "topologyKey": "462",
"namespaceSelector": {
"matchLabels": {
- "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "V._qN__A_f_-B3_U__L.KH6K.RwsfI2"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1440,34 +1472,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -1668452490,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "6W74-R_Z_Tz.a3_Ho",
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
"operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "475"
],
- "topologyKey": "466",
+ "topologyKey": "476",
"namespaceSelector": {
"matchLabels": {
- "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV",
- "operator": "In",
- "values": [
- "x3___-..f5-6x-_-o_6O_If-5_-_.F"
- ]
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1476,92 +1505,91 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "483",
"tolerations": [
{
- "key": "474",
- "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
- "value": "475",
- "effect": "慰x:",
- "tolerationSeconds": 3362400521064014157
+ "key": "484",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "485",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "486",
"hostnames": [
- "477"
+ "487"
]
}
],
- "priorityClassName": "478",
- "priority": 743241089,
+ "priorityClassName": "488",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "489"
],
"searches": [
- "480"
+ "490"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "491",
+ "value": "492"
}
]
},
"readinessGates": [
{
- "conditionType": "0yVA嬂刲;牆詒ĸąs"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "493",
"enableServiceLinks": false,
- "preemptionPolicy": "Iƭij韺ʧ\u003e",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D傕Ɠ栊闔虝巒瀦ŕ": "124"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -174245111,
- "topologyKey": "484",
- "whenUnsatisfiable": "",
+ "maxSkew": 1486667065,
+ "topologyKey": "494",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
- "operator": "In",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
+ "operator": "NotIn",
"values": [
- "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
+ "H1z..j_.r3--T"
]
}
]
}
}
],
- "setHostnameAsFQDN": true,
+ "setHostnameAsFQDN": false,
"os": {
- "name": "+\u0026ɃB沅零șPî壣"
+ "name": "Ê"
}
}
}
},
"status": {
- "replicas": 157451826,
- "fullyLabeledReplicas": -1872689134,
- "readyReplicas": 1791185938,
- "availableReplicas": 1559072561,
- "observedGeneration": 5029735218517286947,
+ "replicas": 1710495724,
+ "fullyLabeledReplicas": 895180747,
+ "readyReplicas": 1856897421,
+ "availableReplicas": -900119103,
+ "observedGeneration": -2756902756708364909,
"conditions": [
{
- "type": "Y圻醆锛[M牍Ƃ氙吐ɝ鶼",
- "status": "ŭ瘢颦z疵悡nȩ純z邜",
- "lastTransitionTime": "2124-10-20T09:17:54Z",
- "reason": "491",
- "message": "492"
+ "type": "庺%#囨q砅ƎXÄdƦ;ƣŽ氮怉",
+ "status": "ȩ硘(ǒ[",
+ "lastTransitionTime": "2209-10-18T22:10:43Z",
+ "reason": "501",
+ "message": "502"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb
index e86bafced65..4dc991310fd 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml
index dcc2e2a011a..b08e7abae6f 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml
@@ -73,492 +73,507 @@ spec:
selfLink: "29"
uid: ʬ
spec:
- activeDeadlineSeconds: -7888525810745339742
+ activeDeadlineSeconds: -3924015511039305229
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: ļǹʅŚO虀
+ - key: "423"
+ operator: 9两@8Byß讪Ă2讅缔m葰賦迾娙ƴ4
values:
- - "414"
+ - "424"
matchFields:
- - key: "415"
- operator: ɴĶ烷Ľthp像-觗裓6Ř
+ - key: "425"
+ operator: '#ļǹʅŚO虀^背遻堣灭ƴɦ燻'
values:
- - "416"
- weight: 687140791
+ - "426"
+ weight: -1249187397
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3
+ - key: "419"
+ operator: s梊ɥʋăƻ遲njlȘ鹾K
values:
- - "410"
+ - "420"
matchFields:
- - key: "411"
- operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿'
+ - key: "421"
+ operator: _h盌
values:
- - "412"
+ - "422"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
- operator: In
- values:
- - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L
+ operator: Exists
matchLabels:
- z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
+ 73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C: r-v-3-BO
namespaceSelector:
matchExpressions:
- - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
- operator: In
- values:
- - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
+ - key: RT.0zo
+ operator: DoesNotExist
matchLabels:
- vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: 888976270
+ - "447"
+ topologyKey: "448"
+ weight: -555161071
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o
+ - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C
operator: In
values:
- - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
+ - p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw
matchLabels:
- "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7
+ 7-3x-3/23_P: d._.Um.-__k.5
namespaceSelector:
matchExpressions:
- - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- operator: Exists
+ - key: 8mtxb__-ex-_1_-ODgC_1-_8__3
+ operator: DoesNotExist
matchLabels:
- 4eq5: ""
+ 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM
namespaces:
- - "423"
- topologyKey: "424"
+ - "433"
+ topologyKey: "434"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 6W74-R_Z_Tz.a3_Ho
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
operator: Exists
matchLabels:
- n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
- operator: In
- values:
- - x3___-..f5-6x-_-o_6O_If-5_-_.F
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: -1668452490
+ - "475"
+ topologyKey: "476"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
- operator: Exists
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - V._qN__A_f_-B3_U__L.KH6K.RwsfI2
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "461"
+ topologyKey: "462"
automountServiceAccountToken: true
containers:
- args:
- - "254"
+ - "257"
command:
- - "253"
+ - "256"
env:
- - name: "261"
- value: "262"
+ - name: "264"
+ value: "265"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
- optional: true
- fieldRef:
- apiVersion: "263"
- fieldPath: "264"
- resourceFieldRef:
- containerName: "265"
- divisor: "894"
- resource: "266"
- secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
+ fieldRef:
+ apiVersion: "266"
+ fieldPath: "267"
+ resourceFieldRef:
+ containerName: "268"
+ divisor: "801"
+ resource: "269"
+ secretKeyRef:
+ key: "273"
+ name: "272"
+ optional: true
envFrom:
- configMapRef:
- name: "259"
- optional: true
- prefix: "258"
+ name: "262"
+ optional: false
+ prefix: "261"
secretRef:
- name: "260"
- optional: true
- image: "252"
- imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮
+ name: "263"
+ optional: false
+ image: "255"
+ imagePullPolicy: 騎C"6x$1sȣ±p鋄
lifecycle:
postStart:
exec:
command:
- - "297"
- httpGet:
- host: "300"
- httpHeaders:
- - name: "301"
- value: "302"
- path: "298"
- port: "299"
- scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ
- tcpSocket:
- host: "303"
- port: 802134138
- preStop:
- exec:
- command:
- - "304"
+ - "303"
httpGet:
host: "306"
httpHeaders:
- name: "307"
value: "308"
- path: "305"
- port: -126958936
- scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻
+ path: "304"
+ port: "305"
tcpSocket:
- host: "310"
- port: "309"
+ host: "309"
+ port: 323903711
+ preStop:
+ exec:
+ command:
+ - "310"
+ httpGet:
+ host: "313"
+ httpHeaders:
+ - name: "314"
+ value: "315"
+ path: "311"
+ port: "312"
+ scheme: 丆
+ tcpSocket:
+ host: "317"
+ port: "316"
livenessProbe:
exec:
command:
- - "277"
- failureThreshold: 348370746
+ - "280"
+ failureThreshold: 1993268896
+ gRPC:
+ port: 1315054653
+ service: "287"
httpGet:
- host: "279"
+ host: "283"
httpHeaders:
- - name: "280"
- value: "281"
- path: "278"
- port: -1471289102
- scheme: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳
- initialDelaySeconds: -1421951296
- periodSeconds: -1244119841
- successThreshold: 1235694147
+ - name: "284"
+ value: "285"
+ path: "281"
+ port: "282"
+ scheme: 澝qV訆Ǝżŧ
+ initialDelaySeconds: 711020087
+ periodSeconds: -1965247100
+ successThreshold: 218453478
tcpSocket:
- host: "282"
- port: 113873869
- terminationGracePeriodSeconds: 2011630253582325853
- timeoutSeconds: 878005329
- name: "251"
+ host: "286"
+ port: 204229950
+ terminationGracePeriodSeconds: -9140155223242250138
+ timeoutSeconds: 1103049140
+ name: "254"
ports:
- - containerPort: -1418092595
- hostIP: "257"
- hostPort: 1381579966
- name: "256"
- protocol: 闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x
+ - containerPort: -438588982
+ hostIP: "260"
+ hostPort: -1532958330
+ name: "259"
+ protocol: 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥
readinessProbe:
exec:
command:
- - "283"
- failureThreshold: 1156888068
+ - "288"
+ failureThreshold: 472742933
+ gRPC:
+ port: 972193458
+ service: "295"
httpGet:
- host: "285"
+ host: "290"
httpHeaders:
- - name: "286"
- value: "287"
- path: "284"
- port: 1907998540
- scheme: ',ŕ'
- initialDelaySeconds: -253326525
- periodSeconds: 887319241
- successThreshold: 1559618829
+ - name: "291"
+ value: "292"
+ path: "289"
+ port: -1315487077
+ scheme: ğ_
+ initialDelaySeconds: 1290950685
+ periodSeconds: 1058960779
+ successThreshold: -2133441986
tcpSocket:
- host: "289"
- port: "288"
- terminationGracePeriodSeconds: -5566612115749133989
- timeoutSeconds: 567263590
+ host: "294"
+ port: "293"
+ terminationGracePeriodSeconds: 217739466937954194
+ timeoutSeconds: 12533543
resources:
limits:
- W<敄lu|榝$î.Ȏ: "546"
+ 队偯J僳徥淳4揻: "175"
requests:
- 剒蔞|表: "379"
+ "": "170"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- - 嘢4ʗN,丽饾| 鞤ɱďW賁
+ - ȹ均i绝5哇芆斩ìh4Ɋ
drop:
- - ɭɪǹ0衷,
- privileged: true
- procMount: w妕眵笭/9崍h趭(娕
- readOnlyRootFilesystem: true
- runAsGroup: -7146044409185304665
+ - Ȗ|ʐşƧ諔迮ƙIJ嘢4
+ privileged: false
+ procMount: W賁Ěɭɪǹ0
+ readOnlyRootFilesystem: false
+ runAsGroup: -5712715102324619404
runAsNonRoot: false
- runAsUser: -1119183212148951030
+ runAsUser: -7936947433725476327
seLinuxOptions:
- level: "315"
- role: "313"
- type: "314"
- user: "312"
+ level: "322"
+ role: "320"
+ type: "321"
+ user: "319"
seccompProfile:
- localhostProfile: "319"
- type: E增猍
+ localhostProfile: "326"
+ type: ',ƷƣMț譎懚XW疪鑳'
windowsOptions:
- gmsaCredentialSpec: "317"
- gmsaCredentialSpecName: "316"
- hostProcess: true
- runAsUserName: "318"
+ gmsaCredentialSpec: "324"
+ gmsaCredentialSpecName: "323"
+ hostProcess: false
+ runAsUserName: "325"
startupProbe:
exec:
command:
- - "290"
- failureThreshold: 422133388
+ - "296"
+ failureThreshold: -1513284745
+ gRPC:
+ port: 311083651
+ service: "302"
httpGet:
- host: "292"
+ host: "298"
httpHeaders:
- - name: "293"
- value: "294"
- path: "291"
- port: 1315054653
- scheme: 蚃ɣľ)酊龨δ摖ȱ
- initialDelaySeconds: 1905181464
- periodSeconds: 1272940694
- successThreshold: -385597677
+ - name: "299"
+ value: "300"
+ path: "297"
+ port: 1401790459
+ scheme: ǵɐ鰥Z
+ initialDelaySeconds: 353361793
+ periodSeconds: -708413798
+ successThreshold: -898536659
tcpSocket:
- host: "296"
- port: "295"
- terminationGracePeriodSeconds: 8385745044578923915
- timeoutSeconds: -1730959016
- terminationMessagePath: "311"
- terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS
+ host: "301"
+ port: -1103045151
+ terminationGracePeriodSeconds: 5404658974498114041
+ timeoutSeconds: -2081447068
+ stdin: true
+ stdinOnce: true
+ terminationMessagePath: "318"
+ terminationMessagePolicy: Ŏ)/灩聋3趐囨鏻砅邻
+ tty: true
volumeDevices:
- - devicePath: "276"
- name: "275"
+ - devicePath: "279"
+ name: "278"
volumeMounts:
- - mountPath: "272"
- mountPropagation: 朦 wƯ貾坢'跩
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
+ - mountPath: "275"
+ mountPropagation: ×x锏ɟ4Ǒ
+ name: "274"
+ subPath: "276"
+ subPathExpr: "277"
+ workingDir: "258"
dnsConfig:
nameservers:
- - "479"
+ - "489"
options:
- - name: "481"
- value: "482"
+ - name: "491"
+ value: "492"
searches:
- - "480"
- dnsPolicy: h`職铳s44矕Ƈ
+ - "490"
+ dnsPolicy: 穜姰l咑耖p^鏋蛹Ƚȿ
enableServiceLinks: false
ephemeralContainers:
- args:
- - "323"
+ - "330"
command:
- - "322"
+ - "329"
env:
- - name: "330"
- value: "331"
+ - name: "337"
+ value: "338"
valueFrom:
configMapKeyRef:
- key: "337"
- name: "336"
+ key: "344"
+ name: "343"
optional: false
fieldRef:
- apiVersion: "332"
- fieldPath: "333"
+ apiVersion: "339"
+ fieldPath: "340"
resourceFieldRef:
- containerName: "334"
- divisor: "179"
- resource: "335"
+ containerName: "341"
+ divisor: "360"
+ resource: "342"
secretKeyRef:
- key: "339"
- name: "338"
+ key: "346"
+ name: "345"
optional: false
envFrom:
- configMapRef:
- name: "328"
- optional: true
- prefix: "327"
+ name: "335"
+ optional: false
+ prefix: "334"
secretRef:
- name: "329"
- optional: true
- image: "321"
- imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
+ name: "336"
+ optional: false
+ image: "328"
+ imagePullPolicy: aTGÒ鵌Ē3
lifecycle:
postStart:
exec:
command:
- - "367"
+ - "376"
httpGet:
- host: "370"
+ host: "379"
httpHeaders:
- - name: "371"
- value: "372"
- path: "368"
- port: "369"
- scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj'
+ - name: "380"
+ value: "381"
+ path: "377"
+ port: "378"
+ scheme: ɻ;襕ċ桉桃喕
tcpSocket:
- host: "373"
- port: 1333166203
+ host: "383"
+ port: "382"
preStop:
exec:
command:
- - "374"
+ - "384"
httpGet:
- host: "376"
+ host: "387"
httpHeaders:
- - name: "377"
- value: "378"
- path: "375"
- port: 758604605
- scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑
+ - name: "388"
+ value: "389"
+ path: "385"
+ port: "386"
+ scheme: 漤ŗ坟
tcpSocket:
- host: "380"
- port: "379"
+ host: "390"
+ port: -1617422199
livenessProbe:
- exec:
- command:
- - "346"
- failureThreshold: -313085430
- httpGet:
- host: "348"
- httpHeaders:
- - name: "349"
- value: "350"
- path: "347"
- port: -684167223
- scheme: 1b
- initialDelaySeconds: -47594442
- periodSeconds: 725624946
- successThreshold: -34803208
- tcpSocket:
- host: "352"
- port: "351"
- terminationGracePeriodSeconds: -7686796864837350582
- timeoutSeconds: -2064284357
- name: "320"
- ports:
- - containerPort: -1320027474
- hostIP: "326"
- hostPort: 601942575
- name: "325"
- protocol: Ƶf
- readinessProbe:
exec:
command:
- "353"
- failureThreshold: -1844150067
+ failureThreshold: 1660454722
+ gRPC:
+ port: 413903479
+ service: "360"
httpGet:
host: "355"
httpHeaders:
- name: "356"
value: "357"
path: "354"
- port: 1611386356
- scheme: ɼ搳ǭ濑箨ʨIk(
- initialDelaySeconds: 1984241264
- periodSeconds: -487434422
- successThreshold: -370404018
+ port: -1842062977
+ scheme: 輔3璾ėȜv1b繐汚磉反-n覦
+ initialDelaySeconds: 1708236944
+ periodSeconds: 1961354355
+ successThreshold: -1977635123
tcpSocket:
- host: "358"
- port: 2115799218
- terminationGracePeriodSeconds: 1778358283914418699
- timeoutSeconds: -758033170
+ host: "359"
+ port: "358"
+ terminationGracePeriodSeconds: -5657477284668711794
+ timeoutSeconds: -1192140557
+ name: "327"
+ ports:
+ - containerPort: 455919108
+ hostIP: "333"
+ hostPort: 217308913
+ name: "332"
+ protocol: 崍h趭(娕u
+ readinessProbe:
+ exec:
+ command:
+ - "361"
+ failureThreshold: 466207237
+ gRPC:
+ port: 571693619
+ service: "367"
+ httpGet:
+ host: "363"
+ httpHeaders:
+ - name: "364"
+ value: "365"
+ path: "362"
+ port: 1993058773
+ scheme: 糂腂ǂǚŜEu
+ initialDelaySeconds: 1643238856
+ periodSeconds: -2128305760
+ successThreshold: 1605974497
+ tcpSocket:
+ host: "366"
+ port: -468215285
+ terminationGracePeriodSeconds: 6810468860514125748
+ timeoutSeconds: -2028546276
resources:
limits:
- 阎l: "464"
+ fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
requests:
- '''佉': "633"
+ 蕎': "62"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á
+ - ×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶滿筇
drop:
- - tl敷斢杧ż鯀
+ - P:/a殆诵H玲鑠ĭ$#卛8ð仁Q
privileged: true
- procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰
+ procMount: sYȠ繽敮ǰ詀
readOnlyRootFilesystem: false
- runAsGroup: -6950412587983829837
- runAsNonRoot: true
- runAsUser: -3379825899840103887
+ runAsGroup: 8611382659007276093
+ runAsNonRoot: false
+ runAsUser: -4594605252165716214
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "395"
+ role: "393"
+ type: "394"
+ user: "392"
seccompProfile:
- localhostProfile: "389"
- type: 咑耖p^鏋蛹Ƚȿ醏g
+ localhostProfile: "399"
+ type: 忀oɎƺL肄$鬬
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "397"
+ gmsaCredentialSpecName: "396"
+ hostProcess: false
+ runAsUserName: "398"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: -320410537
+ - "368"
+ failureThreshold: -1612005385
+ gRPC:
+ port: 559999152
+ service: "375"
httpGet:
- host: "362"
+ host: "371"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: 焬CQm坊柩
- initialDelaySeconds: -135823101
- periodSeconds: 1141812777
- successThreshold: -1830926023
+ - name: "372"
+ value: "373"
+ path: "369"
+ port: "370"
+ scheme: '[ƕƑĝ®EĨǔvÄÚ'
+ initialDelaySeconds: -843639240
+ periodSeconds: -1211577347
+ successThreshold: 1529027685
tcpSocket:
- host: "366"
- port: "365"
- terminationGracePeriodSeconds: 8766190045617353809
- timeoutSeconds: -1345219897
- targetContainerName: "390"
- terminationMessagePath: "381"
- terminationMessagePolicy: 釼aTGÒ鵌
+ host: "374"
+ port: 1673785355
+ terminationGracePeriodSeconds: -7329765383695934568
+ timeoutSeconds: 1573261475
+ stdin: true
+ targetContainerName: "400"
+ terminationMessagePath: "391"
+ terminationMessagePolicy: 鯶縆
tty: true
volumeDevices:
- - devicePath: "345"
- name: "344"
+ - devicePath: "352"
+ name: "351"
volumeMounts:
- - mountPath: "341"
- mountPropagation: (ť1ùfŭƽ
- name: "340"
- subPath: "342"
- subPathExpr: "343"
- workingDir: "324"
+ - mountPath: "348"
+ mountPropagation: Ǚ(
+ name: "347"
+ readOnly: true
+ subPath: "349"
+ subPathExpr: "350"
+ workingDir: "331"
hostAliases:
- hostnames:
- - "477"
- ip: "476"
- hostIPC: true
- hostname: "407"
+ - "487"
+ ip: "486"
+ hostNetwork: true
+ hostname: "417"
imagePullSecrets:
- - name: "406"
+ - name: "416"
initContainers:
- args:
- "184"
@@ -592,43 +607,46 @@ spec:
name: "190"
optional: true
image: "182"
- imagePullPolicy: ʎȺ眖R#
+ imagePullPolicy: 跦Opwǩ曬逴褜1
lifecycle:
postStart:
exec:
command:
- - "228"
+ - "231"
httpGet:
- host: "230"
- httpHeaders:
- - name: "231"
- value: "232"
- path: "229"
- port: -1196874390
- scheme: S晒嶗UÐ_ƮA攤
- tcpSocket:
host: "233"
- port: -498930176
+ httpHeaders:
+ - name: "234"
+ value: "235"
+ path: "232"
+ port: 1883209805
+ scheme: ɓȌʟni酛3ƁÀ*
+ tcpSocket:
+ host: "237"
+ port: "236"
preStop:
exec:
command:
- - "234"
+ - "238"
httpGet:
- host: "237"
- httpHeaders:
- - name: "238"
- value: "239"
- path: "235"
- port: "236"
- scheme: 鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡
- tcpSocket:
host: "241"
+ httpHeaders:
+ - name: "242"
+ value: "243"
+ path: "239"
port: "240"
+ scheme: fBls3!Zɾģ毋Ó6
+ tcpSocket:
+ host: "244"
+ port: -832805508
livenessProbe:
exec:
command:
- "207"
- failureThreshold: 1684643131
+ failureThreshold: 1599076900
+ gRPC:
+ port: 1507815593
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -637,14 +655,14 @@ spec:
path: "208"
port: 1214895765
scheme: 悖ȩ0Ƹ[Ęİ榌U
- initialDelaySeconds: -442393168
- periodSeconds: 1109079597
- successThreshold: -646728130
+ initialDelaySeconds: 1498833271
+ periodSeconds: 1447898632
+ successThreshold: 1602745893
tcpSocket:
host: "212"
port: -187060941
- terminationGracePeriodSeconds: 5055443896475056676
- timeoutSeconds: -307373517
+ terminationGracePeriodSeconds: -8249176398367452506
+ timeoutSeconds: 1505082076
name: "181"
ports:
- containerPort: 859639931
@@ -655,80 +673,85 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: -503805926
+ - "214"
+ failureThreshold: 10098903
+ gRPC:
+ port: 1182477686
+ service: "221"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 惇¸t颟.鵫ǚ灄鸫rʤî萨
- initialDelaySeconds: 1885896895
- periodSeconds: -1682044542
- successThreshold: 1182477686
+ path: "215"
+ port: 963670270
+ scheme: ɘȌ脾嚏吐ĠLƐȤ藠3.v
+ initialDelaySeconds: -503805926
+ periodSeconds: -763687725
+ successThreshold: -246563990
tcpSocket:
host: "220"
port: "219"
- terminationGracePeriodSeconds: 332054723335023688
- timeoutSeconds: -1232888129
+ terminationGracePeriodSeconds: 4704090421576984895
+ timeoutSeconds: 77312514
resources:
limits:
ſ盷: "532"
requests:
'[Řż丩': "47"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
+ - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]
drop:
- - ""
+ - ¿>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩ
privileged: true
- procMount: '>郵[+扴ȨŮ'
+ procMount: ' 苧yñKJɐ'
readOnlyRootFilesystem: false
- runAsGroup: 7694930383795602762
+ runAsGroup: 3811348330690808371
runAsNonRoot: true
- runAsUser: -2529737859863639391
+ runAsUser: 2185575187737222181
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "249"
+ role: "247"
+ type: "248"
+ user: "246"
seccompProfile:
- localhostProfile: "250"
- type: 朷Ǝ膯ljVX1虊谇
+ localhostProfile: "253"
+ type: Gƚ绤fʀļ腩墺Ò媁荭gw
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
+ gmsaCredentialSpec: "251"
+ gmsaCredentialSpecName: "250"
hostProcess: false
- runAsUserName: "249"
+ runAsUserName: "252"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: 59664438
+ - "222"
+ failureThreshold: 1479266199
+ gRPC:
+ port: 593802074
+ service: "230"
httpGet:
- host: "224"
+ host: "225"
httpHeaders:
- - name: "225"
- value: "226"
- path: "222"
- port: "223"
- scheme: «丯Ƙ枛牐ɺ皚
- initialDelaySeconds: 766864314
- periodSeconds: 1495880465
- successThreshold: -1032967081
+ - name: "226"
+ value: "227"
+ path: "223"
+ port: "224"
+ scheme: 牐ɺ皚|懥
+ initialDelaySeconds: 538852927
+ periodSeconds: 902535764
+ successThreshold: 716842280
tcpSocket:
- host: "227"
- port: -1934111455
- terminationGracePeriodSeconds: 4116652091516790056
- timeoutSeconds: 1146016612
- stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: ?$矡ȶ网棊ʢ
- tty: true
+ host: "229"
+ port: "228"
+ terminationGracePeriodSeconds: 702282827459446622
+ timeoutSeconds: -407545915
+ stdinOnce: true
+ terminationMessagePath: "245"
+ terminationMessagePolicy: 庎D}埽uʎȺ眖R#yV'WKw(ğ儴
volumeDevices:
- devicePath: "206"
name: "205"
@@ -739,69 +762,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "405"
nodeSelector:
- "391": "392"
+ "401": "402"
os:
- name: +&ɃB沅零șPî壣
+ name: Ê
overhead:
- D傕Ɠ栊闔虝巒瀦ŕ: "124"
- preemptionPolicy: Iƭij韺ʧ>
- priority: 743241089
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "488"
readinessGates:
- - conditionType: 0yVA嬂刲;牆詒ĸąs
- restartPolicy: 飂廤Ƌʙcx
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: _敕
+ runtimeClassName: "493"
+ schedulerName: "483"
securityContext:
- fsGroup: 1712752437570220896
- fsGroupChangePolicy: ""
- runAsGroup: -4636770370363077377
- runAsNonRoot: false
- runAsUser: 5422399684456852309
+ fsGroup: 73764735411458498
+ fsGroupChangePolicy: 劶?jĎĭ¥#ƱÁR»
+ runAsGroup: 6219097993402437076
+ runAsNonRoot: true
+ runAsUser: -8490059975047402203
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "409"
+ role: "407"
+ type: "408"
+ user: "406"
seccompProfile:
- localhostProfile: "405"
- type: '#'
+ localhostProfile: "415"
+ type: 揀.e鍃G昧牱fsǕT衩k
supplementalGroups:
- - -5728960352366086876
+ - 4224635496843945227
sysctls:
- - name: "403"
- value: "404"
+ - name: "413"
+ value: "414"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
- hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
- setHostnameAsFQDN: true
- shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -4767735291842597991
+ gmsaCredentialSpec: "411"
+ gmsaCredentialSpecName: "410"
+ hostProcess: true
+ runAsUserName: "412"
+ serviceAccount: "404"
+ serviceAccountName: "403"
+ setHostnameAsFQDN: false
+ shareProcessNamespace: false
+ subdomain: "418"
+ terminationGracePeriodSeconds: 7232696855417465611
tolerations:
- - effect: '慰x:'
- key: "474"
- operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
- tolerationSeconds: 3362400521064014157
- value: "475"
+ - key: "484"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "485"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- operator: In
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
+ operator: NotIn
values:
- - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
+ - H1z..j_.r3--T
matchLabels:
- 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
- maxSkew: -174245111
- topologyKey: "484"
- whenUnsatisfiable: ""
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "494"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1057,14 +1079,14 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 1559072561
+ availableReplicas: -900119103
conditions:
- - lastTransitionTime: "2124-10-20T09:17:54Z"
- message: "492"
- reason: "491"
- status: ŭ瘢颦z疵悡nȩ純z邜
- type: Y圻醆锛[M牍Ƃ氙吐ɝ鶼
- fullyLabeledReplicas: -1872689134
- observedGeneration: 5029735218517286947
- readyReplicas: 1791185938
- replicas: 157451826
+ - lastTransitionTime: "2209-10-18T22:10:43Z"
+ message: "502"
+ reason: "501"
+ status: ȩ硘(ǒ[
+ type: 庺%#囨q砅ƎXÄdƦ;ƣŽ氮怉
+ fullyLabeledReplicas: 895180747
+ observedGeneration: -2756902756708364909
+ readyReplicas: 1856897421
+ replicas: 1710495724
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json
index 9f90d0d5cf5..f75e26c5f45 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,146 +1573,146 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"volumeClaimTemplates": [
{
"metadata": {
- "name": "491",
- "generateName": "492",
- "namespace": "493",
- "selfLink": "494",
- "uid": "`",
- "resourceVersion": "5863709333089187294",
- "generation": 6477367096865964611,
- "creationTimestamp": "2097-02-11T08:53:04Z",
- "deletionGracePeriodSeconds": 5497143372256332223,
+ "name": "503",
+ "generateName": "504",
+ "namespace": "505",
+ "selfLink": "506",
+ "uid": "µʍ^鼑",
+ "resourceVersion": "12522354568905793793",
+ "generation": -7492163414721477183,
+ "creationTimestamp": "2091-04-29T08:40:13Z",
+ "deletionGracePeriodSeconds": -790340248384719952,
"labels": {
- "496": "497"
+ "508": "509"
},
"annotations": {
- "498": "499"
+ "510": "511"
},
"ownerReferences": [
{
- "apiVersion": "500",
- "kind": "501",
- "name": "502",
- "uid": "Z穑S13t",
- "controller": false,
- "blockOwnerDeletion": true
+ "apiVersion": "512",
+ "kind": "513",
+ "name": "514",
+ "uid": "#囨q",
+ "controller": true,
+ "blockOwnerDeletion": false
}
],
"finalizers": [
- "503"
+ "515"
],
- "clusterName": "504",
+ "clusterName": "516",
"managedFields": [
{
- "manager": "505",
- "operation": "董缞濪葷cŲNª",
- "apiVersion": "506",
- "fieldsType": "507",
- "subresource": "508"
+ "manager": "517",
+ "operation": "ÄdƦ;ƣŽ氮怉ƥ;\"薑Ȣ#闬輙怀¹",
+ "apiVersion": "518",
+ "fieldsType": "519",
+ "subresource": "520"
}
]
},
"spec": {
"accessModes": [
- "豘ñ澀j劎笜釼鮭Ɯ镶Eq荣¿S5Tƙ"
+ "觇ƒ幦ų勏Y9=ȳB鼲糰E"
],
"selector": {
"matchLabels": {
- "N_l..-_.1-j---30q.-2_9.9-..-JA-H-5": "8_--4.__z2-.T2I"
+ "655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---49t7.28-d-e10-f-o-fr5/Y__03_6.K8l.YlG0.87B1": "z23.Ya-C3-._-l__S"
},
"matchExpressions": [
{
- "key": "7--4a06y7-dt--5--8-69vc31o-865227qok-3-v8e7wfk4ek.hi93f---z-4-q24gt/Mw.___-_-mv9h.-7.s__-_g6_-_No",
+ "key": "019_-gYY.3",
"operator": "In",
"values": [
- "D.9-F_A-t0-o.7_a-t.-d6h__._-.Z-Q.1-B.__--wr_-Iu9._.UT-o"
+ "F-__q6Q_--a_-_zzQ"
]
}
]
},
"resources": {
"limits": {
- "xġ疾ɇù扻喥|{軈ĕʦ竳÷ 骵蓧": "587"
+ "莥N": "597"
},
"requests": {
- "": "856"
+ "_Gȱ恛穒挤ţ#你顫#b°": "796"
}
},
- "volumeName": "515",
- "storageClassName": "516",
- "volumeMode": "涼ĥ訛\\`ĝňYuĞyÜ蛃慕ʓvâ",
+ "volumeName": "527",
+ "storageClassName": "528",
+ "volumeMode": "wŲ魦Ɔ0ƢĮÀĘÆɆ",
"dataSource": {
- "apiGroup": "517",
- "kind": "518",
- "name": "519"
+ "apiGroup": "529",
+ "kind": "530",
+ "name": "531"
},
"dataSourceRef": {
- "apiGroup": "520",
- "kind": "521",
- "name": "522"
+ "apiGroup": "532",
+ "kind": "533",
+ "name": "534"
}
},
"status": {
- "phase": "忣àÂƺ琰Ȃ芋醳鮩!廊臚cɶċ",
+ "phase": "ñƍU烈 źfjǰɪ嘞",
"accessModes": [
- "v}鮩澊聝楧"
+ "}杻扞Ğuƈ?犻盪ǵĿř岈"
],
"capacity": {
- "问Ð7ɞŶJŖ)j{驟ʦcȃ": "657"
+ "Ǐ]S5:œƌ嵃ǁǞŢ": "247"
},
"conditions": [
{
- "type": "ņȎZȐ樾'Ż£劾ů",
- "status": "Q¢鬣_棈Ý泷",
- "lastProbeTime": "2156-05-28T07:29:36Z",
- "lastTransitionTime": "2066-08-08T11:27:30Z",
- "reason": "523",
- "message": "524"
+ "type": "爪$R",
+ "status": "z¦",
+ "lastProbeTime": "2219-08-25T11:44:30Z",
+ "lastTransitionTime": "2211-02-15T05:10:41Z",
+ "reason": "535",
+ "message": "536"
}
],
"allocatedResources": {
- "鐳VDɝ": "844"
+ "ĐȌƨǴ叆ĄD輷東t½ǩ £tMǍ}": "968"
},
- "resizeStatus": "但Ǭľa执mÎDƃ"
+ "resizeStatus": "ʨɺC`牯"
}
}
],
- "serviceName": "525",
- "podManagementPolicy": "ƌ妜;)t罎j´A",
+ "serviceName": "537",
+ "podManagementPolicy": "Ȍ%ÿ¼璤ňɈ",
"updateStrategy": {
- "type": "徙蔿Yċʤw俣Ǫ",
+ "type": "銜Ʌ0斃搡Cʼn嘡",
"rollingUpdate": {
- "partition": 2000146968
+ "partition": 79841
}
},
- "revisionHistoryLimit": 560461224,
- "minReadySeconds": 2059121580
+ "revisionHistoryLimit": -1166275743,
+ "minReadySeconds": -1056262432
},
"status": {
- "observedGeneration": -632886252136267545,
- "replicas": 750655684,
- "readyReplicas": -1012893423,
- "currentReplicas": -1295777734,
- "updatedReplicas": -1394190312,
- "currentRevision": "526",
- "updateRevision": "527",
- "collisionCount": 1077247354,
+ "observedGeneration": -3770279213092072518,
+ "replicas": -1669166259,
+ "readyReplicas": -175399547,
+ "currentReplicas": 223338274,
+ "updatedReplicas": -1279136912,
+ "currentRevision": "538",
+ "updateRevision": "539",
+ "collisionCount": 1222237461,
"conditions": [
{
- "type": "堏ȑ湸睑L暱ʖ妾崗",
- "status": "ij敪賻yʗHiv\u003c",
- "lastTransitionTime": "2814-04-22T10:44:02Z",
- "reason": "528",
- "message": "529"
+ "type": "壣V礆á¤拈tY",
+ "status": "飼蒱鄆\u0026嬜Š\u0026?鳢.ǀŭ瘢颦z",
+ "lastTransitionTime": "2368-07-30T22:05:09Z",
+ "reason": "540",
+ "message": "541"
}
],
- "availableReplicas": 747018016
+ "availableReplicas": -1174483980
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb
index 938f6747e77..19eb00c3aa3 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml
index 9f6221d32ea..112958fa35f 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml
@@ -31,17 +31,17 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: 2059121580
- podManagementPolicy: ƌ妜;)t罎j´A
+ minReadySeconds: -1056262432
+ podManagementPolicy: Ȍ%ÿ¼璤ňɈ
replicas: 896585016
- revisionHistoryLimit: 560461224
+ revisionHistoryLimit: -1166275743
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
operator: Exists
matchLabels:
74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1
- serviceName: "525"
+ serviceName: "537"
template:
metadata:
annotations:
@@ -74,490 +74,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -635,14 +657,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -653,24 +675,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -680,52 +705,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -737,69 +765,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1060,95 +1087,95 @@ spec:
volumePath: "103"
updateStrategy:
rollingUpdate:
- partition: 2000146968
- type: 徙蔿Yċʤw俣Ǫ
+ partition: 79841
+ type: 銜Ʌ0斃搡Cʼn嘡
volumeClaimTemplates:
- metadata:
annotations:
- "498": "499"
- clusterName: "504"
- creationTimestamp: "2097-02-11T08:53:04Z"
- deletionGracePeriodSeconds: 5497143372256332223
+ "510": "511"
+ clusterName: "516"
+ creationTimestamp: "2091-04-29T08:40:13Z"
+ deletionGracePeriodSeconds: -790340248384719952
finalizers:
- - "503"
- generateName: "492"
- generation: 6477367096865964611
+ - "515"
+ generateName: "504"
+ generation: -7492163414721477183
labels:
- "496": "497"
+ "508": "509"
managedFields:
- - apiVersion: "506"
- fieldsType: "507"
- manager: "505"
- operation: 董缞濪葷cŲNª
- subresource: "508"
- name: "491"
- namespace: "493"
+ - apiVersion: "518"
+ fieldsType: "519"
+ manager: "517"
+ operation: ÄdƦ;ƣŽ氮怉ƥ;"薑Ȣ#闬輙怀¹
+ subresource: "520"
+ name: "503"
+ namespace: "505"
ownerReferences:
- - apiVersion: "500"
- blockOwnerDeletion: true
- controller: false
- kind: "501"
- name: "502"
- uid: Z穑S13t
- resourceVersion: "5863709333089187294"
- selfLink: "494"
- uid: '`'
+ - apiVersion: "512"
+ blockOwnerDeletion: false
+ controller: true
+ kind: "513"
+ name: "514"
+ uid: '#囨q'
+ resourceVersion: "12522354568905793793"
+ selfLink: "506"
+ uid: µʍ^鼑
spec:
accessModes:
- - 豘ñ澀j劎笜釼鮭Ɯ镶Eq荣¿S5Tƙ
+ - 觇ƒ幦ų勏Y9=ȳB鼲糰E
dataSource:
- apiGroup: "517"
- kind: "518"
- name: "519"
+ apiGroup: "529"
+ kind: "530"
+ name: "531"
dataSourceRef:
- apiGroup: "520"
- kind: "521"
- name: "522"
+ apiGroup: "532"
+ kind: "533"
+ name: "534"
resources:
limits:
- xġ疾ɇù扻喥|{軈ĕʦ竳÷ 骵蓧: "587"
+ 莥N: "597"
requests:
- "": "856"
+ _Gȱ恛穒挤ţ#你顫#b°: "796"
selector:
matchExpressions:
- - key: 7--4a06y7-dt--5--8-69vc31o-865227qok-3-v8e7wfk4ek.hi93f---z-4-q24gt/Mw.___-_-mv9h.-7.s__-_g6_-_No
+ - key: 019_-gYY.3
operator: In
values:
- - D.9-F_A-t0-o.7_a-t.-d6h__._-.Z-Q.1-B.__--wr_-Iu9._.UT-o
+ - F-__q6Q_--a_-_zzQ
matchLabels:
- N_l..-_.1-j---30q.-2_9.9-..-JA-H-5: 8_--4.__z2-.T2I
- storageClassName: "516"
- volumeMode: 涼ĥ訛\`ĝňYuĞyÜ蛃慕ʓvâ
- volumeName: "515"
+ 655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---49t7.28-d-e10-f-o-fr5/Y__03_6.K8l.YlG0.87B1: z23.Ya-C3-._-l__S
+ storageClassName: "528"
+ volumeMode: wŲ魦Ɔ0ƢĮÀĘÆɆ
+ volumeName: "527"
status:
accessModes:
- - v}鮩澊聝楧
+ - '}杻扞Ğuƈ?犻盪ǵĿř岈'
allocatedResources:
- 鐳VDɝ: "844"
+ ĐȌƨǴ叆ĄD輷東t½ǩ £tMǍ}: "968"
capacity:
- 问Ð7ɞŶJŖ)j{驟ʦcȃ: "657"
+ Ǐ]S5:œƌ嵃ǁǞŢ: "247"
conditions:
- - lastProbeTime: "2156-05-28T07:29:36Z"
- lastTransitionTime: "2066-08-08T11:27:30Z"
- message: "524"
- reason: "523"
- status: Q¢鬣_棈Ý泷
- type: ņȎZȐ樾'Ż£劾ů
- phase: 忣àÂƺ琰Ȃ芋醳鮩!廊臚cɶċ
- resizeStatus: 但Ǭľa执mÎDƃ
+ - lastProbeTime: "2219-08-25T11:44:30Z"
+ lastTransitionTime: "2211-02-15T05:10:41Z"
+ message: "536"
+ reason: "535"
+ status: z¦
+ type: 爪$R
+ phase: ñƍU烈 źfjǰɪ嘞
+ resizeStatus: ʨɺC`牯
status:
- availableReplicas: 747018016
- collisionCount: 1077247354
+ availableReplicas: -1174483980
+ collisionCount: 1222237461
conditions:
- - lastTransitionTime: "2814-04-22T10:44:02Z"
- message: "529"
- reason: "528"
- status: ij敪賻yʗHiv<
- type: 堏ȑ湸睑L暱ʖ妾崗
- currentReplicas: -1295777734
- currentRevision: "526"
- observedGeneration: -632886252136267545
- readyReplicas: -1012893423
- replicas: 750655684
- updateRevision: "527"
- updatedReplicas: -1394190312
+ - lastTransitionTime: "2368-07-30T22:05:09Z"
+ message: "541"
+ reason: "540"
+ status: 飼蒱鄆&嬜Š&?鳢.ǀŭ瘢颦z
+ type: 壣V礆á¤拈tY
+ currentReplicas: 223338274
+ currentRevision: "538"
+ observedGeneration: -3770279213092072518
+ readyReplicas: -175399547
+ replicas: -1669166259
+ updateRevision: "539"
+ updatedReplicas: -1279136912
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json
index 691a5171630..ef352ab4d8a 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,42 +1573,41 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"strategy": {
- "type": "Ýɹ橽ƴåj}c殶ėŔ裑烴\u003c暉Ŝ!",
+ "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -779806398,
- "revisionHistoryLimit": 440570496,
- "paused": true,
+ "minReadySeconds": -463159422,
+ "revisionHistoryLimit": -855944448,
"rollbackTo": {
- "revision": -7008927308432218140
+ "revision": 8396665783362056578
},
- "progressDeadlineSeconds": -43713883
+ "progressDeadlineSeconds": -2081947001
},
"status": {
- "observedGeneration": 6595930309397245706,
- "replicas": -98839735,
- "updatedReplicas": -691251015,
- "readyReplicas": -408821490,
- "availableReplicas": 376262938,
- "unavailableReplicas": 632292328,
+ "observedGeneration": -7424819380422523827,
+ "replicas": 926271164,
+ "updatedReplicas": 1447614235,
+ "readyReplicas": -1113487741,
+ "availableReplicas": -1232724924,
+ "unavailableReplicas": 619959999,
"conditions": [
{
- "type": "ĈȖ董缞濪葷cŲ",
- "status": "5Ë",
- "lastUpdateTime": "2909-01-09T22:03:18Z",
- "lastTransitionTime": "2294-05-20T00:00:03Z",
- "reason": "491",
- "message": "492"
+ "type": "¹bCũw¼ ǫđ槴Ċį軠\u003e桼劑躮",
+ "status": "9=ȳB鼲糰Eè6苁嗀ĕ佣",
+ "lastUpdateTime": "2821-04-08T08:07:20Z",
+ "lastTransitionTime": "2915-05-25T05:58:38Z",
+ "reason": "503",
+ "message": "504"
}
],
- "collisionCount": 955020766
+ "collisionCount": 1266675441
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb
index 73b5b1b3220..2d923f6fe3d 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml
index 8b19696db5b..ecdaf1207b0 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.yaml
@@ -31,13 +31,12 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -779806398
- paused: true
- progressDeadlineSeconds: -43713883
+ minReadySeconds: -463159422
+ progressDeadlineSeconds: -2081947001
replicas: 896585016
- revisionHistoryLimit: 440570496
+ revisionHistoryLimit: -855944448
rollbackTo:
- revision: -7008927308432218140
+ revision: 8396665783362056578
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@@ -48,7 +47,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: Ýɹ橽ƴåj}c殶ėŔ裑烴<暉Ŝ!
+ type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
template:
metadata:
annotations:
@@ -81,490 +80,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -642,14 +663,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -660,24 +681,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -687,52 +711,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -744,69 +771,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1066,17 +1092,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 376262938
- collisionCount: 955020766
+ availableReplicas: -1232724924
+ collisionCount: 1266675441
conditions:
- - lastTransitionTime: "2294-05-20T00:00:03Z"
- lastUpdateTime: "2909-01-09T22:03:18Z"
- message: "492"
- reason: "491"
- status: 5Ë
- type: ĈȖ董缞濪葷cŲ
- observedGeneration: 6595930309397245706
- readyReplicas: -408821490
- replicas: -98839735
- unavailableReplicas: 632292328
- updatedReplicas: -691251015
+ - lastTransitionTime: "2915-05-25T05:58:38Z"
+ lastUpdateTime: "2821-04-08T08:07:20Z"
+ message: "504"
+ reason: "503"
+ status: 9=ȳB鼲糰Eè6苁嗀ĕ佣
+ type: ¹bCũw¼ ǫđ槴Ċį軠>桼劑躮
+ observedGeneration: -7424819380422523827
+ readyReplicas: -1113487741
+ replicas: 926271164
+ unavailableReplicas: 619959999
+ updatedReplicas: 1447614235
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json
index fc5c2fd5b83..c5d22102fa0 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,146 +1573,146 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"volumeClaimTemplates": [
{
"metadata": {
- "name": "491",
- "generateName": "492",
- "namespace": "493",
- "selfLink": "494",
- "uid": "`",
- "resourceVersion": "5863709333089187294",
- "generation": 6477367096865964611,
- "creationTimestamp": "2097-02-11T08:53:04Z",
- "deletionGracePeriodSeconds": 5497143372256332223,
+ "name": "503",
+ "generateName": "504",
+ "namespace": "505",
+ "selfLink": "506",
+ "uid": "µʍ^鼑",
+ "resourceVersion": "12522354568905793793",
+ "generation": -7492163414721477183,
+ "creationTimestamp": "2091-04-29T08:40:13Z",
+ "deletionGracePeriodSeconds": -790340248384719952,
"labels": {
- "496": "497"
+ "508": "509"
},
"annotations": {
- "498": "499"
+ "510": "511"
},
"ownerReferences": [
{
- "apiVersion": "500",
- "kind": "501",
- "name": "502",
- "uid": "Z穑S13t",
- "controller": false,
- "blockOwnerDeletion": true
+ "apiVersion": "512",
+ "kind": "513",
+ "name": "514",
+ "uid": "#囨q",
+ "controller": true,
+ "blockOwnerDeletion": false
}
],
"finalizers": [
- "503"
+ "515"
],
- "clusterName": "504",
+ "clusterName": "516",
"managedFields": [
{
- "manager": "505",
- "operation": "董缞濪葷cŲNª",
- "apiVersion": "506",
- "fieldsType": "507",
- "subresource": "508"
+ "manager": "517",
+ "operation": "ÄdƦ;ƣŽ氮怉ƥ;\"薑Ȣ#闬輙怀¹",
+ "apiVersion": "518",
+ "fieldsType": "519",
+ "subresource": "520"
}
]
},
"spec": {
"accessModes": [
- "豘ñ澀j劎笜釼鮭Ɯ镶Eq荣¿S5Tƙ"
+ "觇ƒ幦ų勏Y9=ȳB鼲糰E"
],
"selector": {
"matchLabels": {
- "N_l..-_.1-j---30q.-2_9.9-..-JA-H-5": "8_--4.__z2-.T2I"
+ "655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---49t7.28-d-e10-f-o-fr5/Y__03_6.K8l.YlG0.87B1": "z23.Ya-C3-._-l__S"
},
"matchExpressions": [
{
- "key": "7--4a06y7-dt--5--8-69vc31o-865227qok-3-v8e7wfk4ek.hi93f---z-4-q24gt/Mw.___-_-mv9h.-7.s__-_g6_-_No",
+ "key": "019_-gYY.3",
"operator": "In",
"values": [
- "D.9-F_A-t0-o.7_a-t.-d6h__._-.Z-Q.1-B.__--wr_-Iu9._.UT-o"
+ "F-__q6Q_--a_-_zzQ"
]
}
]
},
"resources": {
"limits": {
- "xġ疾ɇù扻喥|{軈ĕʦ竳÷ 骵蓧": "587"
+ "莥N": "597"
},
"requests": {
- "": "856"
+ "_Gȱ恛穒挤ţ#你顫#b°": "796"
}
},
- "volumeName": "515",
- "storageClassName": "516",
- "volumeMode": "涼ĥ訛\\`ĝňYuĞyÜ蛃慕ʓvâ",
+ "volumeName": "527",
+ "storageClassName": "528",
+ "volumeMode": "wŲ魦Ɔ0ƢĮÀĘÆɆ",
"dataSource": {
- "apiGroup": "517",
- "kind": "518",
- "name": "519"
+ "apiGroup": "529",
+ "kind": "530",
+ "name": "531"
},
"dataSourceRef": {
- "apiGroup": "520",
- "kind": "521",
- "name": "522"
+ "apiGroup": "532",
+ "kind": "533",
+ "name": "534"
}
},
"status": {
- "phase": "忣àÂƺ琰Ȃ芋醳鮩!廊臚cɶċ",
+ "phase": "ñƍU烈 źfjǰɪ嘞",
"accessModes": [
- "v}鮩澊聝楧"
+ "}杻扞Ğuƈ?犻盪ǵĿř岈"
],
"capacity": {
- "问Ð7ɞŶJŖ)j{驟ʦcȃ": "657"
+ "Ǐ]S5:œƌ嵃ǁǞŢ": "247"
},
"conditions": [
{
- "type": "ņȎZȐ樾'Ż£劾ů",
- "status": "Q¢鬣_棈Ý泷",
- "lastProbeTime": "2156-05-28T07:29:36Z",
- "lastTransitionTime": "2066-08-08T11:27:30Z",
- "reason": "523",
- "message": "524"
+ "type": "爪$R",
+ "status": "z¦",
+ "lastProbeTime": "2219-08-25T11:44:30Z",
+ "lastTransitionTime": "2211-02-15T05:10:41Z",
+ "reason": "535",
+ "message": "536"
}
],
"allocatedResources": {
- "鐳VDɝ": "844"
+ "ĐȌƨǴ叆ĄD輷東t½ǩ £tMǍ}": "968"
},
- "resizeStatus": "但Ǭľa执mÎDƃ"
+ "resizeStatus": "ʨɺC`牯"
}
}
],
- "serviceName": "525",
- "podManagementPolicy": "ƌ妜;)t罎j´A",
+ "serviceName": "537",
+ "podManagementPolicy": "Ȍ%ÿ¼璤ňɈ",
"updateStrategy": {
- "type": "徙蔿Yċʤw俣Ǫ",
+ "type": "銜Ʌ0斃搡Cʼn嘡",
"rollingUpdate": {
- "partition": 2000146968
+ "partition": 79841
}
},
- "revisionHistoryLimit": 560461224,
- "minReadySeconds": 2059121580
+ "revisionHistoryLimit": -1166275743,
+ "minReadySeconds": -1056262432
},
"status": {
- "observedGeneration": -8200913189823252840,
- "replicas": 1892314617,
- "readyReplicas": -1893854851,
- "currentReplicas": 658548230,
- "updatedReplicas": -301228056,
- "currentRevision": "526",
- "updateRevision": "527",
- "collisionCount": 446542989,
+ "observedGeneration": 1124654959171263717,
+ "replicas": -1775998279,
+ "readyReplicas": 233229473,
+ "currentReplicas": 99917513,
+ "updatedReplicas": 421164481,
+ "currentRevision": "538",
+ "updateRevision": "539",
+ "collisionCount": -1137929768,
"conditions": [
{
- "type": "Ǚ3洠º襊Ł靫挕欰ij敪賻yʗHiv",
- "status": "V汦\u003e蒃U",
- "lastTransitionTime": "2800-08-07T22:03:04Z",
- "reason": "528",
- "message": "529"
+ "type": "/d\u0026蒡榤Ⱦ盜ŭ飼蒱鄆",
+ "status": "",
+ "lastTransitionTime": "2358-03-12T13:17:54Z",
+ "reason": "540",
+ "message": "541"
}
],
- "availableReplicas": -2059927818
+ "availableReplicas": 171558604
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb
index 35f8f6d3de3..d0c2eae1dc1 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml
index 184cd513c20..5c5a09f27b5 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml
@@ -31,17 +31,17 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: 2059121580
- podManagementPolicy: ƌ妜;)t罎j´A
+ minReadySeconds: -1056262432
+ podManagementPolicy: Ȍ%ÿ¼璤ňɈ
replicas: 896585016
- revisionHistoryLimit: 560461224
+ revisionHistoryLimit: -1166275743
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
operator: Exists
matchLabels:
74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1
- serviceName: "525"
+ serviceName: "537"
template:
metadata:
annotations:
@@ -74,490 +74,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -635,14 +657,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -653,24 +675,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -680,52 +705,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -737,69 +765,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1060,95 +1087,95 @@ spec:
volumePath: "103"
updateStrategy:
rollingUpdate:
- partition: 2000146968
- type: 徙蔿Yċʤw俣Ǫ
+ partition: 79841
+ type: 銜Ʌ0斃搡Cʼn嘡
volumeClaimTemplates:
- metadata:
annotations:
- "498": "499"
- clusterName: "504"
- creationTimestamp: "2097-02-11T08:53:04Z"
- deletionGracePeriodSeconds: 5497143372256332223
+ "510": "511"
+ clusterName: "516"
+ creationTimestamp: "2091-04-29T08:40:13Z"
+ deletionGracePeriodSeconds: -790340248384719952
finalizers:
- - "503"
- generateName: "492"
- generation: 6477367096865964611
+ - "515"
+ generateName: "504"
+ generation: -7492163414721477183
labels:
- "496": "497"
+ "508": "509"
managedFields:
- - apiVersion: "506"
- fieldsType: "507"
- manager: "505"
- operation: 董缞濪葷cŲNª
- subresource: "508"
- name: "491"
- namespace: "493"
+ - apiVersion: "518"
+ fieldsType: "519"
+ manager: "517"
+ operation: ÄdƦ;ƣŽ氮怉ƥ;"薑Ȣ#闬輙怀¹
+ subresource: "520"
+ name: "503"
+ namespace: "505"
ownerReferences:
- - apiVersion: "500"
- blockOwnerDeletion: true
- controller: false
- kind: "501"
- name: "502"
- uid: Z穑S13t
- resourceVersion: "5863709333089187294"
- selfLink: "494"
- uid: '`'
+ - apiVersion: "512"
+ blockOwnerDeletion: false
+ controller: true
+ kind: "513"
+ name: "514"
+ uid: '#囨q'
+ resourceVersion: "12522354568905793793"
+ selfLink: "506"
+ uid: µʍ^鼑
spec:
accessModes:
- - 豘ñ澀j劎笜釼鮭Ɯ镶Eq荣¿S5Tƙ
+ - 觇ƒ幦ų勏Y9=ȳB鼲糰E
dataSource:
- apiGroup: "517"
- kind: "518"
- name: "519"
+ apiGroup: "529"
+ kind: "530"
+ name: "531"
dataSourceRef:
- apiGroup: "520"
- kind: "521"
- name: "522"
+ apiGroup: "532"
+ kind: "533"
+ name: "534"
resources:
limits:
- xġ疾ɇù扻喥|{軈ĕʦ竳÷ 骵蓧: "587"
+ 莥N: "597"
requests:
- "": "856"
+ _Gȱ恛穒挤ţ#你顫#b°: "796"
selector:
matchExpressions:
- - key: 7--4a06y7-dt--5--8-69vc31o-865227qok-3-v8e7wfk4ek.hi93f---z-4-q24gt/Mw.___-_-mv9h.-7.s__-_g6_-_No
+ - key: 019_-gYY.3
operator: In
values:
- - D.9-F_A-t0-o.7_a-t.-d6h__._-.Z-Q.1-B.__--wr_-Iu9._.UT-o
+ - F-__q6Q_--a_-_zzQ
matchLabels:
- N_l..-_.1-j---30q.-2_9.9-..-JA-H-5: 8_--4.__z2-.T2I
- storageClassName: "516"
- volumeMode: 涼ĥ訛\`ĝňYuĞyÜ蛃慕ʓvâ
- volumeName: "515"
+ 655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---49t7.28-d-e10-f-o-fr5/Y__03_6.K8l.YlG0.87B1: z23.Ya-C3-._-l__S
+ storageClassName: "528"
+ volumeMode: wŲ魦Ɔ0ƢĮÀĘÆɆ
+ volumeName: "527"
status:
accessModes:
- - v}鮩澊聝楧
+ - '}杻扞Ğuƈ?犻盪ǵĿř岈'
allocatedResources:
- 鐳VDɝ: "844"
+ ĐȌƨǴ叆ĄD輷東t½ǩ £tMǍ}: "968"
capacity:
- 问Ð7ɞŶJŖ)j{驟ʦcȃ: "657"
+ Ǐ]S5:œƌ嵃ǁǞŢ: "247"
conditions:
- - lastProbeTime: "2156-05-28T07:29:36Z"
- lastTransitionTime: "2066-08-08T11:27:30Z"
- message: "524"
- reason: "523"
- status: Q¢鬣_棈Ý泷
- type: ņȎZȐ樾'Ż£劾ů
- phase: 忣àÂƺ琰Ȃ芋醳鮩!廊臚cɶċ
- resizeStatus: 但Ǭľa执mÎDƃ
+ - lastProbeTime: "2219-08-25T11:44:30Z"
+ lastTransitionTime: "2211-02-15T05:10:41Z"
+ message: "536"
+ reason: "535"
+ status: z¦
+ type: 爪$R
+ phase: ñƍU烈 źfjǰɪ嘞
+ resizeStatus: ʨɺC`牯
status:
- availableReplicas: -2059927818
- collisionCount: 446542989
+ availableReplicas: 171558604
+ collisionCount: -1137929768
conditions:
- - lastTransitionTime: "2800-08-07T22:03:04Z"
- message: "529"
- reason: "528"
- status: V汦>蒃U
- type: Ǚ3洠º襊Ł靫挕欰ij敪賻yʗHiv
- currentReplicas: 658548230
- currentRevision: "526"
- observedGeneration: -8200913189823252840
- readyReplicas: -1893854851
- replicas: 1892314617
- updateRevision: "527"
- updatedReplicas: -301228056
+ - lastTransitionTime: "2358-03-12T13:17:54Z"
+ message: "541"
+ reason: "540"
+ status: ""
+ type: /d&蒡榤Ⱦ盜ŭ飼蒱鄆
+ currentReplicas: 99917513
+ currentRevision: "538"
+ observedGeneration: 1124654959171263717
+ readyReplicas: 233229473
+ replicas: -1775998279
+ updateRevision: "539"
+ updatedReplicas: 421164481
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json
index 263adf31277..d2dade9510a 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.json
@@ -558,605 +558,645 @@
"port": 1714588921,
"host": "213"
},
- "initialDelaySeconds": -1246371817,
- "timeoutSeconds": 617318981,
- "periodSeconds": 432291364,
- "successThreshold": 676578360,
- "failureThreshold": -552281772,
- "terminationGracePeriodSeconds": -2910346974754087949
+ "gRPC": {
+ "port": -614161319,
+ "service": "214"
+ },
+ "initialDelaySeconds": 452673549,
+ "timeoutSeconds": 627670321,
+ "periodSeconds": -125932767,
+ "successThreshold": -18758819,
+ "failureThreshold": -1666819085,
+ "terminationGracePeriodSeconds": -1212012606981050727
},
"readinessProbe": {
"exec": {
"command": [
- "214"
+ "215"
]
},
"httpGet": {
- "path": "215",
- "port": 656200799,
- "host": "216",
+ "path": "216",
+ "port": "217",
+ "host": "218",
+ "scheme": "\u0026皥贸碔lNKƙ順\\E¦队偯",
"httpHeaders": [
{
- "name": "217",
- "value": "218"
+ "name": "219",
+ "value": "220"
}
]
},
"tcpSocket": {
- "port": "219",
- "host": "220"
+ "port": -316996074,
+ "host": "221"
},
- "initialDelaySeconds": -2165496,
- "timeoutSeconds": -1778952574,
- "periodSeconds": 1386255869,
- "successThreshold": -778272981,
- "failureThreshold": 2056774277,
- "terminationGracePeriodSeconds": -9219895030215397584
+ "gRPC": {
+ "port": -760292259,
+ "service": "222"
+ },
+ "initialDelaySeconds": -1164530482,
+ "timeoutSeconds": 1877574041,
+ "periodSeconds": 1430286749,
+ "successThreshold": -374766088,
+ "failureThreshold": -736151561,
+ "terminationGracePeriodSeconds": -6508463748290235837
},
"startupProbe": {
"exec": {
"command": [
- "221"
+ "223"
]
},
"httpGet": {
- "path": "222",
- "port": "223",
- "host": "224",
- "scheme": "鬶l獕;跣Hǝcw",
+ "path": "224",
+ "port": "225",
+ "host": "226",
+ "scheme": "颶妧Ö闊",
"httpHeaders": [
{
- "name": "225",
- "value": "226"
+ "name": "227",
+ "value": "228"
}
]
},
"tcpSocket": {
- "port": -374766088,
- "host": "227"
+ "port": "229",
+ "host": "230"
},
- "initialDelaySeconds": -736151561,
- "timeoutSeconds": -1515369804,
- "periodSeconds": -1856061695,
- "successThreshold": 1868683352,
- "failureThreshold": -1137436579,
- "terminationGracePeriodSeconds": 8876559635423161004
+ "gRPC": {
+ "port": -1984097455,
+ "service": "231"
+ },
+ "initialDelaySeconds": -253326525,
+ "timeoutSeconds": 567263590,
+ "periodSeconds": 887319241,
+ "successThreshold": 1559618829,
+ "failureThreshold": 1156888068,
+ "terminationGracePeriodSeconds": -5566612115749133989
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "228"
+ "232"
]
},
"httpGet": {
- "path": "229",
- "port": "230",
- "host": "231",
- "scheme": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
+ "path": "233",
+ "port": 1328165061,
+ "host": "234",
+ "scheme": "¸gĩ",
"httpHeaders": [
{
- "name": "232",
- "value": "233"
+ "name": "235",
+ "value": "236"
}
]
},
"tcpSocket": {
- "port": 1993268896,
- "host": "234"
+ "port": 1186392166,
+ "host": "237"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "238"
]
},
"httpGet": {
- "path": "236",
- "port": "237",
- "host": "238",
- "scheme": "ƿ頀\"冓鍓贯澔 ",
+ "path": "239",
+ "port": -1315487077,
+ "host": "240",
+ "scheme": "ğ_",
"httpHeaders": [
{
- "name": "239",
- "value": "240"
+ "name": "241",
+ "value": "242"
}
]
},
"tcpSocket": {
- "port": "241",
- "host": "242"
+ "port": "243",
+ "host": "244"
}
}
},
- "terminationMessagePath": "243",
- "terminationMessagePolicy": "6Ɖ飴ɎiǨź'",
- "imagePullPolicy": "{屿oiɥ嵐sC8?Ǻ",
+ "terminationMessagePath": "245",
+ "terminationMessagePolicy": "ëJ橈'琕鶫:顇ə娯Ȱ囌",
+ "imagePullPolicy": "ɐ鰥",
"securityContext": {
"capabilities": {
"add": [
- ";Nŕ璻Jih亏yƕ丆録²Ŏ"
+ "´DÒȗÔÂɘɢ鬍熖B芭花ª瘡"
],
"drop": [
- "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫"
+ "J"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "244",
- "role": "245",
- "type": "246",
- "level": "247"
+ "user": "246",
+ "role": "247",
+ "type": "248",
+ "level": "249"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "248",
- "gmsaCredentialSpec": "249",
- "runAsUserName": "250",
+ "gmsaCredentialSpecName": "250",
+ "gmsaCredentialSpec": "251",
+ "runAsUserName": "252",
"hostProcess": true
},
- "runAsUser": 4041264710404335706,
- "runAsGroup": 6453802934472477147,
+ "runAsUser": 8519266600558609398,
+ "runAsGroup": -8859267173741137425,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ",
+ "procMount": "nj汰8ŕİi騎C\"6x$1sȣ±p",
"seccompProfile": {
- "type": "V擭銆j",
- "localhostProfile": "251"
+ "type": "",
+ "localhostProfile": "253"
}
- }
+ },
+ "stdin": true,
+ "stdinOnce": true,
+ "tty": true
}
],
"containers": [
{
- "name": "252",
- "image": "253",
+ "name": "254",
+ "image": "255",
"command": [
- "254"
+ "256"
],
"args": [
- "255"
+ "257"
],
- "workingDir": "256",
+ "workingDir": "258",
"ports": [
{
- "name": "257",
- "hostPort": -1408385387,
- "containerPort": -1225881740,
- "protocol": "撑¼蠾8餑噭",
- "hostIP": "258"
+ "name": "259",
+ "hostPort": -1170565984,
+ "containerPort": -444561761,
+ "protocol": "5哇芆斩ìh4ɊHȖ|ʐş",
+ "hostIP": "260"
}
],
"envFrom": [
{
- "prefix": "259",
+ "prefix": "261",
"configMapRef": {
- "name": "260",
- "optional": true
+ "name": "262",
+ "optional": false
},
"secretRef": {
- "name": "261",
- "optional": false
+ "name": "263",
+ "optional": true
}
}
],
"env": [
{
- "name": "262",
- "value": "263",
+ "name": "264",
+ "value": "265",
"valueFrom": {
"fieldRef": {
- "apiVersion": "264",
- "fieldPath": "265"
+ "apiVersion": "266",
+ "fieldPath": "267"
},
"resourceFieldRef": {
- "containerName": "266",
- "resource": "267",
- "divisor": "834"
+ "containerName": "268",
+ "resource": "269",
+ "divisor": "219"
},
"configMapKeyRef": {
- "name": "268",
- "key": "269",
- "optional": true
- },
- "secretKeyRef": {
"name": "270",
"key": "271",
"optional": false
+ },
+ "secretKeyRef": {
+ "name": "272",
+ "key": "273",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "n(fǂǢ曣ŋayåe躒訙Ǫ": "12"
+ "丽饾| 鞤ɱď": "590"
},
"requests": {
- "(娕uE增猍": "264"
+ "噭DµņP)DŽ髐njʉBn(f": "584"
}
},
"volumeMounts": [
{
- "name": "272",
- "mountPath": "273",
- "subPath": "274",
- "mountPropagation": "irȎ3Ĕ\\ɢX鰨松",
- "subPathExpr": "275"
+ "name": "274",
+ "readOnly": true,
+ "mountPath": "275",
+ "subPath": "276",
+ "mountPropagation": "鑳w妕眵笭/9崍h趭",
+ "subPathExpr": "277"
}
],
"volumeDevices": [
{
- "name": "276",
- "devicePath": "277"
+ "name": "278",
+ "devicePath": "279"
}
],
"livenessProbe": {
"exec": {
"command": [
- "278"
+ "280"
]
},
"httpGet": {
- "path": "279",
- "port": "280",
- "host": "281",
- "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(",
+ "path": "281",
+ "port": 597943993,
+ "host": "282",
+ "scheme": "8",
"httpHeaders": [
{
- "name": "282",
- "value": "283"
+ "name": "283",
+ "value": "284"
}
]
},
"tcpSocket": {
- "port": 317211081,
- "host": "284"
+ "port": "285",
+ "host": "286"
},
- "initialDelaySeconds": -1934305215,
- "timeoutSeconds": -655359985,
- "periodSeconds": 875971520,
- "successThreshold": 161338049,
- "failureThreshold": 65094252,
- "terminationGracePeriodSeconds": -6831592407095063988
+ "gRPC": {
+ "port": -977348956,
+ "service": "287"
+ },
+ "initialDelaySeconds": -637630736,
+ "timeoutSeconds": 601942575,
+ "periodSeconds": -1320027474,
+ "successThreshold": -1750169306,
+ "failureThreshold": 2112112129,
+ "terminationGracePeriodSeconds": 2270336783402505634
},
"readinessProbe": {
"exec": {
"command": [
- "285"
+ "288"
]
},
"httpGet": {
- "path": "286",
- "port": -2126891601,
- "host": "287",
- "scheme": "l}Ñ蠂Ü[ƛ^輅9ɛ棕",
+ "path": "289",
+ "port": -239264629,
+ "host": "290",
+ "scheme": "ɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "291",
+ "value": "292"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": "293",
+ "host": "294"
},
- "initialDelaySeconds": 1660454722,
- "timeoutSeconds": -1317234078,
- "periodSeconds": -1347045470,
- "successThreshold": 1169580662,
- "failureThreshold": 404234347,
- "terminationGracePeriodSeconds": 8560122250231719622
+ "gRPC": {
+ "port": 626243488,
+ "service": "295"
+ },
+ "initialDelaySeconds": -1920304485,
+ "timeoutSeconds": -1842062977,
+ "periodSeconds": 1424401373,
+ "successThreshold": -531787516,
+ "failureThreshold": 2073630689,
+ "terminationGracePeriodSeconds": -3568583337361453338
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "296"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "ǚŜEuEy竬ʆɞ",
+ "path": "297",
+ "port": -894026356,
+ "host": "298",
+ "scheme": "繐汚磉反-n覦",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "299",
+ "value": "300"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "301",
+ "host": "302"
},
- "initialDelaySeconds": 336252010,
- "timeoutSeconds": 677650619,
- "periodSeconds": 930785927,
- "successThreshold": 1624098740,
- "failureThreshold": 1419787816,
- "terminationGracePeriodSeconds": -506227444233847191
+ "gRPC": {
+ "port": 413903479,
+ "service": "303"
+ },
+ "initialDelaySeconds": 1708236944,
+ "timeoutSeconds": -1192140557,
+ "periodSeconds": 1961354355,
+ "successThreshold": -1977635123,
+ "failureThreshold": 1660454722,
+ "terminationGracePeriodSeconds": -5657477284668711794
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "304"
]
},
"httpGet": {
- "path": "301",
- "port": "302",
- "host": "303",
- "scheme": "ĝ®EĨǔvÄÚ×p鬷",
+ "path": "305",
+ "port": 1190831814,
+ "host": "306",
+ "scheme": "dŊiɢ",
"httpHeaders": [
{
- "name": "304",
- "value": "305"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 1673908530,
- "host": "306"
+ "port": -370404018,
+ "host": "309"
}
},
"preStop": {
"exec": {
"command": [
- "307"
+ "310"
]
},
"httpGet": {
- "path": "308",
- "port": "309",
- "host": "310",
- "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀",
+ "path": "311",
+ "port": 280878117,
+ "host": "312",
+ "scheme": "ɞȥ}礤铟怖ý萜Ǖ",
"httpHeaders": [
{
- "name": "311",
- "value": "312"
+ "name": "313",
+ "value": "314"
}
]
},
"tcpSocket": {
- "port": -1912967242,
- "host": "313"
+ "port": -1088996269,
+ "host": "315"
}
}
},
- "terminationMessagePath": "314",
- "terminationMessagePolicy": "漤ŗ坟",
- "imagePullPolicy": "-紑浘牬釼aTGÒ鵌",
+ "terminationMessagePath": "316",
+ "terminationMessagePolicy": "ƘƵŧ1ƟƓ宆!",
+ "imagePullPolicy": "×p鬷m罂o3ǰ廋i乳'ȘUɻ;",
"securityContext": {
"capabilities": {
"add": [
- "Nh×DJɶ羹ƞʓ%ʝ`ǭ"
+ "桉桃喕蠲$ɛ溢臜裡×"
],
"drop": [
- "ñ?卶滿筇ȟP:/a"
+ "-紑浘牬釼aTGÒ鵌"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "315",
- "role": "316",
- "type": "317",
- "level": "318"
+ "user": "317",
+ "role": "318",
+ "type": "319",
+ "level": "320"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "319",
- "gmsaCredentialSpec": "320",
- "runAsUserName": "321",
+ "gmsaCredentialSpecName": "321",
+ "gmsaCredentialSpec": "322",
+ "runAsUserName": "323",
"hostProcess": false
},
- "runAsUser": 308757565294839546,
- "runAsGroup": 5797412715505520759,
+ "runAsUser": -3539084410583519556,
+ "runAsGroup": 296399212346260204,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
- "allowPrivilegeEscalation": false,
- "procMount": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "ʓ%ʝ`ǭ躌ñ?卶滿筇ȟP:/",
"seccompProfile": {
- "type": "繽敮ǰ詀ǿ忀oɎƺ",
- "localhostProfile": "322"
+ "type": "殆诵H玲鑠ĭ$#卛8ð仁Q",
+ "localhostProfile": "324"
}
},
- "tty": true
+ "stdinOnce": true
}
],
"ephemeralContainers": [
{
- "name": "323",
- "image": "324",
+ "name": "325",
+ "image": "326",
"command": [
- "325"
+ "327"
],
"args": [
- "326"
+ "328"
],
- "workingDir": "327",
+ "workingDir": "329",
"ports": [
{
- "name": "328",
- "hostPort": 788093377,
- "containerPort": -557687916,
- "protocol": "_敕",
- "hostIP": "329"
+ "name": "330",
+ "hostPort": -846940406,
+ "containerPort": 2004993767,
+ "protocol": "Ű藛b磾sYȠ繽敮ǰ",
+ "hostIP": "331"
}
],
"envFrom": [
{
- "prefix": "330",
+ "prefix": "332",
"configMapRef": {
- "name": "331",
- "optional": true
+ "name": "333",
+ "optional": false
},
"secretRef": {
- "name": "332",
- "optional": false
+ "name": "334",
+ "optional": true
}
}
],
"env": [
{
- "name": "333",
- "value": "334",
+ "name": "335",
+ "value": "336",
"valueFrom": {
"fieldRef": {
- "apiVersion": "335",
- "fieldPath": "336"
+ "apiVersion": "337",
+ "fieldPath": "338"
},
"resourceFieldRef": {
- "containerName": "337",
- "resource": "338",
- "divisor": "971"
+ "containerName": "339",
+ "resource": "340",
+ "divisor": "121"
},
"configMapKeyRef": {
- "name": "339",
- "key": "340",
- "optional": true
- },
- "secretKeyRef": {
"name": "341",
"key": "342",
"optional": true
+ },
+ "secretKeyRef": {
+ "name": "343",
+ "key": "344",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "湷D谹気Ƀ秮òƬɸĻo:{": "523"
+ "$矐_敕ű嵞嬯t{Eɾ敹Ȯ-": "642"
},
"requests": {
- "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»": "929"
+ "蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx": "77"
}
},
"volumeMounts": [
{
- "name": "343",
- "readOnly": true,
- "mountPath": "344",
- "subPath": "345",
- "mountPropagation": "|ǓÓ敆OɈÏ 瞍髃",
- "subPathExpr": "346"
+ "name": "345",
+ "mountPath": "346",
+ "subPath": "347",
+ "mountPropagation": "¬h`職铳s44矕Ƈè*鑏='ʨ|",
+ "subPathExpr": "348"
}
],
"volumeDevices": [
{
- "name": "347",
- "devicePath": "348"
+ "name": "349",
+ "devicePath": "350"
}
],
"livenessProbe": {
"exec": {
"command": [
- "349"
+ "351"
]
},
"httpGet": {
- "path": "350",
- "port": "351",
- "host": "352",
- "scheme": "07曳wœj堑ūM鈱ɖ'蠨",
+ "path": "352",
+ "port": -592535081,
+ "host": "353",
+ "scheme": "fsǕT",
"httpHeaders": [
{
- "name": "353",
- "value": "354"
+ "name": "354",
+ "value": "355"
}
]
},
"tcpSocket": {
- "port": "355",
+ "port": -394464008,
"host": "356"
},
- "initialDelaySeconds": -242798806,
- "timeoutSeconds": -1940800545,
- "periodSeconds": 681004793,
- "successThreshold": 2002666266,
- "failureThreshold": -2033879721,
- "terminationGracePeriodSeconds": -4409241678312226730
+ "gRPC": {
+ "port": -839925309,
+ "service": "357"
+ },
+ "initialDelaySeconds": -526099499,
+ "timeoutSeconds": -1014296961,
+ "periodSeconds": 1708011112,
+ "successThreshold": -603097910,
+ "failureThreshold": 1776174141,
+ "terminationGracePeriodSeconds": -5794598592563963676
},
"readinessProbe": {
"exec": {
"command": [
- "357"
+ "358"
]
},
"httpGet": {
- "path": "358",
- "port": 279062028,
- "host": "359",
- "scheme": "Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p",
+ "path": "359",
+ "port": 134832144,
+ "host": "360",
+ "scheme": "Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍",
"httpHeaders": [
{
- "name": "360",
- "value": "361"
+ "name": "361",
+ "value": "362"
}
]
},
"tcpSocket": {
- "port": -943058206,
- "host": "362"
+ "port": -1289510276,
+ "host": "363"
},
- "initialDelaySeconds": 725557531,
- "timeoutSeconds": -703127031,
- "periodSeconds": 741667779,
- "successThreshold": -381344241,
- "failureThreshold": -2122876628,
- "terminationGracePeriodSeconds": 2700145646260085226
+ "gRPC": {
+ "port": 701103233,
+ "service": "364"
+ },
+ "initialDelaySeconds": 1995848794,
+ "timeoutSeconds": -281926929,
+ "periodSeconds": -372626292,
+ "successThreshold": 2018111855,
+ "failureThreshold": 1019901190,
+ "terminationGracePeriodSeconds": -6980960365540477247
},
"startupProbe": {
"exec": {
"command": [
- "363"
+ "365"
]
},
"httpGet": {
- "path": "364",
- "port": "365",
- "host": "366",
- "scheme": "thp像-",
+ "path": "366",
+ "port": "367",
+ "host": "368",
+ "scheme": "p蓋沥7uPƒw©ɴ",
"httpHeaders": [
{
- "name": "367",
- "value": "368"
+ "name": "369",
+ "value": "370"
}
]
},
"tcpSocket": {
- "port": "369",
- "host": "370"
+ "port": -671265235,
+ "host": "371"
},
- "initialDelaySeconds": 1589417286,
- "timeoutSeconds": 445878206,
- "periodSeconds": 1874051321,
- "successThreshold": -500012714,
- "failureThreshold": 1762917570,
- "terminationGracePeriodSeconds": 4794571970514469019
+ "gRPC": {
+ "port": 1782790310,
+ "service": "372"
+ },
+ "initialDelaySeconds": 1587036035,
+ "timeoutSeconds": 1760208172,
+ "periodSeconds": -59501664,
+ "successThreshold": 1261462387,
+ "failureThreshold": -1289875111,
+ "terminationGracePeriodSeconds": -7492770647593151162
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "371"
+ "373"
]
},
"httpGet": {
- "path": "372",
- "port": "373",
- "host": "374",
- "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
+ "path": "374",
+ "port": 1762917570,
+ "host": "375",
+ "scheme": "Ų買霎ȃň[\u003eą",
"httpHeaders": [
{
- "name": "375",
- "value": "376"
+ "name": "376",
+ "value": "377"
}
]
},
"tcpSocket": {
- "port": "377",
+ "port": 1414336865,
"host": "378"
}
},
@@ -1168,8 +1208,9 @@
},
"httpGet": {
"path": "380",
- "port": -1743587482,
+ "port": 1129006716,
"host": "381",
+ "scheme": "ȱɷȰW瀤oɢ嫎¸殚篎3",
"httpHeaders": [
{
"name": "382",
@@ -1178,104 +1219,101 @@
]
},
"tcpSocket": {
- "port": 858034123,
- "host": "384"
+ "port": "384",
+ "host": "385"
}
}
},
- "terminationMessagePath": "385",
- "terminationMessagePolicy": "喾@潷",
- "imagePullPolicy": "#t(ȗŜŲ\u0026洪y儕l",
+ "terminationMessagePath": "386",
+ "terminationMessagePolicy": "[y#t(",
"securityContext": {
"capabilities": {
"add": [
- "ɻŶJ詢"
+ "rƈa餖Ľ"
],
"drop": [
- "ǾɁ鍻G鯇ɀ魒Ð扬=惍E"
+ "淴ɑ?¶Ȳ"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "386",
- "role": "387",
- "type": "388",
- "level": "389"
+ "user": "387",
+ "role": "388",
+ "type": "389",
+ "level": "390"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "390",
- "gmsaCredentialSpec": "391",
- "runAsUserName": "392",
- "hostProcess": false
+ "gmsaCredentialSpecName": "391",
+ "gmsaCredentialSpec": "392",
+ "runAsUserName": "393",
+ "hostProcess": true
},
- "runAsUser": -5071790362153704411,
- "runAsGroup": -2841141127223294729,
- "runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
+ "runAsUser": 5200080507234099655,
+ "runAsGroup": 8544841476815986834,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": ";Ƭ婦d%蹶/ʗp壥Ƥ",
+ "procMount": "œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ",
"seccompProfile": {
- "type": "郡ɑ鮽ǍJB膾扉A1襏櫯³",
- "localhostProfile": "393"
+ "type": "ʫį淓¯Ą0ƛ忀z委\u003e,趐V曡88 ",
+ "localhostProfile": "394"
}
},
"stdinOnce": true,
- "targetContainerName": "394"
+ "targetContainerName": "395"
}
],
- "restartPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉",
- "terminationGracePeriodSeconds": -1390311149947249535,
- "activeDeadlineSeconds": 2684251781701131156,
- "dnsPolicy": "厶s",
+ "restartPolicy": "荊ù灹8緔Tj§E蓋",
+ "terminationGracePeriodSeconds": -2019276087967685705,
+ "activeDeadlineSeconds": 9106348347596466980,
+ "dnsPolicy": "ȩ愉B",
"nodeSelector": {
- "395": "396"
+ "396": "397"
},
- "serviceAccountName": "397",
- "serviceAccount": "398",
+ "serviceAccountName": "398",
+ "serviceAccount": "399",
"automountServiceAccountToken": true,
- "nodeName": "399",
- "hostPID": true,
- "hostIPC": true,
- "shareProcessNamespace": true,
+ "nodeName": "400",
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "400",
- "role": "401",
- "type": "402",
- "level": "403"
+ "user": "401",
+ "role": "402",
+ "type": "403",
+ "level": "404"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "404",
- "gmsaCredentialSpec": "405",
- "runAsUserName": "406",
- "hostProcess": true
+ "gmsaCredentialSpecName": "405",
+ "gmsaCredentialSpec": "406",
+ "runAsUserName": "407",
+ "hostProcess": false
},
- "runAsUser": -3184085461588437523,
- "runAsGroup": -2037509302018919599,
+ "runAsUser": 231646691853926712,
+ "runAsGroup": 3044211288080348140,
"runAsNonRoot": true,
"supplementalGroups": [
- -885564056413671854
+ 7168071284072373028
],
- "fsGroup": 4301352137345790658,
+ "fsGroup": -640858663485353963,
"sysctls": [
{
- "name": "407",
- "value": "408"
+ "name": "408",
+ "value": "409"
}
],
- "fsGroupChangePolicy": "柱栦阫Ƈʥ椹",
+ "fsGroupChangePolicy": "氙'[\u003eĵ'o儿",
"seccompProfile": {
- "type": "飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i",
- "localhostProfile": "409"
+ "type": "銭u裡_Ơ9o",
+ "localhostProfile": "410"
}
},
"imagePullSecrets": [
{
- "name": "410"
+ "name": "411"
}
],
- "hostname": "411",
- "subdomain": "412",
+ "hostname": "412",
+ "subdomain": "413",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1283,19 +1321,19 @@
{
"matchExpressions": [
{
- "key": "413",
- "operator": "șƷK*ƌ驔瓊'",
+ "key": "414",
+ "operator": "ʛ饊ɣKIJWĶʗ{裦i÷ɷȤ砘",
"values": [
- "414"
+ "415"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "Mĕ霉}閜LIȜŚɇA%ɀ蓧",
+ "key": "416",
+ "operator": "K*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗ",
"values": [
- "416"
+ "417"
]
}
]
@@ -1304,23 +1342,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 836045166,
+ "weight": -1084193035,
"preference": {
"matchExpressions": [
{
- "key": "417",
- "operator": "ȋ灋槊盘",
+ "key": "418",
+ "operator": "",
"values": [
- "418"
+ "419"
]
}
],
"matchFields": [
{
- "key": "419",
- "operator": "牬庘颮6(",
+ "key": "420",
+ "operator": "",
"values": [
- "420"
+ "421"
]
}
]
@@ -1333,29 +1371,26 @@
{
"labelSelector": {
"matchLabels": {
- "8o1-x-1wl--7/S.ol": "Fgw_-z_659GE.l_.23--_6l.-5B"
+ "p8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/V.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8oJ": "46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e"
},
"matchExpressions": [
{
- "key": "z_o_2.--4Z7__i1T.miw_a",
- "operator": "NotIn",
- "values": [
- "At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t"
- ]
+ "key": "f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "427"
+ "428"
],
- "topologyKey": "428",
+ "topologyKey": "429",
"namespaceSelector": {
"matchLabels": {
- "5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL": "GIT_B"
+ "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa"
},
"matchExpressions": [
{
- "key": "8-b6E_--Y_Dp8O_._e_3_.4_Wh",
+ "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p",
"operator": "DoesNotExist"
}
]
@@ -1364,36 +1399,36 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -585767440,
+ "weight": -37906634,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "I_--.k47M7y-Dy__3wc.q.8_00.0_._f": "L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0"
+ "4.7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.eD": "5_.W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g"
},
"matchExpressions": [
{
- "key": "n",
+ "key": "cx-64dw-buvf.1g--1035ad1o-d-6-bk81-34s-s-63z-v--8r-0-2--rad877gr2/w_tdt_-Z0T",
"operator": "NotIn",
"values": [
- "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP"
+ "g.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-U"
]
}
]
},
"namespaces": [
- "441"
+ "442"
],
- "topologyKey": "442",
+ "topologyKey": "443",
"namespaceSelector": {
"matchLabels": {
- "tO4-7-P41_.-.-AQ._r.-_R1": "8KLu..ly--J-_.ZCRT.0z-e"
+ "T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI": "I-mt4...rQ"
},
"matchExpressions": [
{
- "key": "34G._--u.._.105-4_ed-0-H",
- "operator": "NotIn",
+ "key": "vSW_4-__h",
+ "operator": "In",
"values": [
- "a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q"
+ "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1"
]
}
]
@@ -1407,27 +1442,33 @@
{
"labelSelector": {
"matchLabels": {
- "3_Lsu-H_.f82-82": "dWNn_U-...1P_.D8_t..-Ww27"
+ "4-vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476b---nhc50-2/7_3o_V-w._-0d__7.81_-._-_8_.._.a": "L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.R"
},
"matchExpressions": [
{
- "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1",
- "operator": "DoesNotExist"
+ "key": "Q-.-.g-_Z_-nSLq",
+ "operator": "In",
+ "values": [
+ "lks7dG-9S-O62o.8._.---UK_-.j2z"
+ ]
}
]
},
"namespaces": [
- "455"
+ "456"
],
- "topologyKey": "456",
+ "topologyKey": "457",
"namespaceSelector": {
"matchLabels": {
- "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR"
+ "1p-06jVZ-uP.t_.O937uh": "j-dY7_M_-._M5..-N_H_55..--EO"
},
"matchExpressions": [
{
- "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7",
- "operator": "DoesNotExist"
+ "key": "F_o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.WxPc---K__-iguFGT._Y",
+ "operator": "NotIn",
+ "values": [
+ ""
+ ]
}
]
}
@@ -1435,31 +1476,37 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 339079271,
+ "weight": -1205967741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
+ "38vuo17qre-33-5-u8f0f1qv--i72-x3e.z-8-tcd2-84s-n-i-711s4--9s8--o-8dm---b----036/6M__4-Pg": "EI_4G"
},
"matchExpressions": [
{
- "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
- "operator": "Exists"
+ "key": "g--v8-c58kh44k-b13--522555-11jla8-phs1a--y.m4j1-10-p-4zk-63m-z235-af-3z6-ql----v-r8th/o._g_..o",
+ "operator": "NotIn",
+ "values": [
+ "C_60-__.19_-gYY._..fP--hQ7e"
+ ]
}
]
},
"namespaces": [
- "469"
+ "470"
],
- "topologyKey": "470",
+ "topologyKey": "471",
"namespaceSelector": {
"matchLabels": {
- "E35H__.B_E": "U..u8gwbk"
+ "3c9_4._U.kT-.---c---cO1_x.Pi.---l.---9._-__X2_w_bn..--_qD-J_.4": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
},
"matchExpressions": [
{
- "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
- "operator": "Exists"
+ "key": "KTlO.__0PX",
+ "operator": "In",
+ "values": [
+ "V6K_.3_583-6.f-.9-.V..Q-K_6_3"
+ ]
}
]
}
@@ -1468,66 +1515,64 @@
]
}
},
- "schedulerName": "477",
+ "schedulerName": "478",
"tolerations": [
{
- "key": "478",
- "operator": "ŭʔb'?舍ȃʥx臥]å摞",
- "value": "479",
- "tolerationSeconds": 3053978290188957517
+ "key": "479",
+ "operator": "Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏",
+ "value": "480",
+ "effect": "r埁摢噓涫祲ŗȨĽ堐mpƮ搌",
+ "tolerationSeconds": 6217170132371410053
}
],
"hostAliases": [
{
- "ip": "480",
+ "ip": "481",
"hostnames": [
- "481"
+ "482"
]
}
],
- "priorityClassName": "482",
- "priority": -340583156,
+ "priorityClassName": "483",
+ "priority": -1371816595,
"dnsConfig": {
"nameservers": [
- "483"
+ "484"
],
"searches": [
- "484"
+ "485"
],
"options": [
{
- "name": "485",
- "value": "486"
+ "name": "486",
+ "value": "487"
}
]
},
"readinessGates": [
{
- "conditionType": "țc£PAÎǨȨ栋"
+ "conditionType": "?ȣ4c"
}
],
- "runtimeClassName": "487",
+ "runtimeClassName": "488",
"enableServiceLinks": false,
- "preemptionPolicy": "n{鳻",
+ "preemptionPolicy": "%ǁšjƾ$ʛ螳%65c3盧Ŷb",
"overhead": {
- "隅DžbİEMǶɼ`|褞": "229"
+ "ʬÇ[輚趞ț@": "597"
},
"topologySpreadConstraints": [
{
- "maxSkew": 1486667065,
- "topologyKey": "488",
- "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
+ "maxSkew": 1762898358,
+ "topologyKey": "489",
+ "whenUnsatisfiable": "ʚʛ\u0026]ŶɄğɒơ舎",
"labelSelector": {
"matchLabels": {
- "H_55..--E3_2D-1DW__o_-.k": "7"
+ "5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w": "j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7"
},
"matchExpressions": [
{
- "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
- "operator": "NotIn",
- "values": [
- "H1z..j_.r3--T"
- ]
+ "key": "kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V",
+ "operator": "Exists"
}
]
}
@@ -1535,37 +1580,37 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "Ê"
+ "name": "%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ"
}
}
},
"updateStrategy": {
- "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
+ "type": "ʟ]mʦ獪霛圦Ƶ胐N砽§",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -463159422,
- "revisionHistoryLimit": -855944448
+ "minReadySeconds": 529770835,
+ "revisionHistoryLimit": -1937346941
},
"status": {
- "currentNumberScheduled": -1556190810,
- "numberMisscheduled": -487001726,
- "desiredNumberScheduled": 929611261,
- "numberReady": -1728725476,
- "observedGeneration": -6594742865080720976,
- "updatedNumberScheduled": -1612961101,
- "numberAvailable": 1731921624,
- "numberUnavailable": 826023875,
- "collisionCount": 619959999,
+ "currentNumberScheduled": -1039302739,
+ "numberMisscheduled": -89689385,
+ "desiredNumberScheduled": -1429991698,
+ "numberReady": 428205654,
+ "observedGeneration": -7167127345249609151,
+ "updatedNumberScheduled": -1647164053,
+ "numberAvailable": -1402277158,
+ "numberUnavailable": -1513836046,
+ "collisionCount": -230316059,
"conditions": [
{
- "type": "¹bCũw¼ ǫđ槴Ċį軠\u003e桼劑躮",
- "status": "9=ȳB鼲糰Eè6苁嗀ĕ佣",
- "lastTransitionTime": "2821-04-08T08:07:20Z",
- "reason": "495",
- "message": "496"
+ "type": "Ƙȑ",
+ "status": "ɘʘ?s檣ŝƚʤ\u003cƟʚ`÷",
+ "lastTransitionTime": "2825-03-21T02:40:56Z",
+ "reason": "496",
+ "message": "497"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb
index 49fc4bd2aff..8ab1505bf11 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml
index 3f275c5ffea..47a5b57a51b 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.DaemonSet.yaml
@@ -31,8 +31,8 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -463159422
- revisionHistoryLimit: -855944448
+ minReadySeconds: 529770835
+ revisionHistoryLimit: -1937346941
selector:
matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@@ -73,350 +73,366 @@ spec:
selfLink: "29"
uid: TʡȂŏ{sǡƟ
spec:
- activeDeadlineSeconds: 2684251781701131156
+ activeDeadlineSeconds: 9106348347596466980
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "417"
- operator: ȋ灋槊盘
+ - key: "418"
+ operator: ""
values:
- - "418"
+ - "419"
matchFields:
- - key: "419"
- operator: 牬庘颮6(
+ - key: "420"
+ operator: ""
values:
- - "420"
- weight: 836045166
+ - "421"
+ weight: -1084193035
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "413"
- operator: șƷK*ƌ驔瓊'
+ - key: "414"
+ operator: ʛ饊ɣKIJWĶʗ{裦i÷ɷȤ砘
values:
- - "414"
+ - "415"
matchFields:
- - key: "415"
- operator: Mĕ霉}閜LIȜŚɇA%ɀ蓧
+ - key: "416"
+ operator: K*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗ
values:
- - "416"
+ - "417"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: "n"
+ - key: cx-64dw-buvf.1g--1035ad1o-d-6-bk81-34s-s-63z-v--8r-0-2--rad877gr2/w_tdt_-Z0T
operator: NotIn
values:
- - a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
+ - g.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-U
matchLabels:
- I_--.k47M7y-Dy__3wc.q.8_00.0_._f: L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0
+ 4.7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.eD: 5_.W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
namespaceSelector:
matchExpressions:
- - key: 34G._--u.._.105-4_ed-0-H
- operator: NotIn
+ - key: vSW_4-__h
+ operator: In
values:
- - a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q
+ - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
matchLabels:
- tO4-7-P41_.-.-AQ._r.-_R1: 8KLu..ly--J-_.ZCRT.0z-e
+ T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ
namespaces:
- - "441"
- topologyKey: "442"
- weight: -585767440
+ - "442"
+ topologyKey: "443"
+ weight: -37906634
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: z_o_2.--4Z7__i1T.miw_a
- operator: NotIn
- values:
- - At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t
- matchLabels:
- 8o1-x-1wl--7/S.ol: Fgw_-z_659GE.l_.23--_6l.-5B
- namespaceSelector:
- matchExpressions:
- - key: 8-b6E_--Y_Dp8O_._e_3_.4_Wh
+ - key: f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO
operator: DoesNotExist
matchLabels:
- 5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL: GIT_B
+ ? p8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/V.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8oJ
+ : 46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e
+ namespaceSelector:
+ matchExpressions:
+ - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p
+ operator: DoesNotExist
+ matchLabels:
+ 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa
namespaces:
- - "427"
- topologyKey: "428"
+ - "428"
+ topologyKey: "429"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
- operator: Exists
+ - key: g--v8-c58kh44k-b13--522555-11jla8-phs1a--y.m4j1-10-p-4zk-63m-z235-af-3z6-ql----v-r8th/o._g_..o
+ operator: NotIn
+ values:
+ - C_60-__.19_-gYY._..fP--hQ7e
matchLabels:
- ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
+ 38vuo17qre-33-5-u8f0f1qv--i72-x3e.z-8-tcd2-84s-n-i-711s4--9s8--o-8dm---b----036/6M__4-Pg: EI_4G
namespaceSelector:
matchExpressions:
- - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
- operator: Exists
+ - key: KTlO.__0PX
+ operator: In
+ values:
+ - V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
- E35H__.B_E: U..u8gwbk
+ 3c9_4._U.kT-.---c---cO1_x.Pi.---l.---9._-__X2_w_bn..--_qD-J_.4: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
namespaces:
- - "469"
- topologyKey: "470"
- weight: 339079271
+ - "470"
+ topologyKey: "471"
+ weight: -1205967741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
- operator: DoesNotExist
+ - key: Q-.-.g-_Z_-nSLq
+ operator: In
+ values:
+ - lks7dG-9S-O62o.8._.---UK_-.j2z
matchLabels:
- 3_Lsu-H_.f82-82: dWNn_U-...1P_.D8_t..-Ww27
+ 4-vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476b---nhc50-2/7_3o_V-w._-0d__7.81_-._-_8_.._.a: L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.R
namespaceSelector:
matchExpressions:
- - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7
- operator: DoesNotExist
+ - key: F_o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.WxPc---K__-iguFGT._Y
+ operator: NotIn
+ values:
+ - ""
matchLabels:
- "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR
+ 1p-06jVZ-uP.t_.O937uh: j-dY7_M_-._M5..-N_H_55..--EO
namespaces:
- - "455"
- topologyKey: "456"
+ - "456"
+ topologyKey: "457"
automountServiceAccountToken: true
containers:
- args:
- - "255"
+ - "257"
command:
- - "254"
+ - "256"
env:
- - name: "262"
- value: "263"
+ - name: "264"
+ value: "265"
valueFrom:
configMapKeyRef:
- key: "269"
- name: "268"
- optional: true
- fieldRef:
- apiVersion: "264"
- fieldPath: "265"
- resourceFieldRef:
- containerName: "266"
- divisor: "834"
- resource: "267"
- secretKeyRef:
key: "271"
name: "270"
optional: false
+ fieldRef:
+ apiVersion: "266"
+ fieldPath: "267"
+ resourceFieldRef:
+ containerName: "268"
+ divisor: "219"
+ resource: "269"
+ secretKeyRef:
+ key: "273"
+ name: "272"
+ optional: false
envFrom:
- configMapRef:
- name: "260"
- optional: true
- prefix: "259"
- secretRef:
- name: "261"
+ name: "262"
optional: false
- image: "253"
- imagePullPolicy: -紑浘牬釼aTGÒ鵌
+ prefix: "261"
+ secretRef:
+ name: "263"
+ optional: true
+ image: "255"
+ imagePullPolicy: ×p鬷m罂o3ǰ廋i乳'ȘUɻ;
lifecycle:
postStart:
exec:
command:
- - "300"
+ - "304"
httpGet:
- host: "303"
- httpHeaders:
- - name: "304"
- value: "305"
- path: "301"
- port: "302"
- scheme: ĝ®EĨǔvÄÚ×p鬷
- tcpSocket:
host: "306"
- port: 1673908530
+ httpHeaders:
+ - name: "307"
+ value: "308"
+ path: "305"
+ port: 1190831814
+ scheme: dŊiɢ
+ tcpSocket:
+ host: "309"
+ port: -370404018
preStop:
exec:
command:
- - "307"
+ - "310"
httpGet:
- host: "310"
+ host: "312"
httpHeaders:
- - name: "311"
- value: "312"
- path: "308"
- port: "309"
- scheme: żLj捲攻xƂ9阠$嬏wy¶熀
+ - name: "313"
+ value: "314"
+ path: "311"
+ port: 280878117
+ scheme: ɞȥ}礤铟怖ý萜Ǖ
tcpSocket:
- host: "313"
- port: -1912967242
+ host: "315"
+ port: -1088996269
livenessProbe:
exec:
command:
- - "278"
- failureThreshold: 65094252
+ - "280"
+ failureThreshold: 2112112129
+ gRPC:
+ port: -977348956
+ service: "287"
httpGet:
- host: "281"
+ host: "282"
httpHeaders:
- - name: "282"
- value: "283"
- path: "279"
- port: "280"
- scheme: ɜ瞍阎lğ Ņ#耗Ǚ(
- initialDelaySeconds: -1934305215
- periodSeconds: 875971520
- successThreshold: 161338049
+ - name: "283"
+ value: "284"
+ path: "281"
+ port: 597943993
+ scheme: "8"
+ initialDelaySeconds: -637630736
+ periodSeconds: -1320027474
+ successThreshold: -1750169306
tcpSocket:
- host: "284"
- port: 317211081
- terminationGracePeriodSeconds: -6831592407095063988
- timeoutSeconds: -655359985
- name: "252"
+ host: "286"
+ port: "285"
+ terminationGracePeriodSeconds: 2270336783402505634
+ timeoutSeconds: 601942575
+ name: "254"
ports:
- - containerPort: -1225881740
- hostIP: "258"
- hostPort: -1408385387
- name: "257"
- protocol: 撑¼蠾8餑噭
+ - containerPort: -444561761
+ hostIP: "260"
+ hostPort: -1170565984
+ name: "259"
+ protocol: 5哇芆斩ìh4ɊHȖ|ʐş
readinessProbe:
exec:
command:
- - "285"
- failureThreshold: 404234347
+ - "288"
+ failureThreshold: 2073630689
+ gRPC:
+ port: 626243488
+ service: "295"
httpGet:
- host: "287"
+ host: "290"
httpHeaders:
- - name: "288"
- value: "289"
- path: "286"
- port: -2126891601
- scheme: l}Ñ蠂Ü[ƛ^輅9ɛ棕
- initialDelaySeconds: 1660454722
- periodSeconds: -1347045470
- successThreshold: 1169580662
+ - name: "291"
+ value: "292"
+ path: "289"
+ port: -239264629
+ scheme: ɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ
+ initialDelaySeconds: -1920304485
+ periodSeconds: 1424401373
+ successThreshold: -531787516
tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: 8560122250231719622
- timeoutSeconds: -1317234078
+ host: "294"
+ port: "293"
+ terminationGracePeriodSeconds: -3568583337361453338
+ timeoutSeconds: -1842062977
resources:
limits:
- n(fǂǢ曣ŋayåe躒訙Ǫ: "12"
+ 丽饾| 鞤ɱď: "590"
requests:
- (娕uE增猍: "264"
+ 噭DµņP)DŽ髐njʉBn(f: "584"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - Nh×DJɶ羹ƞʓ%ʝ`ǭ
+ - 桉桃喕蠲$ɛ溢臜裡×
drop:
- - ñ?卶滿筇ȟP:/a
- privileged: false
- procMount: ð仁Q橱9ij\Ď愝Ű藛b磾sY
- readOnlyRootFilesystem: true
- runAsGroup: 5797412715505520759
+ - -紑浘牬釼aTGÒ鵌
+ privileged: true
+ procMount: ʓ%ʝ`ǭ躌ñ?卶滿筇ȟP:/
+ readOnlyRootFilesystem: false
+ runAsGroup: 296399212346260204
runAsNonRoot: false
- runAsUser: 308757565294839546
+ runAsUser: -3539084410583519556
seLinuxOptions:
- level: "318"
- role: "316"
- type: "317"
- user: "315"
+ level: "320"
+ role: "318"
+ type: "319"
+ user: "317"
seccompProfile:
- localhostProfile: "322"
- type: 繽敮ǰ詀ǿ忀oɎƺ
+ localhostProfile: "324"
+ type: 殆诵H玲鑠ĭ$#卛8ð仁Q
windowsOptions:
- gmsaCredentialSpec: "320"
- gmsaCredentialSpecName: "319"
+ gmsaCredentialSpec: "322"
+ gmsaCredentialSpecName: "321"
hostProcess: false
- runAsUserName: "321"
+ runAsUserName: "323"
startupProbe:
exec:
command:
- - "292"
- failureThreshold: 1419787816
+ - "296"
+ failureThreshold: 1660454722
+ gRPC:
+ port: 413903479
+ service: "303"
httpGet:
- host: "295"
+ host: "298"
httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: ǚŜEuEy竬ʆɞ
- initialDelaySeconds: 336252010
- periodSeconds: 930785927
- successThreshold: 1624098740
+ - name: "299"
+ value: "300"
+ path: "297"
+ port: -894026356
+ scheme: 繐汚磉反-n覦
+ initialDelaySeconds: 1708236944
+ periodSeconds: 1961354355
+ successThreshold: -1977635123
tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -506227444233847191
- timeoutSeconds: 677650619
- terminationMessagePath: "314"
- terminationMessagePolicy: 漤ŗ坟
- tty: true
+ host: "302"
+ port: "301"
+ terminationGracePeriodSeconds: -5657477284668711794
+ timeoutSeconds: -1192140557
+ stdinOnce: true
+ terminationMessagePath: "316"
+ terminationMessagePolicy: ƘƵŧ1ƟƓ宆!
volumeDevices:
- - devicePath: "277"
- name: "276"
+ - devicePath: "279"
+ name: "278"
volumeMounts:
- - mountPath: "273"
- mountPropagation: irȎ3Ĕ\ɢX鰨松
- name: "272"
- subPath: "274"
- subPathExpr: "275"
- workingDir: "256"
+ - mountPath: "275"
+ mountPropagation: 鑳w妕眵笭/9崍h趭
+ name: "274"
+ readOnly: true
+ subPath: "276"
+ subPathExpr: "277"
+ workingDir: "258"
dnsConfig:
nameservers:
- - "483"
- options:
- - name: "485"
- value: "486"
- searches:
- "484"
- dnsPolicy: 厶s
+ options:
+ - name: "486"
+ value: "487"
+ searches:
+ - "485"
+ dnsPolicy: ȩ愉B
enableServiceLinks: false
ephemeralContainers:
- args:
- - "326"
+ - "328"
command:
- - "325"
+ - "327"
env:
- - name: "333"
- value: "334"
+ - name: "335"
+ value: "336"
valueFrom:
configMapKeyRef:
- key: "340"
- name: "339"
- optional: true
- fieldRef:
- apiVersion: "335"
- fieldPath: "336"
- resourceFieldRef:
- containerName: "337"
- divisor: "971"
- resource: "338"
- secretKeyRef:
key: "342"
name: "341"
optional: true
+ fieldRef:
+ apiVersion: "337"
+ fieldPath: "338"
+ resourceFieldRef:
+ containerName: "339"
+ divisor: "121"
+ resource: "340"
+ secretKeyRef:
+ key: "344"
+ name: "343"
+ optional: false
envFrom:
- configMapRef:
- name: "331"
- optional: true
- prefix: "330"
- secretRef:
- name: "332"
+ name: "333"
optional: false
- image: "324"
- imagePullPolicy: '#t(ȗŜŲ&洪y儕l'
+ prefix: "332"
+ secretRef:
+ name: "334"
+ optional: true
+ image: "326"
lifecycle:
postStart:
exec:
command:
- - "371"
+ - "373"
httpGet:
- host: "374"
+ host: "375"
httpHeaders:
- - name: "375"
- value: "376"
- path: "372"
- port: "373"
- scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
+ - name: "376"
+ value: "377"
+ path: "374"
+ port: 1762917570
+ scheme: Ų買霎ȃň[>ą
tcpSocket:
host: "378"
- port: "377"
+ port: 1414336865
preStop:
exec:
command:
@@ -427,135 +443,142 @@ spec:
- name: "382"
value: "383"
path: "380"
- port: -1743587482
+ port: 1129006716
+ scheme: ȱɷȰW瀤oɢ嫎¸殚篎3
tcpSocket:
- host: "384"
- port: 858034123
+ host: "385"
+ port: "384"
livenessProbe:
exec:
command:
- - "349"
- failureThreshold: -2033879721
+ - "351"
+ failureThreshold: 1776174141
+ gRPC:
+ port: -839925309
+ service: "357"
httpGet:
- host: "352"
+ host: "353"
httpHeaders:
- - name: "353"
- value: "354"
- path: "350"
- port: "351"
- scheme: 07曳wœj堑ūM鈱ɖ'蠨
- initialDelaySeconds: -242798806
- periodSeconds: 681004793
- successThreshold: 2002666266
+ - name: "354"
+ value: "355"
+ path: "352"
+ port: -592535081
+ scheme: fsǕT
+ initialDelaySeconds: -526099499
+ periodSeconds: 1708011112
+ successThreshold: -603097910
tcpSocket:
host: "356"
- port: "355"
- terminationGracePeriodSeconds: -4409241678312226730
- timeoutSeconds: -1940800545
- name: "323"
+ port: -394464008
+ terminationGracePeriodSeconds: -5794598592563963676
+ timeoutSeconds: -1014296961
+ name: "325"
ports:
- - containerPort: -557687916
- hostIP: "329"
- hostPort: 788093377
- name: "328"
- protocol: _敕
+ - containerPort: 2004993767
+ hostIP: "331"
+ hostPort: -846940406
+ name: "330"
+ protocol: Ű藛b磾sYȠ繽敮ǰ
readinessProbe:
exec:
command:
- - "357"
- failureThreshold: -2122876628
+ - "358"
+ failureThreshold: 1019901190
+ gRPC:
+ port: 701103233
+ service: "364"
httpGet:
- host: "359"
+ host: "360"
httpHeaders:
- - name: "360"
- value: "361"
- path: "358"
- port: 279062028
- scheme: Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p
- initialDelaySeconds: 725557531
- periodSeconds: 741667779
- successThreshold: -381344241
+ - name: "361"
+ value: "362"
+ path: "359"
+ port: 134832144
+ scheme: Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍
+ initialDelaySeconds: 1995848794
+ periodSeconds: -372626292
+ successThreshold: 2018111855
tcpSocket:
- host: "362"
- port: -943058206
- terminationGracePeriodSeconds: 2700145646260085226
- timeoutSeconds: -703127031
+ host: "363"
+ port: -1289510276
+ terminationGracePeriodSeconds: -6980960365540477247
+ timeoutSeconds: -281926929
resources:
limits:
- 湷D谹気Ƀ秮òƬɸĻo:{: "523"
+ $矐_敕ű嵞嬯t{Eɾ敹Ȯ-: "642"
requests:
- 赮ǒđ>*劶?jĎĭ¥#ƱÁR»: "929"
+ 蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx: "77"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - ɻŶJ詢
+ - rƈa餖Ľ
drop:
- - ǾɁ鍻G鯇ɀ魒Ð扬=惍E
- privileged: false
- procMount: ;Ƭ婦d%蹶/ʗp壥Ƥ
- readOnlyRootFilesystem: false
- runAsGroup: -2841141127223294729
- runAsNonRoot: false
- runAsUser: -5071790362153704411
+ - 淴ɑ?¶Ȳ
+ privileged: true
+ procMount: œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ
+ readOnlyRootFilesystem: true
+ runAsGroup: 8544841476815986834
+ runAsNonRoot: true
+ runAsUser: 5200080507234099655
seLinuxOptions:
- level: "389"
- role: "387"
- type: "388"
- user: "386"
+ level: "390"
+ role: "388"
+ type: "389"
+ user: "387"
seccompProfile:
- localhostProfile: "393"
- type: 郡ɑ鮽ǍJB膾扉A1襏櫯³
+ localhostProfile: "394"
+ type: 'ʫį淓¯Ą0ƛ忀z委>,趐V曡88 '
windowsOptions:
- gmsaCredentialSpec: "391"
- gmsaCredentialSpecName: "390"
- hostProcess: false
- runAsUserName: "392"
+ gmsaCredentialSpec: "392"
+ gmsaCredentialSpecName: "391"
+ hostProcess: true
+ runAsUserName: "393"
startupProbe:
exec:
command:
- - "363"
- failureThreshold: 1762917570
+ - "365"
+ failureThreshold: -1289875111
+ gRPC:
+ port: 1782790310
+ service: "372"
httpGet:
- host: "366"
+ host: "368"
httpHeaders:
- - name: "367"
- value: "368"
- path: "364"
- port: "365"
- scheme: thp像-
- initialDelaySeconds: 1589417286
- periodSeconds: 1874051321
- successThreshold: -500012714
+ - name: "369"
+ value: "370"
+ path: "366"
+ port: "367"
+ scheme: p蓋沥7uPƒw©ɴ
+ initialDelaySeconds: 1587036035
+ periodSeconds: -59501664
+ successThreshold: 1261462387
tcpSocket:
- host: "370"
- port: "369"
- terminationGracePeriodSeconds: 4794571970514469019
- timeoutSeconds: 445878206
+ host: "371"
+ port: -671265235
+ terminationGracePeriodSeconds: -7492770647593151162
+ timeoutSeconds: 1760208172
stdinOnce: true
- targetContainerName: "394"
- terminationMessagePath: "385"
- terminationMessagePolicy: 喾@潷
+ targetContainerName: "395"
+ terminationMessagePath: "386"
+ terminationMessagePolicy: '[y#t('
volumeDevices:
- - devicePath: "348"
- name: "347"
+ - devicePath: "350"
+ name: "349"
volumeMounts:
- - mountPath: "344"
- mountPropagation: '|ǓÓ敆OɈÏ 瞍髃'
- name: "343"
- readOnly: true
- subPath: "345"
- subPathExpr: "346"
- workingDir: "327"
+ - mountPath: "346"
+ mountPropagation: ¬h`職铳s44矕Ƈè*鑏='ʨ|
+ name: "345"
+ subPath: "347"
+ subPathExpr: "348"
+ workingDir: "329"
hostAliases:
- hostnames:
- - "481"
- ip: "480"
- hostIPC: true
- hostPID: true
- hostname: "411"
+ - "482"
+ ip: "481"
+ hostname: "412"
imagePullSecrets:
- - name: "410"
+ - name: "411"
initContainers:
- args:
- "184"
@@ -589,43 +612,46 @@ spec:
name: "190"
optional: false
image: "182"
- imagePullPolicy: '{屿oiɥ嵐sC8?Ǻ'
+ imagePullPolicy: ɐ鰥
lifecycle:
postStart:
exec:
command:
- - "228"
+ - "232"
httpGet:
- host: "231"
- httpHeaders:
- - name: "232"
- value: "233"
- path: "229"
- port: "230"
- scheme: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
- tcpSocket:
host: "234"
- port: 1993268896
+ httpHeaders:
+ - name: "235"
+ value: "236"
+ path: "233"
+ port: 1328165061
+ scheme: ¸gĩ
+ tcpSocket:
+ host: "237"
+ port: 1186392166
preStop:
exec:
command:
- - "235"
+ - "238"
httpGet:
- host: "238"
+ host: "240"
httpHeaders:
- - name: "239"
- value: "240"
- path: "236"
- port: "237"
- scheme: 'ƿ頀"冓鍓贯澔 '
+ - name: "241"
+ value: "242"
+ path: "239"
+ port: -1315487077
+ scheme: ğ_
tcpSocket:
- host: "242"
- port: "241"
+ host: "244"
+ port: "243"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -552281772
+ failureThreshold: -1666819085
+ gRPC:
+ port: -614161319
+ service: "214"
httpGet:
host: "210"
httpHeaders:
@@ -634,14 +660,14 @@ spec:
path: "208"
port: "209"
scheme: u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ
- initialDelaySeconds: -1246371817
- periodSeconds: 432291364
- successThreshold: 676578360
+ initialDelaySeconds: 452673549
+ periodSeconds: -125932767
+ successThreshold: -18758819
tcpSocket:
host: "213"
port: 1714588921
- terminationGracePeriodSeconds: -2910346974754087949
- timeoutSeconds: 617318981
+ terminationGracePeriodSeconds: -1212012606981050727
+ timeoutSeconds: 627670321
name: "181"
ports:
- containerPort: -1252938503
@@ -652,23 +678,27 @@ spec:
readinessProbe:
exec:
command:
- - "214"
- failureThreshold: 2056774277
+ - "215"
+ failureThreshold: -736151561
+ gRPC:
+ port: -760292259
+ service: "222"
httpGet:
- host: "216"
+ host: "218"
httpHeaders:
- - name: "217"
- value: "218"
- path: "215"
- port: 656200799
- initialDelaySeconds: -2165496
- periodSeconds: 1386255869
- successThreshold: -778272981
+ - name: "219"
+ value: "220"
+ path: "216"
+ port: "217"
+ scheme: '&皥贸碔lNKƙ順\E¦队偯'
+ initialDelaySeconds: -1164530482
+ periodSeconds: 1430286749
+ successThreshold: -374766088
tcpSocket:
- host: "220"
- port: "219"
- terminationGracePeriodSeconds: -9219895030215397584
- timeoutSeconds: -1778952574
+ host: "221"
+ port: -316996074
+ terminationGracePeriodSeconds: -6508463748290235837
+ timeoutSeconds: 1877574041
resources:
limits:
LĹ]佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊: "807"
@@ -678,51 +708,57 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - ;Nŕ璻Jih亏yƕ丆録²Ŏ
+ - ´DÒȗÔÂɘɢ鬍熖B芭花ª瘡
drop:
- - /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫
- privileged: true
- procMount: šeSvEȤƏ埮pɵ{WOŭW灬pȭ
+ - J
+ privileged: false
+ procMount: nj汰8ŕİi騎C"6x$1sȣ±p
readOnlyRootFilesystem: true
- runAsGroup: 6453802934472477147
+ runAsGroup: -8859267173741137425
runAsNonRoot: true
- runAsUser: 4041264710404335706
+ runAsUser: 8519266600558609398
seLinuxOptions:
- level: "247"
- role: "245"
- type: "246"
- user: "244"
+ level: "249"
+ role: "247"
+ type: "248"
+ user: "246"
seccompProfile:
- localhostProfile: "251"
- type: V擭銆j
+ localhostProfile: "253"
+ type: ""
windowsOptions:
- gmsaCredentialSpec: "249"
- gmsaCredentialSpecName: "248"
+ gmsaCredentialSpec: "251"
+ gmsaCredentialSpecName: "250"
hostProcess: true
- runAsUserName: "250"
+ runAsUserName: "252"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: -1137436579
+ - "223"
+ failureThreshold: 1156888068
+ gRPC:
+ port: -1984097455
+ service: "231"
httpGet:
- host: "224"
+ host: "226"
httpHeaders:
- - name: "225"
- value: "226"
- path: "222"
- port: "223"
- scheme: 鬶l獕;跣Hǝcw
- initialDelaySeconds: -736151561
- periodSeconds: -1856061695
- successThreshold: 1868683352
+ - name: "227"
+ value: "228"
+ path: "224"
+ port: "225"
+ scheme: 颶妧Ö闊
+ initialDelaySeconds: -253326525
+ periodSeconds: 887319241
+ successThreshold: 1559618829
tcpSocket:
- host: "227"
- port: -374766088
- terminationGracePeriodSeconds: 8876559635423161004
- timeoutSeconds: -1515369804
- terminationMessagePath: "243"
- terminationMessagePolicy: 6Ɖ飴ɎiǨź'
+ host: "230"
+ port: "229"
+ terminationGracePeriodSeconds: -5566612115749133989
+ timeoutSeconds: 567263590
+ stdin: true
+ stdinOnce: true
+ terminationMessagePath: "245"
+ terminationMessagePolicy: ëJ橈'琕鶫:顇ə娯Ȱ囌
+ tty: true
volumeDevices:
- devicePath: "206"
name: "205"
@@ -733,68 +769,67 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "399"
+ nodeName: "400"
nodeSelector:
- "395": "396"
+ "396": "397"
os:
- name: Ê
+ name: '%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ'
overhead:
- 隅DžbİEMǶɼ`|褞: "229"
- preemptionPolicy: n{鳻
- priority: -340583156
- priorityClassName: "482"
+ ʬÇ[輚趞ț@: "597"
+ preemptionPolicy: '%ǁšjƾ$ʛ螳%65c3盧Ŷb'
+ priority: -1371816595
+ priorityClassName: "483"
readinessGates:
- - conditionType: țc£PAÎǨȨ栋
- restartPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉
- runtimeClassName: "487"
- schedulerName: "477"
+ - conditionType: ?ȣ4c
+ restartPolicy: 荊ù灹8緔Tj§E蓋
+ runtimeClassName: "488"
+ schedulerName: "478"
securityContext:
- fsGroup: 4301352137345790658
- fsGroupChangePolicy: 柱栦阫Ƈʥ椹
- runAsGroup: -2037509302018919599
+ fsGroup: -640858663485353963
+ fsGroupChangePolicy: 氙'[>ĵ'o儿
+ runAsGroup: 3044211288080348140
runAsNonRoot: true
- runAsUser: -3184085461588437523
+ runAsUser: 231646691853926712
seLinuxOptions:
- level: "403"
- role: "401"
- type: "402"
- user: "400"
+ level: "404"
+ role: "402"
+ type: "403"
+ user: "401"
seccompProfile:
- localhostProfile: "409"
- type: 飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i
+ localhostProfile: "410"
+ type: 銭u裡_Ơ9o
supplementalGroups:
- - -885564056413671854
+ - 7168071284072373028
sysctls:
- - name: "407"
- value: "408"
+ - name: "408"
+ value: "409"
windowsOptions:
- gmsaCredentialSpec: "405"
- gmsaCredentialSpecName: "404"
- hostProcess: true
- runAsUserName: "406"
- serviceAccount: "398"
- serviceAccountName: "397"
+ gmsaCredentialSpec: "406"
+ gmsaCredentialSpecName: "405"
+ hostProcess: false
+ runAsUserName: "407"
+ serviceAccount: "399"
+ serviceAccountName: "398"
setHostnameAsFQDN: false
- shareProcessNamespace: true
- subdomain: "412"
- terminationGracePeriodSeconds: -1390311149947249535
+ shareProcessNamespace: false
+ subdomain: "413"
+ terminationGracePeriodSeconds: -2019276087967685705
tolerations:
- - key: "478"
- operator: ŭʔb'?舍ȃʥx臥]å摞
- tolerationSeconds: 3053978290188957517
- value: "479"
+ - effect: r埁摢噓涫祲ŗȨĽ堐mpƮ搌
+ key: "479"
+ operator: Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏
+ tolerationSeconds: 6217170132371410053
+ value: "480"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
- operator: NotIn
- values:
- - H1z..j_.r3--T
+ - key: kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V
+ operator: Exists
matchLabels:
- H_55..--E3_2D-1DW__o_-.k: "7"
- maxSkew: 1486667065
- topologyKey: "488"
- whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
+ 5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w: j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7
+ maxSkew: 1762898358
+ topologyKey: "489"
+ whenUnsatisfiable: ʚʛ&]ŶɄğɒơ舎
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1055,20 +1090,20 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
+ type: ʟ]mʦ獪霛圦Ƶ胐N砽§
status:
- collisionCount: 619959999
+ collisionCount: -230316059
conditions:
- - lastTransitionTime: "2821-04-08T08:07:20Z"
- message: "496"
- reason: "495"
- status: 9=ȳB鼲糰Eè6苁嗀ĕ佣
- type: ¹bCũw¼ ǫđ槴Ċį軠>桼劑躮
- currentNumberScheduled: -1556190810
- desiredNumberScheduled: 929611261
- numberAvailable: 1731921624
- numberMisscheduled: -487001726
- numberReady: -1728725476
- numberUnavailable: 826023875
- observedGeneration: -6594742865080720976
- updatedNumberScheduled: -1612961101
+ - lastTransitionTime: "2825-03-21T02:40:56Z"
+ message: "497"
+ reason: "496"
+ status: ɘʘ?s檣ŝƚʤ<Ɵʚ`÷
+ type: Ƙȑ
+ currentNumberScheduled: -1039302739
+ desiredNumberScheduled: -1429991698
+ numberAvailable: -1402277158
+ numberMisscheduled: -89689385
+ numberReady: 428205654
+ numberUnavailable: -1513836046
+ observedGeneration: -7167127345249609151
+ updatedNumberScheduled: -1647164053
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json
index ae72560b878..0dbce0940de 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,39 +1573,38 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"strategy": {
- "type": "Ýɹ橽ƴåj}c殶ėŔ裑烴\u003c暉Ŝ!",
+ "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -779806398,
- "revisionHistoryLimit": 440570496,
- "paused": true,
- "progressDeadlineSeconds": 1952245732
+ "minReadySeconds": -463159422,
+ "revisionHistoryLimit": -855944448,
+ "progressDeadlineSeconds": -487001726
},
"status": {
- "observedGeneration": 3465735415490749292,
- "replicas": 1535734699,
- "updatedReplicas": 1969397344,
- "readyReplicas": 1117243224,
- "availableReplicas": 1150861753,
- "unavailableReplicas": -750110452,
+ "observedGeneration": -430213889424572931,
+ "replicas": -1728725476,
+ "updatedReplicas": -36544080,
+ "readyReplicas": -1612961101,
+ "availableReplicas": 1731921624,
+ "unavailableReplicas": 826023875,
"conditions": [
{
- "type": "妽4LM桵Ţ宧ʜ",
- "status": "ŲNªǕt谍Ã\u0026榠塹",
- "lastUpdateTime": "2128-12-14T03:53:25Z",
- "lastTransitionTime": "2463-06-07T06:21:23Z",
- "reason": "491",
- "message": "492"
+ "type": "¦褅桃|薝Țµʍ^鼑:$Ǿ觇ƒ",
+ "status": "桼劑躮ǿȦU锭ǭ舒",
+ "lastUpdateTime": "2294-08-28T16:58:10Z",
+ "lastTransitionTime": "2140-08-23T12:38:52Z",
+ "reason": "503",
+ "message": "504"
}
],
- "collisionCount": 407647568
+ "collisionCount": 275578828
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb
index 884023eae37..a30c6f329f1 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml
index 895fdf5c7fb..37d25e707f1 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.Deployment.yaml
@@ -31,11 +31,10 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -779806398
- paused: true
- progressDeadlineSeconds: 1952245732
+ minReadySeconds: -463159422
+ progressDeadlineSeconds: -487001726
replicas: 896585016
- revisionHistoryLimit: 440570496
+ revisionHistoryLimit: -855944448
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@@ -46,7 +45,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: Ýɹ橽ƴåj}c殶ėŔ裑烴<暉Ŝ!
+ type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
template:
metadata:
annotations:
@@ -79,490 +78,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -640,14 +661,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -658,24 +679,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -685,52 +709,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -742,69 +769,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1064,17 +1090,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 1150861753
- collisionCount: 407647568
+ availableReplicas: 1731921624
+ collisionCount: 275578828
conditions:
- - lastTransitionTime: "2463-06-07T06:21:23Z"
- lastUpdateTime: "2128-12-14T03:53:25Z"
- message: "492"
- reason: "491"
- status: ŲNªǕt谍Ã&榠塹
- type: 妽4LM桵Ţ宧ʜ
- observedGeneration: 3465735415490749292
- readyReplicas: 1117243224
- replicas: 1535734699
- unavailableReplicas: -750110452
- updatedReplicas: 1969397344
+ - lastTransitionTime: "2140-08-23T12:38:52Z"
+ lastUpdateTime: "2294-08-28T16:58:10Z"
+ message: "504"
+ reason: "503"
+ status: 桼劑躮ǿȦU锭ǭ舒
+ type: ¦褅桃|薝Țµʍ^鼑:$Ǿ觇ƒ
+ observedGeneration: -430213889424572931
+ readyReplicas: -1612961101
+ replicas: -1728725476
+ unavailableReplicas: 826023875
+ updatedReplicas: -36544080
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json
index 0e23cd69c6e..96bc07802e2 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.json
@@ -558,24 +558,28 @@
"port": -187060941,
"host": "212"
},
- "initialDelaySeconds": -442393168,
- "timeoutSeconds": -307373517,
- "periodSeconds": 1109079597,
- "successThreshold": -646728130,
- "failureThreshold": 1684643131,
- "terminationGracePeriodSeconds": 5055443896475056676
+ "gRPC": {
+ "port": 1507815593,
+ "service": "213"
+ },
+ "initialDelaySeconds": 1498833271,
+ "timeoutSeconds": 1505082076,
+ "periodSeconds": 1447898632,
+ "successThreshold": 1602745893,
+ "failureThreshold": 1599076900,
+ "terminationGracePeriodSeconds": -8249176398367452506
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": 963670270,
"host": "216",
- "scheme": "惇¸t颟.鵫ǚ灄鸫rʤî萨",
+ "scheme": "ɘȌ脾嚏吐ĠLƐȤ藠3.v",
"httpHeaders": [
{
"name": "217",
@@ -587,336 +591,330 @@
"port": "219",
"host": "220"
},
- "initialDelaySeconds": 1885896895,
- "timeoutSeconds": -1232888129,
- "periodSeconds": -1682044542,
- "successThreshold": 1182477686,
- "failureThreshold": -503805926,
- "terminationGracePeriodSeconds": 332054723335023688
+ "gRPC": {
+ "port": 1182477686,
+ "service": "221"
+ },
+ "initialDelaySeconds": -503805926,
+ "timeoutSeconds": 77312514,
+ "periodSeconds": -763687725,
+ "successThreshold": -246563990,
+ "failureThreshold": 10098903,
+ "terminationGracePeriodSeconds": 4704090421576984895
},
"startupProbe": {
"exec": {
"command": [
- "221"
+ "222"
]
},
"httpGet": {
- "path": "222",
- "port": "223",
- "host": "224",
- "scheme": "«丯Ƙ枛牐ɺ皚",
+ "path": "223",
+ "port": "224",
+ "host": "225",
+ "scheme": "牐ɺ皚|懥",
"httpHeaders": [
{
- "name": "225",
- "value": "226"
+ "name": "226",
+ "value": "227"
}
]
},
"tcpSocket": {
- "port": -1934111455,
- "host": "227"
+ "port": "228",
+ "host": "229"
},
- "initialDelaySeconds": 766864314,
- "timeoutSeconds": 1146016612,
- "periodSeconds": 1495880465,
- "successThreshold": -1032967081,
- "failureThreshold": 59664438,
- "terminationGracePeriodSeconds": 4116652091516790056
+ "gRPC": {
+ "port": 593802074,
+ "service": "230"
+ },
+ "initialDelaySeconds": 538852927,
+ "timeoutSeconds": -407545915,
+ "periodSeconds": 902535764,
+ "successThreshold": 716842280,
+ "failureThreshold": 1479266199,
+ "terminationGracePeriodSeconds": 702282827459446622
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "228"
+ "231"
]
},
"httpGet": {
- "path": "229",
- "port": -1196874390,
- "host": "230",
- "scheme": "S晒嶗UÐ_ƮA攤",
+ "path": "232",
+ "port": 1883209805,
+ "host": "233",
+ "scheme": "ɓȌʟni酛3ƁÀ*",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "234",
+ "value": "235"
}
]
},
"tcpSocket": {
- "port": -498930176,
- "host": "233"
+ "port": "236",
+ "host": "237"
}
},
"preStop": {
"exec": {
"command": [
- "234"
+ "238"
]
},
"httpGet": {
- "path": "235",
- "port": "236",
- "host": "237",
- "scheme": "鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡",
+ "path": "239",
+ "port": "240",
+ "host": "241",
+ "scheme": "fBls3!Zɾģ毋Ó6",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "242",
+ "value": "243"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": -832805508,
+ "host": "244"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "?$矡ȶ网棊ʢ",
- "imagePullPolicy": "ʎȺ眖R#",
+ "terminationMessagePath": "245",
+ "terminationMessagePolicy": "庎D}埽uʎȺ眖R#yV'WKw(ğ儴",
+ "imagePullPolicy": "跦Opwǩ曬逴褜1",
"securityContext": {
"capabilities": {
"add": [
- "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ"
+ "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]"
],
"drop": [
- ""
+ "¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "246",
+ "role": "247",
+ "type": "248",
+ "level": "249"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
+ "gmsaCredentialSpecName": "250",
+ "gmsaCredentialSpec": "251",
+ "runAsUserName": "252",
"hostProcess": false
},
- "runAsUser": -2529737859863639391,
- "runAsGroup": 7694930383795602762,
+ "runAsUser": 2185575187737222181,
+ "runAsGroup": 3811348330690808371,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "\u003e郵[+扴ȨŮ",
+ "allowPrivilegeEscalation": false,
+ "procMount": " 苧yñKJɐ",
"seccompProfile": {
- "type": "朷Ǝ膯ljVX1虊谇",
- "localhostProfile": "250"
+ "type": "Gƚ绤fʀļ腩墺Ò媁荭gw",
+ "localhostProfile": "253"
}
},
- "stdin": true,
- "tty": true
+ "stdinOnce": true
}
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "254",
+ "image": "255",
"command": [
- "253"
+ "256"
],
"args": [
- "254"
+ "257"
],
- "workingDir": "255",
+ "workingDir": "258",
"ports": [
{
- "name": "256",
- "hostPort": 1381579966,
- "containerPort": -1418092595,
- "protocol": "闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x",
- "hostIP": "257"
+ "name": "259",
+ "hostPort": -1532958330,
+ "containerPort": -438588982,
+ "protocol": "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥",
+ "hostIP": "260"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "261",
"configMapRef": {
- "name": "259",
- "optional": true
+ "name": "262",
+ "optional": false
},
"secretRef": {
- "name": "260",
- "optional": true
+ "name": "263",
+ "optional": false
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "264",
+ "value": "265",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "266",
+ "fieldPath": "267"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "894"
+ "containerName": "268",
+ "resource": "269",
+ "divisor": "801"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
- "optional": true
+ "name": "270",
+ "key": "271",
+ "optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
- "optional": false
+ "name": "272",
+ "key": "273",
+ "optional": true
}
}
}
],
"resources": {
"limits": {
- "W\u003c敄lu|榝$î.Ȏ": "546"
+ "队偯J僳徥淳4揻": "175"
},
"requests": {
- "剒蔞|表": "379"
+ "": "170"
}
},
"volumeMounts": [
{
- "name": "271",
- "readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "朦 wƯ貾坢'跩",
- "subPathExpr": "274"
+ "name": "274",
+ "mountPath": "275",
+ "subPath": "276",
+ "mountPropagation": "×x锏ɟ4Ǒ",
+ "subPathExpr": "277"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "278",
+ "devicePath": "279"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "280"
]
},
"httpGet": {
- "path": "278",
- "port": -1471289102,
- "host": "279",
- "scheme": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳",
+ "path": "281",
+ "port": "282",
+ "host": "283",
+ "scheme": "澝qV訆Ǝżŧ",
"httpHeaders": [
{
- "name": "280",
- "value": "281"
+ "name": "284",
+ "value": "285"
}
]
},
"tcpSocket": {
- "port": 113873869,
- "host": "282"
+ "port": 204229950,
+ "host": "286"
},
- "initialDelaySeconds": -1421951296,
- "timeoutSeconds": 878005329,
- "periodSeconds": -1244119841,
- "successThreshold": 1235694147,
- "failureThreshold": 348370746,
- "terminationGracePeriodSeconds": 2011630253582325853
+ "gRPC": {
+ "port": 1315054653,
+ "service": "287"
+ },
+ "initialDelaySeconds": 711020087,
+ "timeoutSeconds": 1103049140,
+ "periodSeconds": -1965247100,
+ "successThreshold": 218453478,
+ "failureThreshold": 1993268896,
+ "terminationGracePeriodSeconds": -9140155223242250138
},
"readinessProbe": {
"exec": {
"command": [
- "283"
+ "288"
]
},
"httpGet": {
- "path": "284",
- "port": 1907998540,
- "host": "285",
- "scheme": ",ŕ",
+ "path": "289",
+ "port": -1315487077,
+ "host": "290",
+ "scheme": "ğ_",
"httpHeaders": [
{
- "name": "286",
- "value": "287"
+ "name": "291",
+ "value": "292"
}
]
},
"tcpSocket": {
- "port": "288",
- "host": "289"
+ "port": "293",
+ "host": "294"
},
- "initialDelaySeconds": -253326525,
- "timeoutSeconds": 567263590,
- "periodSeconds": 887319241,
- "successThreshold": 1559618829,
- "failureThreshold": 1156888068,
- "terminationGracePeriodSeconds": -5566612115749133989
+ "gRPC": {
+ "port": 972193458,
+ "service": "295"
+ },
+ "initialDelaySeconds": 1290950685,
+ "timeoutSeconds": 12533543,
+ "periodSeconds": 1058960779,
+ "successThreshold": -2133441986,
+ "failureThreshold": 472742933,
+ "terminationGracePeriodSeconds": 217739466937954194
},
"startupProbe": {
"exec": {
"command": [
- "290"
+ "296"
]
},
"httpGet": {
- "path": "291",
- "port": 1315054653,
- "host": "292",
- "scheme": "蚃ɣľ)酊龨δ摖ȱ",
+ "path": "297",
+ "port": 1401790459,
+ "host": "298",
+ "scheme": "ǵɐ鰥Z",
"httpHeaders": [
{
- "name": "293",
- "value": "294"
+ "name": "299",
+ "value": "300"
}
]
},
"tcpSocket": {
- "port": "295",
- "host": "296"
+ "port": -1103045151,
+ "host": "301"
},
- "initialDelaySeconds": 1905181464,
- "timeoutSeconds": -1730959016,
- "periodSeconds": 1272940694,
- "successThreshold": -385597677,
- "failureThreshold": 422133388,
- "terminationGracePeriodSeconds": 8385745044578923915
+ "gRPC": {
+ "port": 311083651,
+ "service": "302"
+ },
+ "initialDelaySeconds": 353361793,
+ "timeoutSeconds": -2081447068,
+ "periodSeconds": -708413798,
+ "successThreshold": -898536659,
+ "failureThreshold": -1513284745,
+ "terminationGracePeriodSeconds": 5404658974498114041
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "297"
+ "303"
]
},
"httpGet": {
- "path": "298",
- "port": "299",
- "host": "300",
- "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ",
- "httpHeaders": [
- {
- "name": "301",
- "value": "302"
- }
- ]
- },
- "tcpSocket": {
- "port": 802134138,
- "host": "303"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "304"
- ]
- },
- "httpGet": {
- "path": "305",
- "port": -126958936,
+ "path": "304",
+ "port": "305",
"host": "306",
- "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻",
"httpHeaders": [
{
"name": "307",
@@ -925,104 +923,130 @@
]
},
"tcpSocket": {
- "port": "309",
- "host": "310"
+ "port": 323903711,
+ "host": "309"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "310"
+ ]
+ },
+ "httpGet": {
+ "path": "311",
+ "port": "312",
+ "host": "313",
+ "scheme": "丆",
+ "httpHeaders": [
+ {
+ "name": "314",
+ "value": "315"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "316",
+ "host": "317"
}
}
},
- "terminationMessagePath": "311",
- "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS",
- "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮",
+ "terminationMessagePath": "318",
+ "terminationMessagePolicy": "Ŏ)/灩聋3趐囨鏻砅邻",
+ "imagePullPolicy": "騎C\"6x$1sȣ±p鋄",
"securityContext": {
"capabilities": {
"add": [
- "嘢4ʗN,丽饾| 鞤ɱďW賁"
+ "ȹ均i绝5哇芆斩ìh4Ɋ"
],
"drop": [
- "ɭɪǹ0衷,"
+ "Ȗ|ʐşƧ諔迮ƙIJ嘢4"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "312",
- "role": "313",
- "type": "314",
- "level": "315"
+ "user": "319",
+ "role": "320",
+ "type": "321",
+ "level": "322"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "316",
- "gmsaCredentialSpec": "317",
- "runAsUserName": "318",
- "hostProcess": true
+ "gmsaCredentialSpecName": "323",
+ "gmsaCredentialSpec": "324",
+ "runAsUserName": "325",
+ "hostProcess": false
},
- "runAsUser": -1119183212148951030,
- "runAsGroup": -7146044409185304665,
+ "runAsUser": -7936947433725476327,
+ "runAsGroup": -5712715102324619404,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
+ "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
- "procMount": "w妕眵笭/9崍h趭(娕",
+ "procMount": "W賁Ěɭɪǹ0",
"seccompProfile": {
- "type": "E增猍",
- "localhostProfile": "319"
+ "type": ",ƷƣMț譎懚XW疪鑳",
+ "localhostProfile": "326"
}
- }
+ },
+ "stdin": true,
+ "stdinOnce": true,
+ "tty": true
}
],
"ephemeralContainers": [
{
- "name": "320",
- "image": "321",
+ "name": "327",
+ "image": "328",
"command": [
- "322"
+ "329"
],
"args": [
- "323"
+ "330"
],
- "workingDir": "324",
+ "workingDir": "331",
"ports": [
{
- "name": "325",
- "hostPort": 601942575,
- "containerPort": -1320027474,
- "protocol": "Ƶf",
- "hostIP": "326"
+ "name": "332",
+ "hostPort": 217308913,
+ "containerPort": 455919108,
+ "protocol": "崍h趭(娕u",
+ "hostIP": "333"
}
],
"envFrom": [
{
- "prefix": "327",
+ "prefix": "334",
"configMapRef": {
- "name": "328",
- "optional": true
+ "name": "335",
+ "optional": false
},
"secretRef": {
- "name": "329",
- "optional": true
+ "name": "336",
+ "optional": false
}
}
],
"env": [
{
- "name": "330",
- "value": "331",
+ "name": "337",
+ "value": "338",
"valueFrom": {
"fieldRef": {
- "apiVersion": "332",
- "fieldPath": "333"
+ "apiVersion": "339",
+ "fieldPath": "340"
},
"resourceFieldRef": {
- "containerName": "334",
- "resource": "335",
- "divisor": "179"
+ "containerName": "341",
+ "resource": "342",
+ "divisor": "360"
},
"configMapKeyRef": {
- "name": "336",
- "key": "337",
+ "name": "343",
+ "key": "344",
"optional": false
},
"secretKeyRef": {
- "name": "338",
- "key": "339",
+ "name": "345",
+ "key": "346",
"optional": false
}
}
@@ -1030,57 +1054,29 @@
],
"resources": {
"limits": {
- "阎l": "464"
+ "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422"
},
"requests": {
- "'佉": "633"
+ "蕎'": "62"
}
},
"volumeMounts": [
{
- "name": "340",
- "mountPath": "341",
- "subPath": "342",
- "mountPropagation": "(ť1ùfŭƽ",
- "subPathExpr": "343"
+ "name": "347",
+ "readOnly": true,
+ "mountPath": "348",
+ "subPath": "349",
+ "mountPropagation": "Ǚ(",
+ "subPathExpr": "350"
}
],
"volumeDevices": [
{
- "name": "344",
- "devicePath": "345"
+ "name": "351",
+ "devicePath": "352"
}
],
"livenessProbe": {
- "exec": {
- "command": [
- "346"
- ]
- },
- "httpGet": {
- "path": "347",
- "port": -684167223,
- "host": "348",
- "scheme": "1b",
- "httpHeaders": [
- {
- "name": "349",
- "value": "350"
- }
- ]
- },
- "tcpSocket": {
- "port": "351",
- "host": "352"
- },
- "initialDelaySeconds": -47594442,
- "timeoutSeconds": -2064284357,
- "periodSeconds": 725624946,
- "successThreshold": -34803208,
- "failureThreshold": -313085430,
- "terminationGracePeriodSeconds": -7686796864837350582
- },
- "readinessProbe": {
"exec": {
"command": [
"353"
@@ -1088,9 +1084,9 @@
},
"httpGet": {
"path": "354",
- "port": 1611386356,
+ "port": -1842062977,
"host": "355",
- "scheme": "ɼ搳ǭ濑箨ʨIk(",
+ "scheme": "輔3璾ėȜv1b繐汚磉反-n覦",
"httpHeaders": [
{
"name": "356",
@@ -1099,185 +1095,227 @@
]
},
"tcpSocket": {
- "port": 2115799218,
- "host": "358"
+ "port": "358",
+ "host": "359"
},
- "initialDelaySeconds": 1984241264,
- "timeoutSeconds": -758033170,
- "periodSeconds": -487434422,
- "successThreshold": -370404018,
- "failureThreshold": -1844150067,
- "terminationGracePeriodSeconds": 1778358283914418699
+ "gRPC": {
+ "port": 413903479,
+ "service": "360"
+ },
+ "initialDelaySeconds": 1708236944,
+ "timeoutSeconds": -1192140557,
+ "periodSeconds": 1961354355,
+ "successThreshold": -1977635123,
+ "failureThreshold": 1660454722,
+ "terminationGracePeriodSeconds": -5657477284668711794
},
- "startupProbe": {
+ "readinessProbe": {
"exec": {
"command": [
- "359"
+ "361"
]
},
"httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "焬CQm坊柩",
+ "path": "362",
+ "port": 1993058773,
+ "host": "363",
+ "scheme": "糂腂ǂǚŜEu",
"httpHeaders": [
{
- "name": "363",
- "value": "364"
+ "name": "364",
+ "value": "365"
}
]
},
"tcpSocket": {
- "port": "365",
+ "port": -468215285,
"host": "366"
},
- "initialDelaySeconds": -135823101,
- "timeoutSeconds": -1345219897,
- "periodSeconds": 1141812777,
- "successThreshold": -1830926023,
- "failureThreshold": -320410537,
- "terminationGracePeriodSeconds": 8766190045617353809
+ "gRPC": {
+ "port": 571693619,
+ "service": "367"
+ },
+ "initialDelaySeconds": 1643238856,
+ "timeoutSeconds": -2028546276,
+ "periodSeconds": -2128305760,
+ "successThreshold": 1605974497,
+ "failureThreshold": 466207237,
+ "terminationGracePeriodSeconds": 6810468860514125748
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "368"
+ ]
+ },
+ "httpGet": {
+ "path": "369",
+ "port": "370",
+ "host": "371",
+ "scheme": "[ƕƑĝ®EĨǔvÄÚ",
+ "httpHeaders": [
+ {
+ "name": "372",
+ "value": "373"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": 1673785355,
+ "host": "374"
+ },
+ "gRPC": {
+ "port": 559999152,
+ "service": "375"
+ },
+ "initialDelaySeconds": -843639240,
+ "timeoutSeconds": 1573261475,
+ "periodSeconds": -1211577347,
+ "successThreshold": 1529027685,
+ "failureThreshold": -1612005385,
+ "terminationGracePeriodSeconds": -7329765383695934568
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "367"
+ "376"
]
},
"httpGet": {
- "path": "368",
- "port": "369",
- "host": "370",
- "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj",
+ "path": "377",
+ "port": "378",
+ "host": "379",
+ "scheme": "ɻ;襕ċ桉桃喕",
"httpHeaders": [
{
- "name": "371",
- "value": "372"
+ "name": "380",
+ "value": "381"
}
]
},
"tcpSocket": {
- "port": 1333166203,
- "host": "373"
+ "port": "382",
+ "host": "383"
}
},
"preStop": {
"exec": {
"command": [
- "374"
+ "384"
]
},
"httpGet": {
- "path": "375",
- "port": 758604605,
- "host": "376",
- "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑",
+ "path": "385",
+ "port": "386",
+ "host": "387",
+ "scheme": "漤ŗ坟",
"httpHeaders": [
{
- "name": "377",
- "value": "378"
+ "name": "388",
+ "value": "389"
}
]
},
"tcpSocket": {
- "port": "379",
- "host": "380"
+ "port": -1617422199,
+ "host": "390"
}
}
},
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "釼aTGÒ鵌",
- "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ",
+ "terminationMessagePath": "391",
+ "terminationMessagePolicy": "鯶縆",
+ "imagePullPolicy": "aTGÒ鵌Ē3",
"securityContext": {
"capabilities": {
"add": [
- "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á"
+ "×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶滿筇"
],
"drop": [
- "tl敷斢杧ż鯀"
+ "P:/a殆诵H玲鑠ĭ$#卛8ð仁Q"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "392",
+ "role": "393",
+ "type": "394",
+ "level": "395"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "396",
+ "gmsaCredentialSpec": "397",
+ "runAsUserName": "398",
+ "hostProcess": false
},
- "runAsUser": -3379825899840103887,
- "runAsGroup": -6950412587983829837,
- "runAsNonRoot": true,
+ "runAsUser": -4594605252165716214,
+ "runAsGroup": 8611382659007276093,
+ "runAsNonRoot": false,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰",
+ "allowPrivilegeEscalation": false,
+ "procMount": "sYȠ繽敮ǰ詀",
"seccompProfile": {
- "type": "咑耖p^鏋蛹Ƚȿ醏g",
- "localhostProfile": "389"
+ "type": "忀oɎƺL肄$鬬",
+ "localhostProfile": "399"
}
},
+ "stdin": true,
"tty": true,
- "targetContainerName": "390"
+ "targetContainerName": "400"
}
],
- "restartPolicy": "飂廤Ƌʙcx",
- "terminationGracePeriodSeconds": -4767735291842597991,
- "activeDeadlineSeconds": -7888525810745339742,
- "dnsPolicy": "h`職铳s44矕Ƈ",
+ "restartPolicy": "_敕",
+ "terminationGracePeriodSeconds": 7232696855417465611,
+ "activeDeadlineSeconds": -3924015511039305229,
+ "dnsPolicy": "穜姰l咑耖p^鏋蛹Ƚȿ",
"nodeSelector": {
- "391": "392"
+ "401": "402"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "403",
+ "serviceAccount": "404",
"automountServiceAccountToken": true,
- "nodeName": "395",
- "hostIPC": true,
- "shareProcessNamespace": true,
+ "nodeName": "405",
+ "hostNetwork": true,
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "406",
+ "role": "407",
+ "type": "408",
+ "level": "409"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
- "hostProcess": false
+ "gmsaCredentialSpecName": "410",
+ "gmsaCredentialSpec": "411",
+ "runAsUserName": "412",
+ "hostProcess": true
},
- "runAsUser": 5422399684456852309,
- "runAsGroup": -4636770370363077377,
- "runAsNonRoot": false,
+ "runAsUser": -8490059975047402203,
+ "runAsGroup": 6219097993402437076,
+ "runAsNonRoot": true,
"supplementalGroups": [
- -5728960352366086876
+ 4224635496843945227
],
- "fsGroup": 1712752437570220896,
+ "fsGroup": 73764735411458498,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "413",
+ "value": "414"
}
],
- "fsGroupChangePolicy": "",
+ "fsGroupChangePolicy": "劶?jĎĭ¥#ƱÁR»",
"seccompProfile": {
- "type": "#",
- "localhostProfile": "405"
+ "type": "揀.e鍃G昧牱fsǕT衩k",
+ "localhostProfile": "415"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "416"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "417",
+ "subdomain": "418",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1285,19 +1323,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3",
+ "key": "419",
+ "operator": "s梊ɥʋăƻ遲njlȘ鹾K",
"values": [
- "410"
+ "420"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿",
+ "key": "421",
+ "operator": "_h盌",
"values": [
- "412"
+ "422"
]
}
]
@@ -1306,23 +1344,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 687140791,
+ "weight": -1249187397,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "ļǹʅŚO虀",
+ "key": "423",
+ "operator": "9两@8Byß讪Ă2讅缔m葰賦迾娙ƴ4",
"values": [
- "414"
+ "424"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "key": "425",
+ "operator": "#ļǹʅŚO虀^背遻堣灭ƴɦ燻",
"values": [
- "416"
+ "426"
]
}
]
@@ -1335,30 +1373,30 @@
{
"labelSelector": {
"matchLabels": {
- "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7"
+ "7-3x-3/23_P": "d._.Um.-__k.5"
},
"matchExpressions": [
{
- "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o",
+ "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C",
"operator": "In",
"values": [
- "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7"
+ "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw"
]
}
]
},
"namespaces": [
- "423"
+ "433"
],
- "topologyKey": "424",
+ "topologyKey": "434",
"namespaceSelector": {
"matchLabels": {
- "4eq5": ""
+ "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM"
},
"matchExpressions": [
{
- "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z",
- "operator": "Exists"
+ "key": "8mtxb__-ex-_1_-ODgC_1-_8__3",
+ "operator": "DoesNotExist"
}
]
}
@@ -1366,37 +1404,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 888976270,
+ "weight": -555161071,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n"
+ "73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C": "r-v-3-BO"
},
"matchExpressions": [
{
- "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0",
- "operator": "In",
- "values": [
- "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ"
- ]
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "447"
],
- "topologyKey": "438",
+ "topologyKey": "448",
"namespaceSelector": {
"matchLabels": {
- "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V",
- "operator": "In",
- "values": [
- "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7"
- ]
+ "key": "RT.0zo",
+ "operator": "DoesNotExist"
}
]
}
@@ -1409,29 +1441,29 @@
{
"labelSelector": {
"matchLabels": {
- "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8",
- "operator": "Exists"
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "461"
],
- "topologyKey": "452",
+ "topologyKey": "462",
"namespaceSelector": {
"matchLabels": {
- "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "V._qN__A_f_-B3_U__L.KH6K.RwsfI2"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1440,34 +1472,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -1668452490,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "6W74-R_Z_Tz.a3_Ho",
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
"operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "475"
],
- "topologyKey": "466",
+ "topologyKey": "476",
"namespaceSelector": {
"matchLabels": {
- "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV",
- "operator": "In",
- "values": [
- "x3___-..f5-6x-_-o_6O_If-5_-_.F"
- ]
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1476,92 +1505,91 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "483",
"tolerations": [
{
- "key": "474",
- "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
- "value": "475",
- "effect": "慰x:",
- "tolerationSeconds": 3362400521064014157
+ "key": "484",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "485",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "486",
"hostnames": [
- "477"
+ "487"
]
}
],
- "priorityClassName": "478",
- "priority": 743241089,
+ "priorityClassName": "488",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "489"
],
"searches": [
- "480"
+ "490"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "491",
+ "value": "492"
}
]
},
"readinessGates": [
{
- "conditionType": "0yVA嬂刲;牆詒ĸąs"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "493",
"enableServiceLinks": false,
- "preemptionPolicy": "Iƭij韺ʧ\u003e",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D傕Ɠ栊闔虝巒瀦ŕ": "124"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -174245111,
- "topologyKey": "484",
- "whenUnsatisfiable": "",
+ "maxSkew": 1486667065,
+ "topologyKey": "494",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
- "operator": "In",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
+ "operator": "NotIn",
"values": [
- "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
+ "H1z..j_.r3--T"
]
}
]
}
}
],
- "setHostnameAsFQDN": true,
+ "setHostnameAsFQDN": false,
"os": {
- "name": "+\u0026ɃB沅零șPî壣"
+ "name": "Ê"
}
}
}
},
"status": {
- "replicas": 157451826,
- "fullyLabeledReplicas": -1872689134,
- "readyReplicas": 1791185938,
- "availableReplicas": 1559072561,
- "observedGeneration": 5029735218517286947,
+ "replicas": 1710495724,
+ "fullyLabeledReplicas": 895180747,
+ "readyReplicas": 1856897421,
+ "availableReplicas": -900119103,
+ "observedGeneration": -2756902756708364909,
"conditions": [
{
- "type": "Y圻醆锛[M牍Ƃ氙吐ɝ鶼",
- "status": "ŭ瘢颦z疵悡nȩ純z邜",
- "lastTransitionTime": "2124-10-20T09:17:54Z",
- "reason": "491",
- "message": "492"
+ "type": "庺%#囨q砅ƎXÄdƦ;ƣŽ氮怉",
+ "status": "ȩ硘(ǒ[",
+ "lastTransitionTime": "2209-10-18T22:10:43Z",
+ "reason": "501",
+ "message": "502"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb
index 7d5cf31ffb4..c7b46ed1835 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml
index 65c49fc9c8e..f232b1b666a 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.ReplicaSet.yaml
@@ -73,492 +73,507 @@ spec:
selfLink: "29"
uid: ʬ
spec:
- activeDeadlineSeconds: -7888525810745339742
+ activeDeadlineSeconds: -3924015511039305229
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: ļǹʅŚO虀
+ - key: "423"
+ operator: 9两@8Byß讪Ă2讅缔m葰賦迾娙ƴ4
values:
- - "414"
+ - "424"
matchFields:
- - key: "415"
- operator: ɴĶ烷Ľthp像-觗裓6Ř
+ - key: "425"
+ operator: '#ļǹʅŚO虀^背遻堣灭ƴɦ燻'
values:
- - "416"
- weight: 687140791
+ - "426"
+ weight: -1249187397
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3
+ - key: "419"
+ operator: s梊ɥʋăƻ遲njlȘ鹾K
values:
- - "410"
+ - "420"
matchFields:
- - key: "411"
- operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿'
+ - key: "421"
+ operator: _h盌
values:
- - "412"
+ - "422"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
- operator: In
- values:
- - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L
+ operator: Exists
matchLabels:
- z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
+ 73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C: r-v-3-BO
namespaceSelector:
matchExpressions:
- - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
- operator: In
- values:
- - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
+ - key: RT.0zo
+ operator: DoesNotExist
matchLabels:
- vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: 888976270
+ - "447"
+ topologyKey: "448"
+ weight: -555161071
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o
+ - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C
operator: In
values:
- - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
+ - p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw
matchLabels:
- "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7
+ 7-3x-3/23_P: d._.Um.-__k.5
namespaceSelector:
matchExpressions:
- - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- operator: Exists
+ - key: 8mtxb__-ex-_1_-ODgC_1-_8__3
+ operator: DoesNotExist
matchLabels:
- 4eq5: ""
+ 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM
namespaces:
- - "423"
- topologyKey: "424"
+ - "433"
+ topologyKey: "434"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 6W74-R_Z_Tz.a3_Ho
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
operator: Exists
matchLabels:
- n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
- operator: In
- values:
- - x3___-..f5-6x-_-o_6O_If-5_-_.F
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: -1668452490
+ - "475"
+ topologyKey: "476"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
- operator: Exists
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - V._qN__A_f_-B3_U__L.KH6K.RwsfI2
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "461"
+ topologyKey: "462"
automountServiceAccountToken: true
containers:
- args:
- - "254"
+ - "257"
command:
- - "253"
+ - "256"
env:
- - name: "261"
- value: "262"
+ - name: "264"
+ value: "265"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
- optional: true
- fieldRef:
- apiVersion: "263"
- fieldPath: "264"
- resourceFieldRef:
- containerName: "265"
- divisor: "894"
- resource: "266"
- secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
+ fieldRef:
+ apiVersion: "266"
+ fieldPath: "267"
+ resourceFieldRef:
+ containerName: "268"
+ divisor: "801"
+ resource: "269"
+ secretKeyRef:
+ key: "273"
+ name: "272"
+ optional: true
envFrom:
- configMapRef:
- name: "259"
- optional: true
- prefix: "258"
+ name: "262"
+ optional: false
+ prefix: "261"
secretRef:
- name: "260"
- optional: true
- image: "252"
- imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮
+ name: "263"
+ optional: false
+ image: "255"
+ imagePullPolicy: 騎C"6x$1sȣ±p鋄
lifecycle:
postStart:
exec:
command:
- - "297"
- httpGet:
- host: "300"
- httpHeaders:
- - name: "301"
- value: "302"
- path: "298"
- port: "299"
- scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ
- tcpSocket:
- host: "303"
- port: 802134138
- preStop:
- exec:
- command:
- - "304"
+ - "303"
httpGet:
host: "306"
httpHeaders:
- name: "307"
value: "308"
- path: "305"
- port: -126958936
- scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻
+ path: "304"
+ port: "305"
tcpSocket:
- host: "310"
- port: "309"
+ host: "309"
+ port: 323903711
+ preStop:
+ exec:
+ command:
+ - "310"
+ httpGet:
+ host: "313"
+ httpHeaders:
+ - name: "314"
+ value: "315"
+ path: "311"
+ port: "312"
+ scheme: 丆
+ tcpSocket:
+ host: "317"
+ port: "316"
livenessProbe:
exec:
command:
- - "277"
- failureThreshold: 348370746
+ - "280"
+ failureThreshold: 1993268896
+ gRPC:
+ port: 1315054653
+ service: "287"
httpGet:
- host: "279"
+ host: "283"
httpHeaders:
- - name: "280"
- value: "281"
- path: "278"
- port: -1471289102
- scheme: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳
- initialDelaySeconds: -1421951296
- periodSeconds: -1244119841
- successThreshold: 1235694147
+ - name: "284"
+ value: "285"
+ path: "281"
+ port: "282"
+ scheme: 澝qV訆Ǝżŧ
+ initialDelaySeconds: 711020087
+ periodSeconds: -1965247100
+ successThreshold: 218453478
tcpSocket:
- host: "282"
- port: 113873869
- terminationGracePeriodSeconds: 2011630253582325853
- timeoutSeconds: 878005329
- name: "251"
+ host: "286"
+ port: 204229950
+ terminationGracePeriodSeconds: -9140155223242250138
+ timeoutSeconds: 1103049140
+ name: "254"
ports:
- - containerPort: -1418092595
- hostIP: "257"
- hostPort: 1381579966
- name: "256"
- protocol: 闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x
+ - containerPort: -438588982
+ hostIP: "260"
+ hostPort: -1532958330
+ name: "259"
+ protocol: 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥
readinessProbe:
exec:
command:
- - "283"
- failureThreshold: 1156888068
+ - "288"
+ failureThreshold: 472742933
+ gRPC:
+ port: 972193458
+ service: "295"
httpGet:
- host: "285"
+ host: "290"
httpHeaders:
- - name: "286"
- value: "287"
- path: "284"
- port: 1907998540
- scheme: ',ŕ'
- initialDelaySeconds: -253326525
- periodSeconds: 887319241
- successThreshold: 1559618829
+ - name: "291"
+ value: "292"
+ path: "289"
+ port: -1315487077
+ scheme: ğ_
+ initialDelaySeconds: 1290950685
+ periodSeconds: 1058960779
+ successThreshold: -2133441986
tcpSocket:
- host: "289"
- port: "288"
- terminationGracePeriodSeconds: -5566612115749133989
- timeoutSeconds: 567263590
+ host: "294"
+ port: "293"
+ terminationGracePeriodSeconds: 217739466937954194
+ timeoutSeconds: 12533543
resources:
limits:
- W<敄lu|榝$î.Ȏ: "546"
+ 队偯J僳徥淳4揻: "175"
requests:
- 剒蔞|表: "379"
+ "": "170"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- - 嘢4ʗN,丽饾| 鞤ɱďW賁
+ - ȹ均i绝5哇芆斩ìh4Ɋ
drop:
- - ɭɪǹ0衷,
- privileged: true
- procMount: w妕眵笭/9崍h趭(娕
- readOnlyRootFilesystem: true
- runAsGroup: -7146044409185304665
+ - Ȗ|ʐşƧ諔迮ƙIJ嘢4
+ privileged: false
+ procMount: W賁Ěɭɪǹ0
+ readOnlyRootFilesystem: false
+ runAsGroup: -5712715102324619404
runAsNonRoot: false
- runAsUser: -1119183212148951030
+ runAsUser: -7936947433725476327
seLinuxOptions:
- level: "315"
- role: "313"
- type: "314"
- user: "312"
+ level: "322"
+ role: "320"
+ type: "321"
+ user: "319"
seccompProfile:
- localhostProfile: "319"
- type: E增猍
+ localhostProfile: "326"
+ type: ',ƷƣMț譎懚XW疪鑳'
windowsOptions:
- gmsaCredentialSpec: "317"
- gmsaCredentialSpecName: "316"
- hostProcess: true
- runAsUserName: "318"
+ gmsaCredentialSpec: "324"
+ gmsaCredentialSpecName: "323"
+ hostProcess: false
+ runAsUserName: "325"
startupProbe:
exec:
command:
- - "290"
- failureThreshold: 422133388
+ - "296"
+ failureThreshold: -1513284745
+ gRPC:
+ port: 311083651
+ service: "302"
httpGet:
- host: "292"
+ host: "298"
httpHeaders:
- - name: "293"
- value: "294"
- path: "291"
- port: 1315054653
- scheme: 蚃ɣľ)酊龨δ摖ȱ
- initialDelaySeconds: 1905181464
- periodSeconds: 1272940694
- successThreshold: -385597677
+ - name: "299"
+ value: "300"
+ path: "297"
+ port: 1401790459
+ scheme: ǵɐ鰥Z
+ initialDelaySeconds: 353361793
+ periodSeconds: -708413798
+ successThreshold: -898536659
tcpSocket:
- host: "296"
- port: "295"
- terminationGracePeriodSeconds: 8385745044578923915
- timeoutSeconds: -1730959016
- terminationMessagePath: "311"
- terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS
+ host: "301"
+ port: -1103045151
+ terminationGracePeriodSeconds: 5404658974498114041
+ timeoutSeconds: -2081447068
+ stdin: true
+ stdinOnce: true
+ terminationMessagePath: "318"
+ terminationMessagePolicy: Ŏ)/灩聋3趐囨鏻砅邻
+ tty: true
volumeDevices:
- - devicePath: "276"
- name: "275"
+ - devicePath: "279"
+ name: "278"
volumeMounts:
- - mountPath: "272"
- mountPropagation: 朦 wƯ貾坢'跩
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
+ - mountPath: "275"
+ mountPropagation: ×x锏ɟ4Ǒ
+ name: "274"
+ subPath: "276"
+ subPathExpr: "277"
+ workingDir: "258"
dnsConfig:
nameservers:
- - "479"
+ - "489"
options:
- - name: "481"
- value: "482"
+ - name: "491"
+ value: "492"
searches:
- - "480"
- dnsPolicy: h`職铳s44矕Ƈ
+ - "490"
+ dnsPolicy: 穜姰l咑耖p^鏋蛹Ƚȿ
enableServiceLinks: false
ephemeralContainers:
- args:
- - "323"
+ - "330"
command:
- - "322"
+ - "329"
env:
- - name: "330"
- value: "331"
+ - name: "337"
+ value: "338"
valueFrom:
configMapKeyRef:
- key: "337"
- name: "336"
+ key: "344"
+ name: "343"
optional: false
fieldRef:
- apiVersion: "332"
- fieldPath: "333"
+ apiVersion: "339"
+ fieldPath: "340"
resourceFieldRef:
- containerName: "334"
- divisor: "179"
- resource: "335"
+ containerName: "341"
+ divisor: "360"
+ resource: "342"
secretKeyRef:
- key: "339"
- name: "338"
+ key: "346"
+ name: "345"
optional: false
envFrom:
- configMapRef:
- name: "328"
- optional: true
- prefix: "327"
+ name: "335"
+ optional: false
+ prefix: "334"
secretRef:
- name: "329"
- optional: true
- image: "321"
- imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
+ name: "336"
+ optional: false
+ image: "328"
+ imagePullPolicy: aTGÒ鵌Ē3
lifecycle:
postStart:
exec:
command:
- - "367"
+ - "376"
httpGet:
- host: "370"
+ host: "379"
httpHeaders:
- - name: "371"
- value: "372"
- path: "368"
- port: "369"
- scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj'
+ - name: "380"
+ value: "381"
+ path: "377"
+ port: "378"
+ scheme: ɻ;襕ċ桉桃喕
tcpSocket:
- host: "373"
- port: 1333166203
+ host: "383"
+ port: "382"
preStop:
exec:
command:
- - "374"
+ - "384"
httpGet:
- host: "376"
+ host: "387"
httpHeaders:
- - name: "377"
- value: "378"
- path: "375"
- port: 758604605
- scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑
+ - name: "388"
+ value: "389"
+ path: "385"
+ port: "386"
+ scheme: 漤ŗ坟
tcpSocket:
- host: "380"
- port: "379"
+ host: "390"
+ port: -1617422199
livenessProbe:
- exec:
- command:
- - "346"
- failureThreshold: -313085430
- httpGet:
- host: "348"
- httpHeaders:
- - name: "349"
- value: "350"
- path: "347"
- port: -684167223
- scheme: 1b
- initialDelaySeconds: -47594442
- periodSeconds: 725624946
- successThreshold: -34803208
- tcpSocket:
- host: "352"
- port: "351"
- terminationGracePeriodSeconds: -7686796864837350582
- timeoutSeconds: -2064284357
- name: "320"
- ports:
- - containerPort: -1320027474
- hostIP: "326"
- hostPort: 601942575
- name: "325"
- protocol: Ƶf
- readinessProbe:
exec:
command:
- "353"
- failureThreshold: -1844150067
+ failureThreshold: 1660454722
+ gRPC:
+ port: 413903479
+ service: "360"
httpGet:
host: "355"
httpHeaders:
- name: "356"
value: "357"
path: "354"
- port: 1611386356
- scheme: ɼ搳ǭ濑箨ʨIk(
- initialDelaySeconds: 1984241264
- periodSeconds: -487434422
- successThreshold: -370404018
+ port: -1842062977
+ scheme: 輔3璾ėȜv1b繐汚磉反-n覦
+ initialDelaySeconds: 1708236944
+ periodSeconds: 1961354355
+ successThreshold: -1977635123
tcpSocket:
- host: "358"
- port: 2115799218
- terminationGracePeriodSeconds: 1778358283914418699
- timeoutSeconds: -758033170
+ host: "359"
+ port: "358"
+ terminationGracePeriodSeconds: -5657477284668711794
+ timeoutSeconds: -1192140557
+ name: "327"
+ ports:
+ - containerPort: 455919108
+ hostIP: "333"
+ hostPort: 217308913
+ name: "332"
+ protocol: 崍h趭(娕u
+ readinessProbe:
+ exec:
+ command:
+ - "361"
+ failureThreshold: 466207237
+ gRPC:
+ port: 571693619
+ service: "367"
+ httpGet:
+ host: "363"
+ httpHeaders:
+ - name: "364"
+ value: "365"
+ path: "362"
+ port: 1993058773
+ scheme: 糂腂ǂǚŜEu
+ initialDelaySeconds: 1643238856
+ periodSeconds: -2128305760
+ successThreshold: 1605974497
+ tcpSocket:
+ host: "366"
+ port: -468215285
+ terminationGracePeriodSeconds: 6810468860514125748
+ timeoutSeconds: -2028546276
resources:
limits:
- 阎l: "464"
+ fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
requests:
- '''佉': "633"
+ 蕎': "62"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á
+ - ×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶滿筇
drop:
- - tl敷斢杧ż鯀
+ - P:/a殆诵H玲鑠ĭ$#卛8ð仁Q
privileged: true
- procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰
+ procMount: sYȠ繽敮ǰ詀
readOnlyRootFilesystem: false
- runAsGroup: -6950412587983829837
- runAsNonRoot: true
- runAsUser: -3379825899840103887
+ runAsGroup: 8611382659007276093
+ runAsNonRoot: false
+ runAsUser: -4594605252165716214
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "395"
+ role: "393"
+ type: "394"
+ user: "392"
seccompProfile:
- localhostProfile: "389"
- type: 咑耖p^鏋蛹Ƚȿ醏g
+ localhostProfile: "399"
+ type: 忀oɎƺL肄$鬬
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "397"
+ gmsaCredentialSpecName: "396"
+ hostProcess: false
+ runAsUserName: "398"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: -320410537
+ - "368"
+ failureThreshold: -1612005385
+ gRPC:
+ port: 559999152
+ service: "375"
httpGet:
- host: "362"
+ host: "371"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: 焬CQm坊柩
- initialDelaySeconds: -135823101
- periodSeconds: 1141812777
- successThreshold: -1830926023
+ - name: "372"
+ value: "373"
+ path: "369"
+ port: "370"
+ scheme: '[ƕƑĝ®EĨǔvÄÚ'
+ initialDelaySeconds: -843639240
+ periodSeconds: -1211577347
+ successThreshold: 1529027685
tcpSocket:
- host: "366"
- port: "365"
- terminationGracePeriodSeconds: 8766190045617353809
- timeoutSeconds: -1345219897
- targetContainerName: "390"
- terminationMessagePath: "381"
- terminationMessagePolicy: 釼aTGÒ鵌
+ host: "374"
+ port: 1673785355
+ terminationGracePeriodSeconds: -7329765383695934568
+ timeoutSeconds: 1573261475
+ stdin: true
+ targetContainerName: "400"
+ terminationMessagePath: "391"
+ terminationMessagePolicy: 鯶縆
tty: true
volumeDevices:
- - devicePath: "345"
- name: "344"
+ - devicePath: "352"
+ name: "351"
volumeMounts:
- - mountPath: "341"
- mountPropagation: (ť1ùfŭƽ
- name: "340"
- subPath: "342"
- subPathExpr: "343"
- workingDir: "324"
+ - mountPath: "348"
+ mountPropagation: Ǚ(
+ name: "347"
+ readOnly: true
+ subPath: "349"
+ subPathExpr: "350"
+ workingDir: "331"
hostAliases:
- hostnames:
- - "477"
- ip: "476"
- hostIPC: true
- hostname: "407"
+ - "487"
+ ip: "486"
+ hostNetwork: true
+ hostname: "417"
imagePullSecrets:
- - name: "406"
+ - name: "416"
initContainers:
- args:
- "184"
@@ -592,43 +607,46 @@ spec:
name: "190"
optional: true
image: "182"
- imagePullPolicy: ʎȺ眖R#
+ imagePullPolicy: 跦Opwǩ曬逴褜1
lifecycle:
postStart:
exec:
command:
- - "228"
+ - "231"
httpGet:
- host: "230"
- httpHeaders:
- - name: "231"
- value: "232"
- path: "229"
- port: -1196874390
- scheme: S晒嶗UÐ_ƮA攤
- tcpSocket:
host: "233"
- port: -498930176
+ httpHeaders:
+ - name: "234"
+ value: "235"
+ path: "232"
+ port: 1883209805
+ scheme: ɓȌʟni酛3ƁÀ*
+ tcpSocket:
+ host: "237"
+ port: "236"
preStop:
exec:
command:
- - "234"
+ - "238"
httpGet:
- host: "237"
- httpHeaders:
- - name: "238"
- value: "239"
- path: "235"
- port: "236"
- scheme: 鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡
- tcpSocket:
host: "241"
+ httpHeaders:
+ - name: "242"
+ value: "243"
+ path: "239"
port: "240"
+ scheme: fBls3!Zɾģ毋Ó6
+ tcpSocket:
+ host: "244"
+ port: -832805508
livenessProbe:
exec:
command:
- "207"
- failureThreshold: 1684643131
+ failureThreshold: 1599076900
+ gRPC:
+ port: 1507815593
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -637,14 +655,14 @@ spec:
path: "208"
port: 1214895765
scheme: 悖ȩ0Ƹ[Ęİ榌U
- initialDelaySeconds: -442393168
- periodSeconds: 1109079597
- successThreshold: -646728130
+ initialDelaySeconds: 1498833271
+ periodSeconds: 1447898632
+ successThreshold: 1602745893
tcpSocket:
host: "212"
port: -187060941
- terminationGracePeriodSeconds: 5055443896475056676
- timeoutSeconds: -307373517
+ terminationGracePeriodSeconds: -8249176398367452506
+ timeoutSeconds: 1505082076
name: "181"
ports:
- containerPort: 859639931
@@ -655,80 +673,85 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: -503805926
+ - "214"
+ failureThreshold: 10098903
+ gRPC:
+ port: 1182477686
+ service: "221"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 惇¸t颟.鵫ǚ灄鸫rʤî萨
- initialDelaySeconds: 1885896895
- periodSeconds: -1682044542
- successThreshold: 1182477686
+ path: "215"
+ port: 963670270
+ scheme: ɘȌ脾嚏吐ĠLƐȤ藠3.v
+ initialDelaySeconds: -503805926
+ periodSeconds: -763687725
+ successThreshold: -246563990
tcpSocket:
host: "220"
port: "219"
- terminationGracePeriodSeconds: 332054723335023688
- timeoutSeconds: -1232888129
+ terminationGracePeriodSeconds: 4704090421576984895
+ timeoutSeconds: 77312514
resources:
limits:
ſ盷: "532"
requests:
'[Řż丩': "47"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
+ - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]
drop:
- - ""
+ - ¿>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩ
privileged: true
- procMount: '>郵[+扴ȨŮ'
+ procMount: ' 苧yñKJɐ'
readOnlyRootFilesystem: false
- runAsGroup: 7694930383795602762
+ runAsGroup: 3811348330690808371
runAsNonRoot: true
- runAsUser: -2529737859863639391
+ runAsUser: 2185575187737222181
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "249"
+ role: "247"
+ type: "248"
+ user: "246"
seccompProfile:
- localhostProfile: "250"
- type: 朷Ǝ膯ljVX1虊谇
+ localhostProfile: "253"
+ type: Gƚ绤fʀļ腩墺Ò媁荭gw
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
+ gmsaCredentialSpec: "251"
+ gmsaCredentialSpecName: "250"
hostProcess: false
- runAsUserName: "249"
+ runAsUserName: "252"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: 59664438
+ - "222"
+ failureThreshold: 1479266199
+ gRPC:
+ port: 593802074
+ service: "230"
httpGet:
- host: "224"
+ host: "225"
httpHeaders:
- - name: "225"
- value: "226"
- path: "222"
- port: "223"
- scheme: «丯Ƙ枛牐ɺ皚
- initialDelaySeconds: 766864314
- periodSeconds: 1495880465
- successThreshold: -1032967081
+ - name: "226"
+ value: "227"
+ path: "223"
+ port: "224"
+ scheme: 牐ɺ皚|懥
+ initialDelaySeconds: 538852927
+ periodSeconds: 902535764
+ successThreshold: 716842280
tcpSocket:
- host: "227"
- port: -1934111455
- terminationGracePeriodSeconds: 4116652091516790056
- timeoutSeconds: 1146016612
- stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: ?$矡ȶ网棊ʢ
- tty: true
+ host: "229"
+ port: "228"
+ terminationGracePeriodSeconds: 702282827459446622
+ timeoutSeconds: -407545915
+ stdinOnce: true
+ terminationMessagePath: "245"
+ terminationMessagePolicy: 庎D}埽uʎȺ眖R#yV'WKw(ğ儴
volumeDevices:
- devicePath: "206"
name: "205"
@@ -739,69 +762,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "405"
nodeSelector:
- "391": "392"
+ "401": "402"
os:
- name: +&ɃB沅零șPî壣
+ name: Ê
overhead:
- D傕Ɠ栊闔虝巒瀦ŕ: "124"
- preemptionPolicy: Iƭij韺ʧ>
- priority: 743241089
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "488"
readinessGates:
- - conditionType: 0yVA嬂刲;牆詒ĸąs
- restartPolicy: 飂廤Ƌʙcx
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: _敕
+ runtimeClassName: "493"
+ schedulerName: "483"
securityContext:
- fsGroup: 1712752437570220896
- fsGroupChangePolicy: ""
- runAsGroup: -4636770370363077377
- runAsNonRoot: false
- runAsUser: 5422399684456852309
+ fsGroup: 73764735411458498
+ fsGroupChangePolicy: 劶?jĎĭ¥#ƱÁR»
+ runAsGroup: 6219097993402437076
+ runAsNonRoot: true
+ runAsUser: -8490059975047402203
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "409"
+ role: "407"
+ type: "408"
+ user: "406"
seccompProfile:
- localhostProfile: "405"
- type: '#'
+ localhostProfile: "415"
+ type: 揀.e鍃G昧牱fsǕT衩k
supplementalGroups:
- - -5728960352366086876
+ - 4224635496843945227
sysctls:
- - name: "403"
- value: "404"
+ - name: "413"
+ value: "414"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
- hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
- setHostnameAsFQDN: true
- shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -4767735291842597991
+ gmsaCredentialSpec: "411"
+ gmsaCredentialSpecName: "410"
+ hostProcess: true
+ runAsUserName: "412"
+ serviceAccount: "404"
+ serviceAccountName: "403"
+ setHostnameAsFQDN: false
+ shareProcessNamespace: false
+ subdomain: "418"
+ terminationGracePeriodSeconds: 7232696855417465611
tolerations:
- - effect: '慰x:'
- key: "474"
- operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
- tolerationSeconds: 3362400521064014157
- value: "475"
+ - key: "484"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "485"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- operator: In
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
+ operator: NotIn
values:
- - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
+ - H1z..j_.r3--T
matchLabels:
- 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
- maxSkew: -174245111
- topologyKey: "484"
- whenUnsatisfiable: ""
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "494"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1057,14 +1079,14 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 1559072561
+ availableReplicas: -900119103
conditions:
- - lastTransitionTime: "2124-10-20T09:17:54Z"
- message: "492"
- reason: "491"
- status: ŭ瘢颦z疵悡nȩ純z邜
- type: Y圻醆锛[M牍Ƃ氙吐ɝ鶼
- fullyLabeledReplicas: -1872689134
- observedGeneration: 5029735218517286947
- readyReplicas: 1791185938
- replicas: 157451826
+ - lastTransitionTime: "2209-10-18T22:10:43Z"
+ message: "502"
+ reason: "501"
+ status: ȩ硘(ǒ[
+ type: 庺%#囨q砅ƎXÄdƦ;ƣŽ氮怉
+ fullyLabeledReplicas: 895180747
+ observedGeneration: -2756902756708364909
+ readyReplicas: 1856897421
+ replicas: 1710495724
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json
index b67d0af41e9..f21e2902b57 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,146 +1573,146 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"volumeClaimTemplates": [
{
"metadata": {
- "name": "491",
- "generateName": "492",
- "namespace": "493",
- "selfLink": "494",
- "uid": "`",
- "resourceVersion": "5863709333089187294",
- "generation": 6477367096865964611,
- "creationTimestamp": "2097-02-11T08:53:04Z",
- "deletionGracePeriodSeconds": 5497143372256332223,
+ "name": "503",
+ "generateName": "504",
+ "namespace": "505",
+ "selfLink": "506",
+ "uid": "µʍ^鼑",
+ "resourceVersion": "12522354568905793793",
+ "generation": -7492163414721477183,
+ "creationTimestamp": "2091-04-29T08:40:13Z",
+ "deletionGracePeriodSeconds": -790340248384719952,
"labels": {
- "496": "497"
+ "508": "509"
},
"annotations": {
- "498": "499"
+ "510": "511"
},
"ownerReferences": [
{
- "apiVersion": "500",
- "kind": "501",
- "name": "502",
- "uid": "Z穑S13t",
- "controller": false,
- "blockOwnerDeletion": true
+ "apiVersion": "512",
+ "kind": "513",
+ "name": "514",
+ "uid": "#囨q",
+ "controller": true,
+ "blockOwnerDeletion": false
}
],
"finalizers": [
- "503"
+ "515"
],
- "clusterName": "504",
+ "clusterName": "516",
"managedFields": [
{
- "manager": "505",
- "operation": "董缞濪葷cŲNª",
- "apiVersion": "506",
- "fieldsType": "507",
- "subresource": "508"
+ "manager": "517",
+ "operation": "ÄdƦ;ƣŽ氮怉ƥ;\"薑Ȣ#闬輙怀¹",
+ "apiVersion": "518",
+ "fieldsType": "519",
+ "subresource": "520"
}
]
},
"spec": {
"accessModes": [
- "豘ñ澀j劎笜釼鮭Ɯ镶Eq荣¿S5Tƙ"
+ "觇ƒ幦ų勏Y9=ȳB鼲糰E"
],
"selector": {
"matchLabels": {
- "N_l..-_.1-j---30q.-2_9.9-..-JA-H-5": "8_--4.__z2-.T2I"
+ "655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---49t7.28-d-e10-f-o-fr5/Y__03_6.K8l.YlG0.87B1": "z23.Ya-C3-._-l__S"
},
"matchExpressions": [
{
- "key": "7--4a06y7-dt--5--8-69vc31o-865227qok-3-v8e7wfk4ek.hi93f---z-4-q24gt/Mw.___-_-mv9h.-7.s__-_g6_-_No",
+ "key": "019_-gYY.3",
"operator": "In",
"values": [
- "D.9-F_A-t0-o.7_a-t.-d6h__._-.Z-Q.1-B.__--wr_-Iu9._.UT-o"
+ "F-__q6Q_--a_-_zzQ"
]
}
]
},
"resources": {
"limits": {
- "xġ疾ɇù扻喥|{軈ĕʦ竳÷ 骵蓧": "587"
+ "莥N": "597"
},
"requests": {
- "": "856"
+ "_Gȱ恛穒挤ţ#你顫#b°": "796"
}
},
- "volumeName": "515",
- "storageClassName": "516",
- "volumeMode": "涼ĥ訛\\`ĝňYuĞyÜ蛃慕ʓvâ",
+ "volumeName": "527",
+ "storageClassName": "528",
+ "volumeMode": "wŲ魦Ɔ0ƢĮÀĘÆɆ",
"dataSource": {
- "apiGroup": "517",
- "kind": "518",
- "name": "519"
+ "apiGroup": "529",
+ "kind": "530",
+ "name": "531"
},
"dataSourceRef": {
- "apiGroup": "520",
- "kind": "521",
- "name": "522"
+ "apiGroup": "532",
+ "kind": "533",
+ "name": "534"
}
},
"status": {
- "phase": "忣àÂƺ琰Ȃ芋醳鮩!廊臚cɶċ",
+ "phase": "ñƍU烈 źfjǰɪ嘞",
"accessModes": [
- "v}鮩澊聝楧"
+ "}杻扞Ğuƈ?犻盪ǵĿř岈"
],
"capacity": {
- "问Ð7ɞŶJŖ)j{驟ʦcȃ": "657"
+ "Ǐ]S5:œƌ嵃ǁǞŢ": "247"
},
"conditions": [
{
- "type": "ņȎZȐ樾'Ż£劾ů",
- "status": "Q¢鬣_棈Ý泷",
- "lastProbeTime": "2156-05-28T07:29:36Z",
- "lastTransitionTime": "2066-08-08T11:27:30Z",
- "reason": "523",
- "message": "524"
+ "type": "爪$R",
+ "status": "z¦",
+ "lastProbeTime": "2219-08-25T11:44:30Z",
+ "lastTransitionTime": "2211-02-15T05:10:41Z",
+ "reason": "535",
+ "message": "536"
}
],
"allocatedResources": {
- "鐳VDɝ": "844"
+ "ĐȌƨǴ叆ĄD輷東t½ǩ £tMǍ}": "968"
},
- "resizeStatus": "但Ǭľa执mÎDƃ"
+ "resizeStatus": "ʨɺC`牯"
}
}
],
- "serviceName": "525",
- "podManagementPolicy": "ƌ妜;)t罎j´A",
+ "serviceName": "537",
+ "podManagementPolicy": "Ȍ%ÿ¼璤ňɈ",
"updateStrategy": {
- "type": "徙蔿Yċʤw俣Ǫ",
+ "type": "銜Ʌ0斃搡Cʼn嘡",
"rollingUpdate": {
- "partition": 2000146968
+ "partition": 79841
}
},
- "revisionHistoryLimit": 560461224,
- "minReadySeconds": 2059121580
+ "revisionHistoryLimit": -1166275743,
+ "minReadySeconds": -1056262432
},
"status": {
- "observedGeneration": -632886252136267545,
- "replicas": 750655684,
- "readyReplicas": -1012893423,
- "currentReplicas": -1295777734,
- "updatedReplicas": -1394190312,
- "currentRevision": "526",
- "updateRevision": "527",
- "collisionCount": 1077247354,
+ "observedGeneration": -3770279213092072518,
+ "replicas": -1669166259,
+ "readyReplicas": -175399547,
+ "currentReplicas": 223338274,
+ "updatedReplicas": -1279136912,
+ "currentRevision": "538",
+ "updateRevision": "539",
+ "collisionCount": 1222237461,
"conditions": [
{
- "type": "堏ȑ湸睑L暱ʖ妾崗",
- "status": "ij敪賻yʗHiv\u003c",
- "lastTransitionTime": "2814-04-22T10:44:02Z",
- "reason": "528",
- "message": "529"
+ "type": "壣V礆á¤拈tY",
+ "status": "飼蒱鄆\u0026嬜Š\u0026?鳢.ǀŭ瘢颦z",
+ "lastTransitionTime": "2368-07-30T22:05:09Z",
+ "reason": "540",
+ "message": "541"
}
],
- "availableReplicas": 747018016
+ "availableReplicas": -1174483980
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb
index a28b2631a08..77331aca867 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml
index 18e7144c481..ee9ce6f6d0b 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.yaml
@@ -31,17 +31,17 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: 2059121580
- podManagementPolicy: ƌ妜;)t罎j´A
+ minReadySeconds: -1056262432
+ podManagementPolicy: Ȍ%ÿ¼璤ňɈ
replicas: 896585016
- revisionHistoryLimit: 560461224
+ revisionHistoryLimit: -1166275743
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
operator: Exists
matchLabels:
74404d5---g8c2-k-91e.y5-g--58----0683-b-w7ld-6cs06xj-x5yv0wm-k18/M_-Nx.N_6-___._-.-W._AAn---v_-5-_8LXj: 6-4_WE-_JTrcd-2.-__E_Sv__26KX_R_.-.Nth._--S_4DA_-5_-4lQ42M--1
- serviceName: "525"
+ serviceName: "537"
template:
metadata:
annotations:
@@ -74,490 +74,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -635,14 +657,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -653,24 +675,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -680,52 +705,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -737,69 +765,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1060,95 +1087,95 @@ spec:
volumePath: "103"
updateStrategy:
rollingUpdate:
- partition: 2000146968
- type: 徙蔿Yċʤw俣Ǫ
+ partition: 79841
+ type: 銜Ʌ0斃搡Cʼn嘡
volumeClaimTemplates:
- metadata:
annotations:
- "498": "499"
- clusterName: "504"
- creationTimestamp: "2097-02-11T08:53:04Z"
- deletionGracePeriodSeconds: 5497143372256332223
+ "510": "511"
+ clusterName: "516"
+ creationTimestamp: "2091-04-29T08:40:13Z"
+ deletionGracePeriodSeconds: -790340248384719952
finalizers:
- - "503"
- generateName: "492"
- generation: 6477367096865964611
+ - "515"
+ generateName: "504"
+ generation: -7492163414721477183
labels:
- "496": "497"
+ "508": "509"
managedFields:
- - apiVersion: "506"
- fieldsType: "507"
- manager: "505"
- operation: 董缞濪葷cŲNª
- subresource: "508"
- name: "491"
- namespace: "493"
+ - apiVersion: "518"
+ fieldsType: "519"
+ manager: "517"
+ operation: ÄdƦ;ƣŽ氮怉ƥ;"薑Ȣ#闬輙怀¹
+ subresource: "520"
+ name: "503"
+ namespace: "505"
ownerReferences:
- - apiVersion: "500"
- blockOwnerDeletion: true
- controller: false
- kind: "501"
- name: "502"
- uid: Z穑S13t
- resourceVersion: "5863709333089187294"
- selfLink: "494"
- uid: '`'
+ - apiVersion: "512"
+ blockOwnerDeletion: false
+ controller: true
+ kind: "513"
+ name: "514"
+ uid: '#囨q'
+ resourceVersion: "12522354568905793793"
+ selfLink: "506"
+ uid: µʍ^鼑
spec:
accessModes:
- - 豘ñ澀j劎笜釼鮭Ɯ镶Eq荣¿S5Tƙ
+ - 觇ƒ幦ų勏Y9=ȳB鼲糰E
dataSource:
- apiGroup: "517"
- kind: "518"
- name: "519"
+ apiGroup: "529"
+ kind: "530"
+ name: "531"
dataSourceRef:
- apiGroup: "520"
- kind: "521"
- name: "522"
+ apiGroup: "532"
+ kind: "533"
+ name: "534"
resources:
limits:
- xġ疾ɇù扻喥|{軈ĕʦ竳÷ 骵蓧: "587"
+ 莥N: "597"
requests:
- "": "856"
+ _Gȱ恛穒挤ţ#你顫#b°: "796"
selector:
matchExpressions:
- - key: 7--4a06y7-dt--5--8-69vc31o-865227qok-3-v8e7wfk4ek.hi93f---z-4-q24gt/Mw.___-_-mv9h.-7.s__-_g6_-_No
+ - key: 019_-gYY.3
operator: In
values:
- - D.9-F_A-t0-o.7_a-t.-d6h__._-.Z-Q.1-B.__--wr_-Iu9._.UT-o
+ - F-__q6Q_--a_-_zzQ
matchLabels:
- N_l..-_.1-j---30q.-2_9.9-..-JA-H-5: 8_--4.__z2-.T2I
- storageClassName: "516"
- volumeMode: 涼ĥ訛\`ĝňYuĞyÜ蛃慕ʓvâ
- volumeName: "515"
+ 655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---49t7.28-d-e10-f-o-fr5/Y__03_6.K8l.YlG0.87B1: z23.Ya-C3-._-l__S
+ storageClassName: "528"
+ volumeMode: wŲ魦Ɔ0ƢĮÀĘÆɆ
+ volumeName: "527"
status:
accessModes:
- - v}鮩澊聝楧
+ - '}杻扞Ğuƈ?犻盪ǵĿř岈'
allocatedResources:
- 鐳VDɝ: "844"
+ ĐȌƨǴ叆ĄD輷東t½ǩ £tMǍ}: "968"
capacity:
- 问Ð7ɞŶJŖ)j{驟ʦcȃ: "657"
+ Ǐ]S5:œƌ嵃ǁǞŢ: "247"
conditions:
- - lastProbeTime: "2156-05-28T07:29:36Z"
- lastTransitionTime: "2066-08-08T11:27:30Z"
- message: "524"
- reason: "523"
- status: Q¢鬣_棈Ý泷
- type: ņȎZȐ樾'Ż£劾ů
- phase: 忣àÂƺ琰Ȃ芋醳鮩!廊臚cɶċ
- resizeStatus: 但Ǭľa执mÎDƃ
+ - lastProbeTime: "2219-08-25T11:44:30Z"
+ lastTransitionTime: "2211-02-15T05:10:41Z"
+ message: "536"
+ reason: "535"
+ status: z¦
+ type: 爪$R
+ phase: ñƍU烈 źfjǰɪ嘞
+ resizeStatus: ʨɺC`牯
status:
- availableReplicas: 747018016
- collisionCount: 1077247354
+ availableReplicas: -1174483980
+ collisionCount: 1222237461
conditions:
- - lastTransitionTime: "2814-04-22T10:44:02Z"
- message: "529"
- reason: "528"
- status: ij敪賻yʗHiv<
- type: 堏ȑ湸睑L暱ʖ妾崗
- currentReplicas: -1295777734
- currentRevision: "526"
- observedGeneration: -632886252136267545
- readyReplicas: -1012893423
- replicas: 750655684
- updateRevision: "527"
- updatedReplicas: -1394190312
+ - lastTransitionTime: "2368-07-30T22:05:09Z"
+ message: "541"
+ reason: "540"
+ status: 飼蒱鄆&嬜Š&?鳢.ǀŭ瘢颦z
+ type: 壣V礆á¤拈tY
+ currentReplicas: 223338274
+ currentRevision: "538"
+ observedGeneration: -3770279213092072518
+ readyReplicas: -175399547
+ replicas: -1669166259
+ updateRevision: "539"
+ updatedReplicas: -1279136912
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json
index b58065100aa..d1365d65ba9 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json
@@ -608,212 +608,224 @@
"port": -1543701088,
"host": "232"
},
- "initialDelaySeconds": 513341278,
- "timeoutSeconds": 627713162,
- "periodSeconds": 1255312175,
- "successThreshold": -1740959124,
- "failureThreshold": 158280212,
- "terminationGracePeriodSeconds": -1552383991890236277
+ "gRPC": {
+ "port": -228822833,
+ "service": "233"
+ },
+ "initialDelaySeconds": -970312425,
+ "timeoutSeconds": -1213051101,
+ "periodSeconds": 1451056156,
+ "successThreshold": 267768240,
+ "failureThreshold": -127849333,
+ "terminationGracePeriodSeconds": -6249601560883066585
},
"readinessProbe": {
"exec": {
"command": [
- "233"
+ "234"
]
},
"httpGet": {
- "path": "234",
- "port": -1099429189,
- "host": "235",
- "scheme": "9Ì",
+ "path": "235",
+ "port": 1741405963,
+ "host": "236",
+ "scheme": "V'WKw(ğ儴",
"httpHeaders": [
{
- "name": "236",
- "value": "237"
+ "name": "237",
+ "value": "238"
}
]
},
"tcpSocket": {
- "port": -1364571630,
- "host": "238"
+ "port": 965937684,
+ "host": "239"
},
- "initialDelaySeconds": 1689978741,
- "timeoutSeconds": -1423854443,
- "periodSeconds": -1798849477,
- "successThreshold": -1017263912,
- "failureThreshold": 852780575,
- "terminationGracePeriodSeconds": -5381329890395615297
+ "gRPC": {
+ "port": 571739592,
+ "service": "240"
+ },
+ "initialDelaySeconds": 1853396726,
+ "timeoutSeconds": 1330271338,
+ "periodSeconds": -280820676,
+ "successThreshold": 376404581,
+ "failureThreshold": -661937776,
+ "terminationGracePeriodSeconds": 8892821664271613295
},
"startupProbe": {
"exec": {
"command": [
- "239"
+ "241"
]
},
"httpGet": {
- "path": "240",
- "port": 1853396726,
- "host": "241",
- "scheme": "曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷",
+ "path": "242",
+ "port": "243",
+ "host": "244",
+ "scheme": "Qg鄠[",
"httpHeaders": [
{
- "name": "242",
- "value": "243"
+ "name": "245",
+ "value": "246"
}
]
},
"tcpSocket": {
- "port": "244",
- "host": "245"
+ "port": -241238495,
+ "host": "247"
},
- "initialDelaySeconds": -1789370277,
- "timeoutSeconds": -1738948598,
- "periodSeconds": 1724958480,
- "successThreshold": -879005591,
- "failureThreshold": -743369977,
- "terminationGracePeriodSeconds": -6977492437661738751
+ "gRPC": {
+ "port": 410611837,
+ "service": "248"
+ },
+ "initialDelaySeconds": 809006670,
+ "timeoutSeconds": 972978563,
+ "periodSeconds": 17771103,
+ "successThreshold": -1008070934,
+ "failureThreshold": 1388782554,
+ "terminationGracePeriodSeconds": 4876101091241607178
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "246"
+ "249"
]
},
"httpGet": {
- "path": "247",
- "port": "248",
- "host": "249",
- "scheme": "j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ",
+ "path": "250",
+ "port": -1624574056,
+ "host": "251",
+ "scheme": "犵殇ŕ-Ɂ圯W:ĸ輦唊#",
"httpHeaders": [
{
- "name": "250",
- "value": "251"
+ "name": "252",
+ "value": "253"
}
]
},
"tcpSocket": {
- "port": "252",
- "host": "253"
+ "port": "254",
+ "host": "255"
}
},
"preStop": {
"exec": {
"command": [
- "254"
+ "256"
]
},
"httpGet": {
- "path": "255",
- "port": "256",
- "host": "257",
- "scheme": "y",
+ "path": "257",
+ "port": 1748715911,
+ "host": "258",
+ "scheme": "屡ʁ",
"httpHeaders": [
{
- "name": "258",
- "value": "259"
+ "name": "259",
+ "value": "260"
}
]
},
"tcpSocket": {
- "port": -1620315711,
- "host": "260"
+ "port": -1554559634,
+ "host": "261"
}
}
},
- "terminationMessagePath": "261",
- "terminationMessagePolicy": "ɐ扵",
- "imagePullPolicy": "鐫û咡W\u003c敄lu|榝",
+ "terminationMessagePath": "262",
+ "imagePullPolicy": "8T 苧yñKJɐ扵Gƚ绤fʀ",
"securityContext": {
"capabilities": {
"add": [
- ".Ȏ蝪ʜ5遰="
+ "墺Ò媁荭gw忊|E剒蔞|表徶đ"
],
"drop": [
- "埄Ȁ朦 wƯ貾坢'跩a"
+ "议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "262",
- "role": "263",
- "type": "264",
- "level": "265"
+ "user": "263",
+ "role": "264",
+ "type": "265",
+ "level": "266"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "266",
- "gmsaCredentialSpec": "267",
- "runAsUserName": "268",
+ "gmsaCredentialSpecName": "267",
+ "gmsaCredentialSpec": "268",
+ "runAsUserName": "269",
"hostProcess": false
},
- "runAsUser": 3024893073780181445,
- "runAsGroup": 5005043520982487553,
- "runAsNonRoot": false,
+ "runAsUser": -3342656999442156006,
+ "runAsGroup": -5569844914519516591,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": "垾现葢ŵ橨",
+ "procMount": "¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ",
"seccompProfile": {
- "type": "l獕;跣Hǝcw媀瓄",
- "localhostProfile": "269"
+ "type": "Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
+ "localhostProfile": "270"
}
- }
+ },
+ "stdin": true,
+ "tty": true
}
],
"containers": [
{
- "name": "270",
- "image": "271",
+ "name": "271",
+ "image": "272",
"command": [
- "272"
- ],
- "args": [
"273"
],
- "workingDir": "274",
+ "args": [
+ "274"
+ ],
+ "workingDir": "275",
"ports": [
{
- "name": "275",
- "hostPort": 1868683352,
- "containerPort": -1137436579,
- "protocol": "颶妧Ö闊",
- "hostIP": "276"
+ "name": "276",
+ "hostPort": -825277526,
+ "containerPort": 1157117817,
+ "hostIP": "277"
}
],
"envFrom": [
{
- "prefix": "277",
+ "prefix": "278",
"configMapRef": {
- "name": "278",
+ "name": "279",
"optional": false
},
"secretRef": {
- "name": "279",
- "optional": true
+ "name": "280",
+ "optional": false
}
}
],
"env": [
{
- "name": "280",
- "value": "281",
+ "name": "281",
+ "value": "282",
"valueFrom": {
"fieldRef": {
- "apiVersion": "282",
- "fieldPath": "283"
+ "apiVersion": "283",
+ "fieldPath": "284"
},
"resourceFieldRef": {
- "containerName": "284",
- "resource": "285",
- "divisor": "381"
+ "containerName": "285",
+ "resource": "286",
+ "divisor": "107"
},
"configMapKeyRef": {
- "name": "286",
- "key": "287",
- "optional": true
+ "name": "287",
+ "key": "288",
+ "optional": false
},
"secretKeyRef": {
- "name": "288",
- "key": "289",
+ "name": "289",
+ "key": "290",
"optional": false
}
}
@@ -821,140 +833,129 @@
],
"resources": {
"limits": {
- "²sNƗ¸g": "50"
+ "琕鶫:顇ə娯Ȱ囌{": "853"
},
"requests": {
- "酊龨δ摖ȱğ_\u003c": "118"
+ "Z龏´DÒȗÔÂɘɢ鬍熖B芭花": "372"
}
},
"volumeMounts": [
{
- "name": "290",
+ "name": "291",
"readOnly": true,
- "mountPath": "291",
- "subPath": "292",
- "mountPropagation": "ƺ蛜6Ɖ飴ɎiǨź",
- "subPathExpr": "293"
+ "mountPath": "292",
+ "subPath": "293",
+ "mountPropagation": "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻",
+ "subPathExpr": "294"
}
],
"volumeDevices": [
{
- "name": "294",
- "devicePath": "295"
+ "name": "295",
+ "devicePath": "296"
}
],
"livenessProbe": {
"exec": {
"command": [
- "296"
+ "297"
]
},
"httpGet": {
- "path": "297",
- "port": 865289071,
- "host": "298",
- "scheme": "iɥ嵐sC8",
+ "path": "298",
+ "port": "299",
+ "host": "300",
+ "scheme": "C\"6x$1s",
"httpHeaders": [
{
- "name": "299",
- "value": "300"
+ "name": "301",
+ "value": "302"
}
]
},
"tcpSocket": {
- "port": -898536659,
- "host": "301"
+ "port": "303",
+ "host": "304"
},
- "initialDelaySeconds": -1513284745,
- "timeoutSeconds": 1258370227,
- "periodSeconds": -414121491,
- "successThreshold": -1862764022,
- "failureThreshold": -300247800,
- "terminationGracePeriodSeconds": 1661310708546756312
+ "gRPC": {
+ "port": 1502643091,
+ "service": "305"
+ },
+ "initialDelaySeconds": -1850786456,
+ "timeoutSeconds": -518160270,
+ "periodSeconds": 1073055345,
+ "successThreshold": 1443329506,
+ "failureThreshold": 480631652,
+ "terminationGracePeriodSeconds": -8518791946699766113
},
"readinessProbe": {
"exec": {
"command": [
- "302"
+ "306"
]
},
"httpGet": {
- "path": "303",
- "port": "304",
- "host": "305",
- "scheme": "yƕ丆録²Ŏ)",
+ "path": "307",
+ "port": 155090390,
+ "host": "308",
+ "scheme": "Ə埮pɵ{WOŭW灬pȭCV擭銆",
"httpHeaders": [
{
- "name": "306",
- "value": "307"
+ "name": "309",
+ "value": "310"
}
]
},
"tcpSocket": {
- "port": 507384491,
- "host": "308"
+ "port": "311",
+ "host": "312"
},
- "initialDelaySeconds": -1117254382,
- "timeoutSeconds": 1354318307,
- "periodSeconds": -1329220997,
- "successThreshold": -1659431885,
- "failureThreshold": -668834933,
- "terminationGracePeriodSeconds": -3376301370309029429
+ "gRPC": {
+ "port": 1137109081,
+ "service": "313"
+ },
+ "initialDelaySeconds": -1896415283,
+ "timeoutSeconds": 1540899353,
+ "periodSeconds": -1330095135,
+ "successThreshold": 1566213732,
+ "failureThreshold": 1697842937,
+ "terminationGracePeriodSeconds": 4015558014521575949
},
"startupProbe": {
"exec": {
"command": [
- "309"
+ "314"
]
},
"httpGet": {
- "path": "310",
- "port": -305362540,
- "host": "311",
- "scheme": "Ǩ繫ʎǑyZ涬P蜷ɔ幩",
+ "path": "315",
+ "port": 2084371155,
+ "host": "316",
+ "scheme": "ɭɪǹ0衷,",
"httpHeaders": [
{
- "name": "312",
- "value": "313"
+ "name": "317",
+ "value": "318"
}
]
},
"tcpSocket": {
- "port": 1167615307,
- "host": "314"
+ "port": 1692740191,
+ "host": "319"
},
- "initialDelaySeconds": 455833230,
- "timeoutSeconds": 1956567721,
- "periodSeconds": 155090390,
- "successThreshold": -2113700533,
- "failureThreshold": -2130294761,
- "terminationGracePeriodSeconds": -3385088507022597813
+ "gRPC": {
+ "port": -260580148,
+ "service": "320"
+ },
+ "initialDelaySeconds": -2146249756,
+ "timeoutSeconds": -1588068441,
+ "periodSeconds": 129997413,
+ "successThreshold": 257855378,
+ "failureThreshold": -1158164196,
+ "terminationGracePeriodSeconds": 3747469357740480836
},
"lifecycle": {
"postStart": {
- "exec": {
- "command": [
- "315"
- ]
- },
- "httpGet": {
- "path": "316",
- "port": 1473407401,
- "host": "317",
- "scheme": "ʐşƧ",
- "httpHeaders": [
- {
- "name": "318",
- "value": "319"
- }
- ]
- },
- "tcpSocket": {
- "port": 199049889,
- "host": "320"
- }
- },
- "preStop": {
"exec": {
"command": [
"321"
@@ -962,117 +963,137 @@
},
"httpGet": {
"path": "322",
- "port": -1952582931,
- "host": "323",
- "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
+ "port": "323",
+ "host": "324",
+ "scheme": "/",
"httpHeaders": [
{
- "name": "324",
- "value": "325"
+ "name": "325",
+ "value": "326"
}
]
},
"tcpSocket": {
- "port": "326",
+ "port": 1616390418,
"host": "327"
}
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "328"
+ ]
+ },
+ "httpGet": {
+ "path": "329",
+ "port": "330",
+ "host": "331",
+ "scheme": "ť嗆u8晲T",
+ "httpHeaders": [
+ {
+ "name": "332",
+ "value": "333"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "334",
+ "host": "335"
+ }
}
},
- "terminationMessagePath": "328",
- "terminationMessagePolicy": ")DŽ髐njʉBn(fǂ",
- "imagePullPolicy": "疪鑳w妕眵笭/9崍",
+ "terminationMessagePath": "336",
+ "imagePullPolicy": "Ŵ壶ƵfȽÃ茓pȓɻ",
"securityContext": {
"capabilities": {
"add": [
- "(娕uE增猍"
+ "ɜ瞍阎lğ Ņ#耗Ǚ("
],
"drop": [
- " xǨŴ壶ƵfȽÃ茓pȓɻ挴ʠɜ瞍"
+ "1ùfŭƽ眝{æ盪泙若`l}Ñ蠂"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "329",
- "role": "330",
- "type": "331",
- "level": "332"
+ "user": "337",
+ "role": "338",
+ "type": "339",
+ "level": "340"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "333",
- "gmsaCredentialSpec": "334",
- "runAsUserName": "335",
- "hostProcess": false
+ "gmsaCredentialSpecName": "341",
+ "gmsaCredentialSpec": "342",
+ "runAsUserName": "343",
+ "hostProcess": true
},
- "runAsUser": 2548453080315983269,
- "runAsGroup": -8236071895143008294,
+ "runAsUser": 2740243472098122859,
+ "runAsGroup": 1777701907934560087,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
- "allowPrivilegeEscalation": false,
- "procMount": "1ùfŭƽ眝{æ盪泙若`l}Ñ蠂",
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "炊礫Ƽ¨Ix糂腂ǂǚŜEuEy竬ʆɞ",
"seccompProfile": {
- "type": "[ƛ^輅",
- "localhostProfile": "336"
+ "type": "}礤铟怖ý萜Ǖc8ǣ",
+ "localhostProfile": "344"
}
- },
- "stdinOnce": true,
- "tty": true
+ }
}
],
"ephemeralContainers": [
{
- "name": "337",
- "image": "338",
+ "name": "345",
+ "image": "346",
"command": [
- "339"
+ "347"
],
"args": [
- "340"
+ "348"
],
- "workingDir": "341",
+ "workingDir": "349",
"ports": [
{
- "name": "342",
- "hostPort": -1977635123,
- "containerPort": 1660454722,
- "protocol": "礫Ƽ¨Ix糂腂ǂǚŜEu",
- "hostIP": "343"
+ "name": "350",
+ "hostPort": -36573584,
+ "containerPort": -587859607,
+ "protocol": "宆!鍲ɋȑoG鄧蜢暳ǽżLj捲攻xƂ",
+ "hostIP": "351"
}
],
"envFrom": [
{
- "prefix": "344",
+ "prefix": "352",
"configMapRef": {
- "name": "345",
+ "name": "353",
"optional": true
},
"secretRef": {
- "name": "346",
+ "name": "354",
"optional": true
}
}
],
"env": [
{
- "name": "347",
- "value": "348",
+ "name": "355",
+ "value": "356",
"valueFrom": {
"fieldRef": {
- "apiVersion": "349",
- "fieldPath": "350"
+ "apiVersion": "357",
+ "fieldPath": "358"
},
"resourceFieldRef": {
- "containerName": "351",
- "resource": "352",
- "divisor": "741"
+ "containerName": "359",
+ "resource": "360",
+ "divisor": "833"
},
"configMapKeyRef": {
- "name": "353",
- "key": "354",
- "optional": true
+ "name": "361",
+ "key": "362",
+ "optional": false
},
"secretKeyRef": {
- "name": "355",
- "key": "356",
+ "name": "363",
+ "key": "364",
"optional": false
}
}
@@ -1080,256 +1101,268 @@
],
"resources": {
"limits": {
- "ý萜Ǖc": "275"
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
},
"requests": {
- "Ƒĝ®EĨǔvÄÚ×p鬷m": "69"
+ "G": "705"
}
},
"volumeMounts": [
{
- "name": "357",
- "readOnly": true,
- "mountPath": "358",
- "subPath": "359",
- "mountPropagation": "暳ǽżLj捲攻xƂ9阠$嬏wy¶熀",
- "subPathExpr": "360"
+ "name": "365",
+ "mountPath": "366",
+ "subPath": "367",
+ "mountPropagation": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ",
+ "subPathExpr": "368"
}
],
"volumeDevices": [
{
- "name": "361",
- "devicePath": "362"
+ "name": "369",
+ "devicePath": "370"
}
],
"livenessProbe": {
"exec": {
"command": [
- "363"
+ "371"
]
},
"httpGet": {
- "path": "364",
- "port": "365",
- "host": "366",
- "scheme": "裡×銵-紑浘牬釼",
- "httpHeaders": [
- {
- "name": "367",
- "value": "368"
- }
- ]
- },
- "tcpSocket": {
- "port": 1648539888,
- "host": "369"
- },
- "initialDelaySeconds": 762856658,
- "timeoutSeconds": -1898251770,
- "periodSeconds": 713473395,
- "successThreshold": -912220708,
- "failureThreshold": -92253969,
- "terminationGracePeriodSeconds": 1046110838271944058
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "370"
- ]
- },
- "httpGet": {
- "path": "371",
- "port": 1797904220,
- "host": "372",
- "scheme": "羹",
- "httpHeaders": [
- {
- "name": "373",
- "value": "374"
- }
- ]
- },
- "tcpSocket": {
- "port": "375",
- "host": "376"
- },
- "initialDelaySeconds": -1510210852,
- "timeoutSeconds": 1604463080,
- "periodSeconds": 1770824317,
- "successThreshold": -1736247571,
- "failureThreshold": 1504775716,
- "terminationGracePeriodSeconds": 8657972883429789645
- },
- "startupProbe": {
- "exec": {
- "command": [
- "377"
- ]
- },
- "httpGet": {
- "path": "378",
- "port": 1859267428,
- "host": "379",
+ "path": "372",
+ "port": "373",
+ "host": "374",
"scheme": "ȟP",
"httpHeaders": [
{
- "name": "380",
- "value": "381"
+ "name": "375",
+ "value": "376"
}
]
},
"tcpSocket": {
"port": 1445923603,
- "host": "382"
+ "host": "377"
},
- "initialDelaySeconds": 2040952835,
- "timeoutSeconds": -1101457109,
- "periodSeconds": -513325570,
- "successThreshold": 1491794693,
- "failureThreshold": -1457715462,
- "terminationGracePeriodSeconds": 5797412715505520759
+ "gRPC": {
+ "port": -1447808835,
+ "service": "378"
+ },
+ "initialDelaySeconds": 1304378059,
+ "timeoutSeconds": -1738065470,
+ "periodSeconds": 71888222,
+ "successThreshold": -353088012,
+ "failureThreshold": 336203895,
+ "terminationGracePeriodSeconds": -1123471466011207477
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "¯ÁȦtl敷斢",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "385",
+ "host": "386"
+ },
+ "gRPC": {
+ "port": 494494744,
+ "service": "387"
+ },
+ "initialDelaySeconds": -578081758,
+ "timeoutSeconds": 1290872770,
+ "periodSeconds": -547346163,
+ "successThreshold": -786927040,
+ "failureThreshold": -585628051,
+ "terminationGracePeriodSeconds": 8850141386971124227
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "388"
+ ]
+ },
+ "httpGet": {
+ "path": "389",
+ "port": -2011369579,
+ "host": "390",
+ "scheme": "忀oɎƺL肄$鬬",
+ "httpHeaders": [
+ {
+ "name": "391",
+ "value": "392"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -1128805635,
+ "host": "393"
+ },
+ "gRPC": {
+ "port": 253035196,
+ "service": "394"
+ },
+ "initialDelaySeconds": 1683993464,
+ "timeoutSeconds": -371229129,
+ "periodSeconds": -614393357,
+ "successThreshold": -183458945,
+ "failureThreshold": -1223327585,
+ "terminationGracePeriodSeconds": -425547479604104324
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "383"
+ "395"
]
},
"httpGet": {
- "path": "384",
- "port": "385",
- "host": "386",
- "scheme": "V",
+ "path": "396",
+ "port": "397",
+ "host": "398",
+ "scheme": "湷D谹気Ƀ秮òƬɸĻo:{",
"httpHeaders": [
{
- "name": "387",
- "value": "388"
+ "name": "399",
+ "value": "400"
}
]
},
"tcpSocket": {
- "port": 1791758702,
- "host": "389"
+ "port": "401",
+ "host": "402"
}
},
"preStop": {
"exec": {
"command": [
- "390"
+ "403"
]
},
"httpGet": {
- "path": "391",
- "port": "392",
- "host": "393",
- "scheme": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o",
+ "path": "404",
+ "port": -752447038,
+ "host": "405",
+ "scheme": "*劶?jĎĭ¥#Ʊ",
"httpHeaders": [
{
- "name": "394",
- "value": "395"
+ "name": "406",
+ "value": "407"
}
]
},
"tcpSocket": {
- "port": -1082980401,
- "host": "396"
+ "port": "408",
+ "host": "409"
}
}
},
- "terminationMessagePath": "397",
- "terminationMessagePolicy": "肄$鬬",
- "imagePullPolicy": "ʈʫ羶剹ƊF豎穜",
+ "terminationMessagePath": "410",
+ "terminationMessagePolicy": "»淹揀.e鍃G昧牱",
+ "imagePullPolicy": "Ï 瞍髃#ɣȕW歹s梊ɥʋăƻ遲njl",
"securityContext": {
"capabilities": {
"add": [
- "咑耖p^鏋蛹Ƚȿ醏g"
+ "KƂʼnçȶŮ嫠!@@)Z"
],
"drop": [
- "Ȋ飂廤Ƌʙcx赮ǒđ\u003e*劶?jĎ"
+ "=歍þ"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "398",
- "role": "399",
- "type": "400",
- "level": "401"
+ "user": "411",
+ "role": "412",
+ "type": "413",
+ "level": "414"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "402",
- "gmsaCredentialSpec": "403",
- "runAsUserName": "404",
+ "gmsaCredentialSpecName": "415",
+ "gmsaCredentialSpec": "416",
+ "runAsUserName": "417",
"hostProcess": true
},
- "runAsUser": -3365965984794126745,
- "runAsGroup": 7755347487915595851,
+ "runAsUser": 8572105301692435343,
+ "runAsGroup": 7479459484302716044,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": "e",
+ "procMount": "¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸",
"seccompProfile": {
- "type": "G昧牱fsǕT衩kƒK07曳wœj堑",
- "localhostProfile": "405"
+ "type": "Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh",
+ "localhostProfile": "418"
}
},
- "stdin": true,
+ "stdinOnce": true,
"tty": true,
- "targetContainerName": "406"
+ "targetContainerName": "419"
}
],
- "restartPolicy": "鈱ɖ'蠨磼O_h盌3+Œ9两@8",
- "terminationGracePeriodSeconds": 8904478052175112945,
- "activeDeadlineSeconds": -560099625007040954,
- "dnsPolicy": "螗ɃŒGm¨z鋎靀",
+ "restartPolicy": "hȱɷȰW瀤oɢ嫎",
+ "terminationGracePeriodSeconds": -7488651211709812271,
+ "activeDeadlineSeconds": 3874939679796659278,
+ "dnsPolicy": "G喾@潷ƹ8ï",
"nodeSelector": {
- "407": "408"
+ "420": "421"
},
- "serviceAccountName": "409",
- "serviceAccount": "410",
+ "serviceAccountName": "422",
+ "serviceAccount": "423",
"automountServiceAccountToken": true,
- "nodeName": "411",
+ "nodeName": "424",
"hostNetwork": true,
- "shareProcessNamespace": true,
+ "hostPID": true,
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "412",
- "role": "413",
- "type": "414",
- "level": "415"
+ "user": "425",
+ "role": "426",
+ "type": "427",
+ "level": "428"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "416",
- "gmsaCredentialSpec": "417",
- "runAsUserName": "418",
+ "gmsaCredentialSpecName": "429",
+ "gmsaCredentialSpec": "430",
+ "runAsUserName": "431",
"hostProcess": true
},
- "runAsUser": 107192836721418523,
- "runAsGroup": -3019907599090873206,
+ "runAsUser": -1357828024706138776,
+ "runAsGroup": -3501425899000054955,
"runAsNonRoot": true,
"supplementalGroups": [
- 5333609790435719468
+ 8102472596003640481
],
- "fsGroup": 2700145646260085226,
+ "fsGroup": 6543873941346781273,
"sysctls": [
{
- "name": "419",
- "value": "420"
+ "name": "432",
+ "value": "433"
}
],
- "fsGroupChangePolicy": "灭ƴɦ燻踸陴Sĕ濦",
+ "fsGroupChangePolicy": "E1º轪d覉;Ĕ颪œ",
"seccompProfile": {
- "type": "ɻŊ0",
- "localhostProfile": "421"
+ "type": "洈愥朘ZDŽʤ搤ȃ$|gɳ礬",
+ "localhostProfile": "434"
}
},
"imagePullSecrets": [
{
- "name": "422"
+ "name": "435"
}
],
- "hostname": "423",
- "subdomain": "424",
+ "hostname": "436",
+ "subdomain": "437",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1337,19 +1370,19 @@
{
"matchExpressions": [
{
- "key": "425",
- "operator": "",
+ "key": "438",
+ "operator": "蹶/ʗp壥Ƥ揤郡",
"values": [
- "426"
+ "439"
]
}
],
"matchFields": [
{
- "key": "427",
- "operator": "b轫ʓ滨ĖRh}颉hȱɷȰW",
+ "key": "440",
+ "operator": "z委\u003e,趐V曡88 ",
"values": [
- "428"
+ "441"
]
}
]
@@ -1358,23 +1391,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 903393545,
+ "weight": 2001418580,
"preference": {
"matchExpressions": [
{
- "key": "429",
- "operator": "嫎¸殚篎3o8[y#t(",
+ "key": "442",
+ "operator": "ù灹8緔Tj§E蓋",
"values": [
- "430"
+ "443"
]
}
],
"matchFields": [
{
- "key": "431",
- "operator": "¯rƈa餖Ľƛ淴ɑ?¶Ȳ",
+ "key": "444",
+ "operator": "Zɀȩ",
"values": [
- "432"
+ "445"
]
}
]
@@ -1387,33 +1420,27 @@
{
"labelSelector": {
"matchLabels": {
- "8v--xk-gr-2/5-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6SN": "S"
+ "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q": "4XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0Ht"
},
"matchExpressions": [
{
- "key": "0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7",
- "operator": "NotIn",
- "values": [
- "V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX3"
- ]
+ "key": "7Vz_6.Hz_V_.r_v_._X",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "439"
+ "452"
],
- "topologyKey": "440",
+ "topologyKey": "453",
"namespaceSelector": {
"matchLabels": {
- "5023-lt3-w-br75gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-g.4-----385h---0-u73phjo--8kb6--ut---p8--3-e-3-44---h-q7-ps/HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxB": "w-W_-E"
+ "7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5": "yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC1"
},
"matchExpressions": [
{
- "key": "75p1em---1wwv3-f/k47M7y-Dy__3wcq",
- "operator": "NotIn",
- "values": [
- "x4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-A"
- ]
+ "key": "a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--G",
+ "operator": "Exists"
}
]
}
@@ -1421,34 +1448,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 199195373,
+ "weight": 76443899,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "w_--5-_.3--_9QW2JkU27_.-4T-9": "4.K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._4"
+ "p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/N7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._i": "wvU"
},
"matchExpressions": [
{
- "key": "J-_.ZCRT.0z-oe.G79.3bU_._nV34GH",
- "operator": "DoesNotExist"
+ "key": "4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W",
+ "operator": "In",
+ "values": [
+ "2-.s_6O-5_7_-0w_--5-_.3--_9QWJ"
+ ]
}
]
},
"namespaces": [
- "453"
+ "466"
],
- "topologyKey": "454",
+ "topologyKey": "467",
"namespaceSelector": {
"matchLabels": {
- "5i-z-s--o8t5-l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b9/ERG2nV.__Y": "T_YT.1--3"
+ "14i": "07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_CG"
},
"matchExpressions": [
{
- "key": "3_Lsu-H_.f82-82",
- "operator": "NotIn",
- "values": [
- "P6j.u--.K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nI"
- ]
+ "key": "fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5",
+ "operator": "Exists"
}
]
}
@@ -1461,29 +1488,29 @@
{
"labelSelector": {
"matchLabels": {
- "t1n13sx82-cx-4q/Lbk81S3.T": "d"
+ "6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0----p6l-3-znd-b/D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-1WV.-__05._Lsu-H_.f82-8_U": "55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3M"
},
"matchExpressions": [
{
- "key": "l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/i..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_D7RufiV-7uu",
- "operator": "DoesNotExist"
+ "key": "pT-___-_5-6h_Ky7-_0Vw-Nzfdw.30",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "467"
+ "480"
],
- "topologyKey": "468",
+ "topologyKey": "481",
"namespaceSelector": {
"matchLabels": {
- "f_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__78": "O-._-_8_.._._a-.N.__-_._.3l-_86_u2-7_._qN__A_f_B"
+ "l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/5_D7RufiV-7uu": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p"
},
"matchExpressions": [
{
- "key": "U__L.KH6K.RwsfI_j",
- "operator": "In",
+ "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b",
+ "operator": "NotIn",
"values": [
- ""
+ "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m"
]
}
]
@@ -1492,36 +1519,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1560053496,
+ "weight": -512304328,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "5396hq/v..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35HB": "u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-Z"
+ "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h": "16-...98m.p-kq.ByM1_..H1z..j_.r3--mT8vo"
},
"matchExpressions": [
{
- "key": "ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh",
- "operator": "In",
- "values": [
- "7.W74-R_Z_Tz.a3_HWo4_6"
- ]
+ "key": "y--03-64-8l7-l-0787-1.t655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---494/q-I_i72Tx3___-..f5-6x-_-o_6O_If-5_-_._F-09z02.4Z1",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "481"
+ "494"
],
- "topologyKey": "482",
+ "topologyKey": "495",
"namespaceSelector": {
"matchLabels": {
- "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i"
+ "8-f2-ge-a--q6--sea-c-zz----0-d---z--3c9-47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/4--_63-Nz23.Ya-C3-._-l__KSvV-8-L__C_60-__.1S": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
},
"matchExpressions": [
{
- "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV",
+ "key": "KTlO.__0PX",
"operator": "In",
"values": [
- "x3___-..f5-6x-_-o_6O_If-5_-_.F"
+ "V6K_.3_583-6.f-.9-.V..Q-K_6_3"
]
}
]
@@ -1531,96 +1555,93 @@
]
}
},
- "schedulerName": "489",
+ "schedulerName": "502",
"tolerations": [
{
- "key": "490",
- "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
- "value": "491",
- "effect": "慰x:",
- "tolerationSeconds": 3362400521064014157
+ "key": "503",
+ "operator": "Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏",
+ "value": "504",
+ "effect": "r埁摢噓涫祲ŗȨĽ堐mpƮ搌",
+ "tolerationSeconds": 6217170132371410053
}
],
"hostAliases": [
{
- "ip": "492",
+ "ip": "505",
"hostnames": [
- "493"
+ "506"
]
}
],
- "priorityClassName": "494",
- "priority": 743241089,
+ "priorityClassName": "507",
+ "priority": -1371816595,
"dnsConfig": {
"nameservers": [
- "495"
+ "508"
],
"searches": [
- "496"
+ "509"
],
"options": [
{
- "name": "497",
- "value": "498"
+ "name": "510",
+ "value": "511"
}
]
},
"readinessGates": [
{
- "conditionType": "0yVA嬂刲;牆詒ĸąs"
+ "conditionType": "?ȣ4c"
}
],
- "runtimeClassName": "499",
+ "runtimeClassName": "512",
"enableServiceLinks": false,
- "preemptionPolicy": "Iƭij韺ʧ\u003e",
+ "preemptionPolicy": "%ǁšjƾ$ʛ螳%65c3盧Ŷb",
"overhead": {
- "D傕Ɠ栊闔虝巒瀦ŕ": "124"
+ "ʬÇ[輚趞ț@": "597"
},
"topologySpreadConstraints": [
{
- "maxSkew": -174245111,
- "topologyKey": "500",
- "whenUnsatisfiable": "",
+ "maxSkew": 1762898358,
+ "topologyKey": "513",
+ "whenUnsatisfiable": "ʚʛ\u0026]ŶɄğɒơ舎",
"labelSelector": {
"matchLabels": {
- "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
+ "5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w": "j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7"
},
"matchExpressions": [
{
- "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
- "operator": "In",
- "values": [
- "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
- ]
+ "key": "kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V",
+ "operator": "Exists"
}
]
}
}
],
- "setHostnameAsFQDN": true,
+ "setHostnameAsFQDN": false,
"os": {
- "name": "+\u0026ɃB沅零șPî壣"
+ "name": "%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ"
}
}
},
- "ttlSecondsAfterFinished": -2008027992,
- "completionMode": "蒡",
- "suspend": false
+ "ttlSecondsAfterFinished": -1905218436,
+ "completionMode": "mʦ獪",
+ "suspend": true
}
},
- "successfulJobsHistoryLimit": -1190434752,
- "failedJobsHistoryLimit": -212409426
+ "successfulJobsHistoryLimit": -860626688,
+ "failedJobsHistoryLimit": 1630051801
},
"status": {
"active": [
{
- "kind": "507",
- "namespace": "508",
- "name": "509",
- "uid": "蒱鄆\u0026嬜Š\u0026?鳢.ǀŭ瘢颦",
- "apiVersion": "510",
- "resourceVersion": "511",
- "fieldPath": "512"
+ "kind": "520",
+ "namespace": "521",
+ "name": "522",
+ "uid": "砽§^Dê婼SƸ炃\u0026-Ƹ绿",
+ "apiVersion": "523",
+ "resourceVersion": "524",
+ "fieldPath": "525"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb
index 2a2f580cbeb..17526e83348 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml
index 861900c8f37..d3c9e5016bb 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml
@@ -32,7 +32,7 @@ metadata:
uid: "7"
spec:
concurrencyPolicy: Hr鯹)晿,趐V曡88 '
values:
- - "428"
+ - "441"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: J-_.ZCRT.0z-oe.G79.3bU_._nV34GH
- operator: DoesNotExist
+ - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W
+ operator: In
+ values:
+ - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels:
- w_--5-_.3--_9QW2JkU27_.-4T-9: 4.K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._4
+ p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/N7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._i: wvU
namespaceSelector:
matchExpressions:
- - key: 3_Lsu-H_.f82-82
- operator: NotIn
- values:
- - P6j.u--.K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nI
+ - key: fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5
+ operator: Exists
matchLabels:
- 5i-z-s--o8t5-l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b9/ERG2nV.__Y: T_YT.1--3
+ 14i: 07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_CG
namespaces:
- - "453"
- topologyKey: "454"
- weight: 199195373
+ - "466"
+ topologyKey: "467"
+ weight: 76443899
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7
- operator: NotIn
- values:
- - V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX3
+ - key: 7Vz_6.Hz_V_.r_v_._X
+ operator: Exists
matchLabels:
- 8v--xk-gr-2/5-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6SN: S
+ 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q: 4XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0Ht
namespaceSelector:
matchExpressions:
- - key: 75p1em---1wwv3-f/k47M7y-Dy__3wcq
- operator: NotIn
- values:
- - x4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-A
+ - key: a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--G
+ operator: Exists
matchLabels:
- ? 5023-lt3-w-br75gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-g.4-----385h---0-u73phjo--8kb6--ut---p8--3-e-3-44---h-q7-ps/HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxB
- : w-W_-E
+ 7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5: yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC1
namespaces:
- - "439"
- topologyKey: "440"
+ - "452"
+ topologyKey: "453"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh
- operator: In
- values:
- - 7.W74-R_Z_Tz.a3_HWo4_6
+ - key: y--03-64-8l7-l-0787-1.t655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---494/q-I_i72Tx3___-..f5-6x-_-o_6O_If-5_-_._F-09z02.4Z1
+ operator: Exists
matchLabels:
- 5396hq/v..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35HB: u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-Z
+ v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h: 16-...98m.p-kq.ByM1_..H1z..j_.r3--mT8vo
namespaceSelector:
matchExpressions:
- - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
+ - key: KTlO.__0PX
operator: In
values:
- - x3___-..f5-6x-_-o_6O_If-5_-_.F
+ - V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
- h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
+ ? 8-f2-ge-a--q6--sea-c-zz----0-d---z--3c9-47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/4--_63-Nz23.Ya-C3-._-l__KSvV-8-L__C_60-__.1S
+ : u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
namespaces:
- - "481"
- topologyKey: "482"
- weight: 1560053496
+ - "494"
+ topologyKey: "495"
+ weight: -512304328
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/i..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_D7RufiV-7uu
- operator: DoesNotExist
+ - key: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.30
+ operator: Exists
matchLabels:
- t1n13sx82-cx-4q/Lbk81S3.T: d
+ 6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0----p6l-3-znd-b/D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-1WV.-__05._Lsu-H_.f82-8_U: 55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3M
namespaceSelector:
matchExpressions:
- - key: U__L.KH6K.RwsfI_j
- operator: In
+ - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
+ operator: NotIn
values:
- - ""
+ - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
- f_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__78: O-._-_8_.._._a-.N.__-_._.3l-_86_u2-7_._qN__A_f_B
+ l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/5_D7RufiV-7uu: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
namespaces:
- - "467"
- topologyKey: "468"
+ - "480"
+ topologyKey: "481"
automountServiceAccountToken: true
containers:
- args:
- - "273"
+ - "274"
command:
- - "272"
+ - "273"
env:
- - name: "280"
- value: "281"
+ - name: "281"
+ value: "282"
valueFrom:
configMapKeyRef:
- key: "287"
- name: "286"
- optional: true
+ key: "288"
+ name: "287"
+ optional: false
fieldRef:
- apiVersion: "282"
- fieldPath: "283"
+ apiVersion: "283"
+ fieldPath: "284"
resourceFieldRef:
- containerName: "284"
- divisor: "381"
- resource: "285"
+ containerName: "285"
+ divisor: "107"
+ resource: "286"
secretKeyRef:
- key: "289"
- name: "288"
+ key: "290"
+ name: "289"
optional: false
envFrom:
- configMapRef:
- name: "278"
- optional: false
- prefix: "277"
- secretRef:
name: "279"
- optional: true
- image: "271"
- imagePullPolicy: 疪鑳w妕眵笭/9崍
+ optional: false
+ prefix: "278"
+ secretRef:
+ name: "280"
+ optional: false
+ image: "272"
+ imagePullPolicy: Ŵ壶ƵfȽÃ茓pȓɻ
lifecycle:
postStart:
- exec:
- command:
- - "315"
- httpGet:
- host: "317"
- httpHeaders:
- - name: "318"
- value: "319"
- path: "316"
- port: 1473407401
- scheme: ʐşƧ
- tcpSocket:
- host: "320"
- port: 199049889
- preStop:
exec:
command:
- "321"
httpGet:
- host: "323"
+ host: "324"
httpHeaders:
- - name: "324"
- value: "325"
+ - name: "325"
+ value: "326"
path: "322"
- port: -1952582931
- scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
+ port: "323"
+ scheme: /
tcpSocket:
host: "327"
- port: "326"
+ port: 1616390418
+ preStop:
+ exec:
+ command:
+ - "328"
+ httpGet:
+ host: "331"
+ httpHeaders:
+ - name: "332"
+ value: "333"
+ path: "329"
+ port: "330"
+ scheme: ť嗆u8晲T
+ tcpSocket:
+ host: "335"
+ port: "334"
livenessProbe:
exec:
command:
- - "296"
- failureThreshold: -300247800
+ - "297"
+ failureThreshold: 480631652
+ gRPC:
+ port: 1502643091
+ service: "305"
httpGet:
- host: "298"
+ host: "300"
httpHeaders:
- - name: "299"
- value: "300"
- path: "297"
- port: 865289071
- scheme: iɥ嵐sC8
- initialDelaySeconds: -1513284745
- periodSeconds: -414121491
- successThreshold: -1862764022
+ - name: "301"
+ value: "302"
+ path: "298"
+ port: "299"
+ scheme: C"6x$1s
+ initialDelaySeconds: -1850786456
+ periodSeconds: 1073055345
+ successThreshold: 1443329506
tcpSocket:
- host: "301"
- port: -898536659
- terminationGracePeriodSeconds: 1661310708546756312
- timeoutSeconds: 1258370227
- name: "270"
+ host: "304"
+ port: "303"
+ terminationGracePeriodSeconds: -8518791946699766113
+ timeoutSeconds: -518160270
+ name: "271"
ports:
- - containerPort: -1137436579
- hostIP: "276"
- hostPort: 1868683352
- name: "275"
- protocol: 颶妧Ö闊
+ - containerPort: 1157117817
+ hostIP: "277"
+ hostPort: -825277526
+ name: "276"
readinessProbe:
exec:
command:
- - "302"
- failureThreshold: -668834933
+ - "306"
+ failureThreshold: 1697842937
+ gRPC:
+ port: 1137109081
+ service: "313"
httpGet:
- host: "305"
- httpHeaders:
- - name: "306"
- value: "307"
- path: "303"
- port: "304"
- scheme: yƕ丆録²Ŏ)
- initialDelaySeconds: -1117254382
- periodSeconds: -1329220997
- successThreshold: -1659431885
- tcpSocket:
host: "308"
- port: 507384491
- terminationGracePeriodSeconds: -3376301370309029429
- timeoutSeconds: 1354318307
+ httpHeaders:
+ - name: "309"
+ value: "310"
+ path: "307"
+ port: 155090390
+ scheme: Ə埮pɵ{WOŭW灬pȭCV擭銆
+ initialDelaySeconds: -1896415283
+ periodSeconds: -1330095135
+ successThreshold: 1566213732
+ tcpSocket:
+ host: "312"
+ port: "311"
+ terminationGracePeriodSeconds: 4015558014521575949
+ timeoutSeconds: 1540899353
resources:
limits:
- ²sNƗ¸g: "50"
+ 琕鶫:顇ə娯Ȱ囌{: "853"
requests:
- 酊龨δ摖ȱğ_<: "118"
+ Z龏´DÒȗÔÂɘɢ鬍熖B芭花: "372"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - (娕uE增猍
+ - ɜ瞍阎lğ Ņ#耗Ǚ(
drop:
- - ' xǨŴ壶ƵfȽÃ茓pȓɻ挴ʠɜ瞍'
+ - 1ùfŭƽ眝{æ盪泙若`l}Ñ蠂
privileged: true
- procMount: 1ùfŭƽ眝{æ盪泙若`l}Ñ蠂
- readOnlyRootFilesystem: true
- runAsGroup: -8236071895143008294
+ procMount: 炊礫Ƽ¨Ix糂腂ǂǚŜEuEy竬ʆɞ
+ readOnlyRootFilesystem: false
+ runAsGroup: 1777701907934560087
runAsNonRoot: false
- runAsUser: 2548453080315983269
+ runAsUser: 2740243472098122859
seLinuxOptions:
- level: "332"
- role: "330"
- type: "331"
- user: "329"
+ level: "340"
+ role: "338"
+ type: "339"
+ user: "337"
seccompProfile:
- localhostProfile: "336"
- type: '[ƛ^輅'
+ localhostProfile: "344"
+ type: '}礤铟怖ý萜Ǖc8ǣ'
windowsOptions:
- gmsaCredentialSpec: "334"
- gmsaCredentialSpecName: "333"
- hostProcess: false
- runAsUserName: "335"
+ gmsaCredentialSpec: "342"
+ gmsaCredentialSpecName: "341"
+ hostProcess: true
+ runAsUserName: "343"
startupProbe:
exec:
command:
- - "309"
- failureThreshold: -2130294761
+ - "314"
+ failureThreshold: -1158164196
+ gRPC:
+ port: -260580148
+ service: "320"
httpGet:
- host: "311"
+ host: "316"
httpHeaders:
- - name: "312"
- value: "313"
- path: "310"
- port: -305362540
- scheme: Ǩ繫ʎǑyZ涬P蜷ɔ幩
- initialDelaySeconds: 455833230
- periodSeconds: 155090390
- successThreshold: -2113700533
+ - name: "317"
+ value: "318"
+ path: "315"
+ port: 2084371155
+ scheme: ɭɪǹ0衷,
+ initialDelaySeconds: -2146249756
+ periodSeconds: 129997413
+ successThreshold: 257855378
tcpSocket:
- host: "314"
- port: 1167615307
- terminationGracePeriodSeconds: -3385088507022597813
- timeoutSeconds: 1956567721
- stdinOnce: true
- terminationMessagePath: "328"
- terminationMessagePolicy: )DŽ髐njʉBn(fǂ
- tty: true
+ host: "319"
+ port: 1692740191
+ terminationGracePeriodSeconds: 3747469357740480836
+ timeoutSeconds: -1588068441
+ terminationMessagePath: "336"
volumeDevices:
- - devicePath: "295"
- name: "294"
+ - devicePath: "296"
+ name: "295"
volumeMounts:
- - mountPath: "291"
- mountPropagation: ƺ蛜6Ɖ飴ɎiǨź
- name: "290"
+ - mountPath: "292"
+ mountPropagation: 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻
+ name: "291"
readOnly: true
- subPath: "292"
- subPathExpr: "293"
- workingDir: "274"
+ subPath: "293"
+ subPathExpr: "294"
+ workingDir: "275"
dnsConfig:
nameservers:
- - "495"
+ - "508"
options:
- - name: "497"
- value: "498"
+ - name: "510"
+ value: "511"
searches:
- - "496"
- dnsPolicy: 螗ɃŒGm¨z鋎靀
+ - "509"
+ dnsPolicy: G喾@潷ƹ8ï
enableServiceLinks: false
ephemeralContainers:
- args:
- - "340"
+ - "348"
command:
- - "339"
+ - "347"
env:
- - name: "347"
- value: "348"
+ - name: "355"
+ value: "356"
valueFrom:
configMapKeyRef:
- key: "354"
- name: "353"
- optional: true
+ key: "362"
+ name: "361"
+ optional: false
fieldRef:
- apiVersion: "349"
- fieldPath: "350"
+ apiVersion: "357"
+ fieldPath: "358"
resourceFieldRef:
- containerName: "351"
- divisor: "741"
- resource: "352"
+ containerName: "359"
+ divisor: "833"
+ resource: "360"
secretKeyRef:
- key: "356"
- name: "355"
+ key: "364"
+ name: "363"
optional: false
envFrom:
- configMapRef:
- name: "345"
+ name: "353"
optional: true
- prefix: "344"
+ prefix: "352"
secretRef:
- name: "346"
+ name: "354"
optional: true
- image: "338"
- imagePullPolicy: ʈʫ羶剹ƊF豎穜
+ image: "346"
+ imagePullPolicy: Ï 瞍髃#ɣȕW歹s梊ɥʋăƻ遲njl
lifecycle:
postStart:
exec:
command:
- - "383"
+ - "395"
httpGet:
- host: "386"
+ host: "398"
httpHeaders:
- - name: "387"
- value: "388"
- path: "384"
- port: "385"
- scheme: V
+ - name: "399"
+ value: "400"
+ path: "396"
+ port: "397"
+ scheme: 湷D谹気Ƀ秮òƬɸĻo:{
tcpSocket:
- host: "389"
- port: 1791758702
+ host: "402"
+ port: "401"
preStop:
exec:
command:
- - "390"
+ - "403"
httpGet:
- host: "393"
+ host: "405"
httpHeaders:
- - name: "394"
- value: "395"
- path: "391"
- port: "392"
- scheme: \Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o
+ - name: "406"
+ value: "407"
+ path: "404"
+ port: -752447038
+ scheme: '*劶?jĎĭ¥#Ʊ'
tcpSocket:
- host: "396"
- port: -1082980401
+ host: "409"
+ port: "408"
livenessProbe:
exec:
command:
- - "363"
- failureThreshold: -92253969
+ - "371"
+ failureThreshold: 336203895
+ gRPC:
+ port: -1447808835
+ service: "378"
httpGet:
- host: "366"
+ host: "374"
httpHeaders:
- - name: "367"
- value: "368"
- path: "364"
- port: "365"
- scheme: 裡×銵-紑浘牬釼
- initialDelaySeconds: 762856658
- periodSeconds: 713473395
- successThreshold: -912220708
+ - name: "375"
+ value: "376"
+ path: "372"
+ port: "373"
+ scheme: ȟP
+ initialDelaySeconds: 1304378059
+ periodSeconds: 71888222
+ successThreshold: -353088012
tcpSocket:
- host: "369"
- port: 1648539888
- terminationGracePeriodSeconds: 1046110838271944058
- timeoutSeconds: -1898251770
- name: "337"
+ host: "377"
+ port: 1445923603
+ terminationGracePeriodSeconds: -1123471466011207477
+ timeoutSeconds: -1738065470
+ name: "345"
ports:
- - containerPort: 1660454722
- hostIP: "343"
- hostPort: -1977635123
- name: "342"
- protocol: 礫Ƽ¨Ix糂腂ǂǚŜEu
+ - containerPort: -587859607
+ hostIP: "351"
+ hostPort: -36573584
+ name: "350"
+ protocol: 宆!鍲ɋȑoG鄧蜢暳ǽżLj捲攻xƂ
readinessProbe:
exec:
command:
- - "370"
- failureThreshold: 1504775716
+ - "379"
+ failureThreshold: -585628051
+ gRPC:
+ port: 494494744
+ service: "387"
httpGet:
- host: "372"
+ host: "382"
httpHeaders:
- - name: "373"
- value: "374"
- path: "371"
- port: 1797904220
- scheme: 羹
- initialDelaySeconds: -1510210852
- periodSeconds: 1770824317
- successThreshold: -1736247571
+ - name: "383"
+ value: "384"
+ path: "380"
+ port: "381"
+ scheme: ¯ÁȦtl敷斢
+ initialDelaySeconds: -578081758
+ periodSeconds: -547346163
+ successThreshold: -786927040
tcpSocket:
- host: "376"
- port: "375"
- terminationGracePeriodSeconds: 8657972883429789645
- timeoutSeconds: 1604463080
+ host: "386"
+ port: "385"
+ terminationGracePeriodSeconds: 8850141386971124227
+ timeoutSeconds: 1290872770
resources:
limits:
- ý萜Ǖc: "275"
+ Z漤ŗ坟Ů*劶?jĎ
+ - =歍þ
privileged: false
- procMount: e
- readOnlyRootFilesystem: false
- runAsGroup: 7755347487915595851
+ procMount: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸
+ readOnlyRootFilesystem: true
+ runAsGroup: 7479459484302716044
runAsNonRoot: false
- runAsUser: -3365965984794126745
+ runAsUser: 8572105301692435343
seLinuxOptions:
- level: "401"
- role: "399"
- type: "400"
- user: "398"
+ level: "414"
+ role: "412"
+ type: "413"
+ user: "411"
seccompProfile:
- localhostProfile: "405"
- type: G昧牱fsǕT衩kƒK07曳wœj堑
+ localhostProfile: "418"
+ type: Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh
windowsOptions:
- gmsaCredentialSpec: "403"
- gmsaCredentialSpecName: "402"
+ gmsaCredentialSpec: "416"
+ gmsaCredentialSpecName: "415"
hostProcess: true
- runAsUserName: "404"
+ runAsUserName: "417"
startupProbe:
exec:
command:
- - "377"
- failureThreshold: -1457715462
+ - "388"
+ failureThreshold: -1223327585
+ gRPC:
+ port: 253035196
+ service: "394"
httpGet:
- host: "379"
+ host: "390"
httpHeaders:
- - name: "380"
- value: "381"
- path: "378"
- port: 1859267428
- scheme: ȟP
- initialDelaySeconds: 2040952835
- periodSeconds: -513325570
- successThreshold: 1491794693
+ - name: "391"
+ value: "392"
+ path: "389"
+ port: -2011369579
+ scheme: 忀oɎƺL肄$鬬
+ initialDelaySeconds: 1683993464
+ periodSeconds: -614393357
+ successThreshold: -183458945
tcpSocket:
- host: "382"
- port: 1445923603
- terminationGracePeriodSeconds: 5797412715505520759
- timeoutSeconds: -1101457109
- stdin: true
- targetContainerName: "406"
- terminationMessagePath: "397"
- terminationMessagePolicy: 肄$鬬
+ host: "393"
+ port: -1128805635
+ terminationGracePeriodSeconds: -425547479604104324
+ timeoutSeconds: -371229129
+ stdinOnce: true
+ targetContainerName: "419"
+ terminationMessagePath: "410"
+ terminationMessagePolicy: »淹揀.e鍃G昧牱
tty: true
volumeDevices:
- - devicePath: "362"
- name: "361"
+ - devicePath: "370"
+ name: "369"
volumeMounts:
- - mountPath: "358"
- mountPropagation: 暳ǽżLj捲攻xƂ9阠$嬏wy¶熀
- name: "357"
- readOnly: true
- subPath: "359"
- subPathExpr: "360"
- workingDir: "341"
+ - mountPath: "366"
+ mountPropagation: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
+ name: "365"
+ subPath: "367"
+ subPathExpr: "368"
+ workingDir: "349"
hostAliases:
- hostnames:
- - "493"
- ip: "492"
+ - "506"
+ ip: "505"
hostNetwork: true
- hostname: "423"
+ hostPID: true
+ hostname: "436"
imagePullSecrets:
- - name: "422"
+ - name: "435"
initContainers:
- args:
- "203"
@@ -636,43 +644,46 @@ spec:
name: "209"
optional: false
image: "201"
- imagePullPolicy: 鐫û咡W<敄lu|榝
+ imagePullPolicy: 8T 苧yñKJɐ扵Gƚ绤fʀ
lifecycle:
postStart:
exec:
command:
- - "246"
+ - "249"
httpGet:
- host: "249"
+ host: "251"
httpHeaders:
- - name: "250"
- value: "251"
- path: "247"
- port: "248"
- scheme: j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ
+ - name: "252"
+ value: "253"
+ path: "250"
+ port: -1624574056
+ scheme: 犵殇ŕ-Ɂ圯W:ĸ輦唊#
tcpSocket:
- host: "253"
- port: "252"
+ host: "255"
+ port: "254"
preStop:
exec:
command:
- - "254"
+ - "256"
httpGet:
- host: "257"
+ host: "258"
httpHeaders:
- - name: "258"
- value: "259"
- path: "255"
- port: "256"
- scheme: "y"
+ - name: "259"
+ value: "260"
+ path: "257"
+ port: 1748715911
+ scheme: 屡ʁ
tcpSocket:
- host: "260"
- port: -1620315711
+ host: "261"
+ port: -1554559634
livenessProbe:
exec:
command:
- "226"
- failureThreshold: 158280212
+ failureThreshold: -127849333
+ gRPC:
+ port: -228822833
+ service: "233"
httpGet:
host: "229"
httpHeaders:
@@ -681,14 +692,14 @@ spec:
path: "227"
port: "228"
scheme: 翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź
- initialDelaySeconds: 513341278
- periodSeconds: 1255312175
- successThreshold: -1740959124
+ initialDelaySeconds: -970312425
+ periodSeconds: 1451056156
+ successThreshold: 267768240
tcpSocket:
host: "232"
port: -1543701088
- terminationGracePeriodSeconds: -1552383991890236277
- timeoutSeconds: 627713162
+ terminationGracePeriodSeconds: -6249601560883066585
+ timeoutSeconds: -1213051101
name: "200"
ports:
- containerPort: -1409668172
@@ -699,24 +710,27 @@ spec:
readinessProbe:
exec:
command:
- - "233"
- failureThreshold: 852780575
+ - "234"
+ failureThreshold: -661937776
+ gRPC:
+ port: 571739592
+ service: "240"
httpGet:
- host: "235"
+ host: "236"
httpHeaders:
- - name: "236"
- value: "237"
- path: "234"
- port: -1099429189
- scheme: 9Ì
- initialDelaySeconds: 1689978741
- periodSeconds: -1798849477
- successThreshold: -1017263912
+ - name: "237"
+ value: "238"
+ path: "235"
+ port: 1741405963
+ scheme: V'WKw(ğ儴
+ initialDelaySeconds: 1853396726
+ periodSeconds: -280820676
+ successThreshold: 376404581
tcpSocket:
- host: "238"
- port: -1364571630
- terminationGracePeriodSeconds: -5381329890395615297
- timeoutSeconds: -1423854443
+ host: "239"
+ port: 965937684
+ terminationGracePeriodSeconds: 8892821664271613295
+ timeoutSeconds: 1330271338
resources:
limits:
"": "55"
@@ -726,51 +740,55 @@ spec:
allowPrivilegeEscalation: false
capabilities:
add:
- - .Ȏ蝪ʜ5遰=
+ - 墺Ò媁荭gw忊|E剒蔞|表徶đ
drop:
- - 埄Ȁ朦 wƯ貾坢'跩a
- privileged: true
- procMount: 垾现葢ŵ橨
+ - 议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&
+ privileged: false
+ procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ
readOnlyRootFilesystem: true
- runAsGroup: 5005043520982487553
- runAsNonRoot: false
- runAsUser: 3024893073780181445
+ runAsGroup: -5569844914519516591
+ runAsNonRoot: true
+ runAsUser: -3342656999442156006
seLinuxOptions:
- level: "265"
- role: "263"
- type: "264"
- user: "262"
+ level: "266"
+ role: "264"
+ type: "265"
+ user: "263"
seccompProfile:
- localhostProfile: "269"
- type: l獕;跣Hǝcw媀瓄
+ localhostProfile: "270"
+ type: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
windowsOptions:
- gmsaCredentialSpec: "267"
- gmsaCredentialSpecName: "266"
+ gmsaCredentialSpec: "268"
+ gmsaCredentialSpecName: "267"
hostProcess: false
- runAsUserName: "268"
+ runAsUserName: "269"
startupProbe:
exec:
command:
- - "239"
- failureThreshold: -743369977
+ - "241"
+ failureThreshold: 1388782554
+ gRPC:
+ port: 410611837
+ service: "248"
httpGet:
- host: "241"
+ host: "244"
httpHeaders:
- - name: "242"
- value: "243"
- path: "240"
- port: 1853396726
- scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷
- initialDelaySeconds: -1789370277
- periodSeconds: 1724958480
- successThreshold: -879005591
+ - name: "245"
+ value: "246"
+ path: "242"
+ port: "243"
+ scheme: Qg鄠[
+ initialDelaySeconds: 809006670
+ periodSeconds: 17771103
+ successThreshold: -1008070934
tcpSocket:
- host: "245"
- port: "244"
- terminationGracePeriodSeconds: -6977492437661738751
- timeoutSeconds: -1738948598
- terminationMessagePath: "261"
- terminationMessagePolicy: ɐ扵
+ host: "247"
+ port: -241238495
+ terminationGracePeriodSeconds: 4876101091241607178
+ timeoutSeconds: 972978563
+ stdin: true
+ terminationMessagePath: "262"
+ tty: true
volumeDevices:
- devicePath: "225"
name: "224"
@@ -781,69 +799,67 @@ spec:
subPath: "222"
subPathExpr: "223"
workingDir: "204"
- nodeName: "411"
+ nodeName: "424"
nodeSelector:
- "407": "408"
+ "420": "421"
os:
- name: +&ɃB沅零șPî壣
+ name: '%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ'
overhead:
- D傕Ɠ栊闔虝巒瀦ŕ: "124"
- preemptionPolicy: Iƭij韺ʧ>
- priority: 743241089
- priorityClassName: "494"
+ ʬÇ[輚趞ț@: "597"
+ preemptionPolicy: '%ǁšjƾ$ʛ螳%65c3盧Ŷb'
+ priority: -1371816595
+ priorityClassName: "507"
readinessGates:
- - conditionType: 0yVA嬂刲;牆詒ĸąs
- restartPolicy: 鈱ɖ'蠨磼O_h盌3+Œ9两@8
- runtimeClassName: "499"
- schedulerName: "489"
+ - conditionType: ?ȣ4c
+ restartPolicy: hȱɷȰW瀤oɢ嫎
+ runtimeClassName: "512"
+ schedulerName: "502"
securityContext:
- fsGroup: 2700145646260085226
- fsGroupChangePolicy: 灭ƴɦ燻踸陴Sĕ濦
- runAsGroup: -3019907599090873206
+ fsGroup: 6543873941346781273
+ fsGroupChangePolicy: E1º轪d覉;Ĕ颪œ
+ runAsGroup: -3501425899000054955
runAsNonRoot: true
- runAsUser: 107192836721418523
+ runAsUser: -1357828024706138776
seLinuxOptions:
- level: "415"
- role: "413"
- type: "414"
- user: "412"
+ level: "428"
+ role: "426"
+ type: "427"
+ user: "425"
seccompProfile:
- localhostProfile: "421"
- type: ɻŊ0
+ localhostProfile: "434"
+ type: 洈愥朘ZDŽʤ搤ȃ$|gɳ礬
supplementalGroups:
- - 5333609790435719468
+ - 8102472596003640481
sysctls:
- - name: "419"
- value: "420"
+ - name: "432"
+ value: "433"
windowsOptions:
- gmsaCredentialSpec: "417"
- gmsaCredentialSpecName: "416"
+ gmsaCredentialSpec: "430"
+ gmsaCredentialSpecName: "429"
hostProcess: true
- runAsUserName: "418"
- serviceAccount: "410"
- serviceAccountName: "409"
- setHostnameAsFQDN: true
- shareProcessNamespace: true
- subdomain: "424"
- terminationGracePeriodSeconds: 8904478052175112945
+ runAsUserName: "431"
+ serviceAccount: "423"
+ serviceAccountName: "422"
+ setHostnameAsFQDN: false
+ shareProcessNamespace: false
+ subdomain: "437"
+ terminationGracePeriodSeconds: -7488651211709812271
tolerations:
- - effect: '慰x:'
- key: "490"
- operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
- tolerationSeconds: 3362400521064014157
- value: "491"
+ - effect: r埁摢噓涫祲ŗȨĽ堐mpƮ搌
+ key: "503"
+ operator: Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏
+ tolerationSeconds: 6217170132371410053
+ value: "504"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- operator: In
- values:
- - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
+ - key: kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V
+ operator: Exists
matchLabels:
- 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
- maxSkew: -174245111
- topologyKey: "500"
- whenUnsatisfiable: ""
+ 5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w: j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7
+ maxSkew: 1762898358
+ topologyKey: "513"
+ whenUnsatisfiable: ʚʛ&]ŶɄğɒơ舎
volumes:
- awsElasticBlockStore:
fsType: "68"
@@ -1101,17 +1117,17 @@ spec:
storagePolicyID: "125"
storagePolicyName: "124"
volumePath: "122"
- ttlSecondsAfterFinished: -2008027992
+ ttlSecondsAfterFinished: -1905218436
schedule: "20"
startingDeadlineSeconds: -2555947251840004808
- successfulJobsHistoryLimit: -1190434752
+ successfulJobsHistoryLimit: -860626688
suspend: true
status:
active:
- - apiVersion: "510"
- fieldPath: "512"
- kind: "507"
- name: "509"
- namespace: "508"
- resourceVersion: "511"
- uid: 蒱鄆&嬜Š&?鳢.ǀŭ瘢颦
+ - apiVersion: "523"
+ fieldPath: "525"
+ kind: "520"
+ name: "522"
+ namespace: "521"
+ resourceVersion: "524"
+ uid: 砽§^Dê婼SƸ炃&-Ƹ绿
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json
index a3430083ccd..e81864f4a55 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json
@@ -562,34 +562,42 @@
"port": "212",
"host": "213"
},
- "initialDelaySeconds": -802585193,
- "timeoutSeconds": 1901330124,
- "periodSeconds": 1944205014,
- "successThreshold": -2079582559,
- "failureThreshold": -1167888910,
- "terminationGracePeriodSeconds": 9134864175859680954
+ "gRPC": {
+ "port": -774074461,
+ "service": "214"
+ },
+ "initialDelaySeconds": -1503428149,
+ "timeoutSeconds": 279808574,
+ "periodSeconds": -1765469779,
+ "successThreshold": 1525829664,
+ "failureThreshold": -1047607622,
+ "terminationGracePeriodSeconds": -3116113949617156745
},
"readinessProbe": {
"exec": {
"command": [
- "214"
+ "215"
]
},
"httpGet": {
- "path": "215",
- "port": "216",
- "host": "217",
- "scheme": "ȹ嫰ƹǔw÷nI粛E煹ǐƲE",
+ "path": "216",
+ "port": "217",
+ "host": "218",
+ "scheme": "s{Ⱦdz@ùƸʋŀ樺ȃ",
"httpHeaders": [
{
- "name": "218",
- "value": "219"
+ "name": "219",
+ "value": "220"
}
]
},
"tcpSocket": {
+ "port": -270045321,
+ "host": "221"
+ },
+ "gRPC": {
"port": -88173241,
- "host": "220"
+ "service": "222"
},
"initialDelaySeconds": -1390686338,
"timeoutSeconds": 1762266578,
@@ -601,314 +609,309 @@
"startupProbe": {
"exec": {
"command": [
- "221"
+ "223"
]
},
"httpGet": {
- "path": "222",
+ "path": "224",
"port": -1273036797,
- "host": "223",
+ "host": "225",
"scheme": "ŤǢʭ嵔棂p儼Ƿ裚瓶",
"httpHeaders": [
{
- "name": "224",
- "value": "225"
+ "name": "226",
+ "value": "227"
}
]
},
"tcpSocket": {
"port": -1549755975,
- "host": "226"
+ "host": "228"
},
- "initialDelaySeconds": -1275947865,
- "timeoutSeconds": -2112697830,
- "periodSeconds": -560140039,
- "successThreshold": -1933850966,
- "failureThreshold": 441998152,
- "terminationGracePeriodSeconds": 3211788672813464064
+ "gRPC": {
+ "port": -820458255,
+ "service": "229"
+ },
+ "initialDelaySeconds": -1109164040,
+ "timeoutSeconds": -172174631,
+ "periodSeconds": 899007965,
+ "successThreshold": -742356330,
+ "failureThreshold": -122979840,
+ "terminationGracePeriodSeconds": 3932374770591864310
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "230"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "拜Ȍzɟ踡肒Ao/樝f",
+ "path": "231",
+ "port": -1018741501,
+ "host": "232",
+ "scheme": "ɿʒ刽ʼn掏1ſ盷",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": -1497057920,
- "host": "233"
+ "port": 817152661,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "234"
+ "236"
]
},
"httpGet": {
- "path": "235",
- "port": "236",
- "host": "237",
- "scheme": "x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ",
+ "path": "237",
+ "port": "238",
+ "host": "239",
+ "scheme": "ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "240",
+ "value": "241"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "242",
+ "host": "243"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "萭旿@掇lNdǂ\u003e5姣",
+ "terminationMessagePath": "244",
+ "terminationMessagePolicy": "Ȋɞ-uƻ悖ȩ0Ƹ",
+ "imagePullPolicy": "lNdǂ\u003e5",
"securityContext": {
"capabilities": {
"add": [
- "ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄"
+ "懔%熷谟"
],
"drop": [
- "rʤî萨zvt莭琽§ć\\ ïì"
+ "蛯ɰ荶ljʁ揆ɘȌ"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "245",
+ "role": "246",
+ "type": "247",
+ "level": "248"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": false
+ "gmsaCredentialSpecName": "249",
+ "gmsaCredentialSpec": "250",
+ "runAsUserName": "251",
+ "hostProcess": true
},
- "runAsUser": 5064334456447889244,
- "runAsGroup": 9197199583783594492,
- "runAsNonRoot": false,
+ "runAsUser": -3530853032778992089,
+ "runAsGroup": -834696834428133864,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": false,
- "procMount": "N粕擓ƖHVe熼",
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
"seccompProfile": {
- "type": "FD剂讼ɓȌʟn",
- "localhostProfile": "250"
+ "type": "-鿧悮坮Ȣ幟ļ",
+ "localhostProfile": "252"
}
},
- "stdinOnce": true,
+ "stdin": true,
"tty": true
}
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "253",
+ "image": "254",
"command": [
- "253"
+ "255"
],
"args": [
- "254"
+ "256"
],
- "workingDir": "255",
+ "workingDir": "257",
"ports": [
{
- "name": "256",
- "hostPort": 1087851818,
- "containerPort": -1142814363,
- "protocol": "f\u003c鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡źȰ",
- "hostIP": "257"
+ "name": "258",
+ "hostPort": -1336170981,
+ "containerPort": 1179132251,
+ "protocol": "Kʝ瘴I\\p[ħsĨɆâĺɗ",
+ "hostIP": "259"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "260",
"configMapRef": {
- "name": "259",
- "optional": false
+ "name": "261",
+ "optional": true
},
"secretRef": {
- "name": "260",
+ "name": "262",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "263",
+ "value": "264",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "265",
+ "fieldPath": "266"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "1"
+ "containerName": "267",
+ "resource": "268",
+ "divisor": "99"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
- "optional": true
- },
- "secretKeyRef": {
"name": "269",
"key": "270",
- "optional": true
+ "optional": false
+ },
+ "secretKeyRef": {
+ "name": "271",
+ "key": "272",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "ɳɷ9Ì": "134"
+ "攤/ɸɎ R§耶FfBl": "326"
},
"requests": {
- "WKw(": "800"
+ "ɱJȉ罴": "587"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "273",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "跦Opwǩ曬逴褜1",
- "subPathExpr": "274"
+ "mountPath": "274",
+ "subPath": "275",
+ "mountPropagation": "6dz娝嘚庎D}埽uʎȺ眖R#yV'W",
+ "subPathExpr": "276"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "277",
+ "devicePath": "278"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "279"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
+ "path": "280",
+ "port": "281",
+ "host": "282",
+ "scheme": "Í勅跦Opwǩ曬逴褜1ØœȠƬ",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "283",
+ "value": "284"
}
]
},
"tcpSocket": {
- "port": 785984384,
- "host": "283"
+ "port": "285",
+ "host": "286"
},
- "initialDelaySeconds": 193463975,
- "timeoutSeconds": 1831208885,
- "periodSeconds": -1425408777,
- "successThreshold": -820113531,
- "failureThreshold": 622267234,
- "terminationGracePeriodSeconds": 1763564411727068601
+ "gRPC": {
+ "port": 193463975,
+ "service": "287"
+ },
+ "initialDelaySeconds": 1831208885,
+ "timeoutSeconds": -1425408777,
+ "periodSeconds": -820113531,
+ "successThreshold": 622267234,
+ "failureThreshold": 410611837,
+ "terminationGracePeriodSeconds": 3474657193869121827
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "288"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "Ů+朷Ǝ膯ljVX1虊",
+ "path": "289",
+ "port": "290",
+ "host": "291",
+ "scheme": "+",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "292",
+ "value": "293"
}
]
},
"tcpSocket": {
- "port": -979584143,
- "host": "290"
+ "port": "294",
+ "host": "295"
},
- "initialDelaySeconds": -1748648882,
- "timeoutSeconds": -239843014,
- "periodSeconds": 1381579966,
- "successThreshold": -1418092595,
- "failureThreshold": -1538905728,
- "terminationGracePeriodSeconds": -1867540518204155332
+ "gRPC": {
+ "port": -879005591,
+ "service": "296"
+ },
+ "initialDelaySeconds": -743369977,
+ "timeoutSeconds": -1624574056,
+ "periodSeconds": -635050145,
+ "successThreshold": 319766081,
+ "failureThreshold": -1355476687,
+ "terminationGracePeriodSeconds": 3785971062093853048
},
"startupProbe": {
"exec": {
"command": [
- "291"
+ "297"
]
},
"httpGet": {
- "path": "292",
- "port": "293",
- "host": "294",
- "scheme": "q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*",
+ "path": "298",
+ "port": 467291328,
+ "host": "299",
+ "scheme": "ĸ輦唊",
"httpHeaders": [
{
- "name": "295",
- "value": "296"
+ "name": "300",
+ "value": "301"
}
]
},
"tcpSocket": {
- "port": 1574967021,
- "host": "297"
+ "port": "302",
+ "host": "303"
},
- "initialDelaySeconds": -244758593,
- "timeoutSeconds": 591440053,
- "periodSeconds": 104069700,
- "successThreshold": -331594625,
- "failureThreshold": 888935190,
- "terminationGracePeriodSeconds": 7193904584276385338
+ "gRPC": {
+ "port": -1546367923,
+ "service": "304"
+ },
+ "initialDelaySeconds": -1403552092,
+ "timeoutSeconds": 453108839,
+ "periodSeconds": 1748715911,
+ "successThreshold": -888240870,
+ "failureThreshold": 508868877,
+ "terminationGracePeriodSeconds": 4480986625444454685
},
"lifecycle": {
"postStart": {
- "exec": {
- "command": [
- "298"
- ]
- },
- "httpGet": {
- "path": "299",
- "port": "300",
- "host": "301",
- "scheme": "w忊|E剒蔞|表徶đ寳议",
- "httpHeaders": [
- {
- "name": "302",
- "value": "303"
- }
- ]
- },
- "tcpSocket": {
- "port": -614161319,
- "host": "304"
- }
- },
- "preStop": {
"exec": {
"command": [
"305"
@@ -918,7 +921,7 @@
"path": "306",
"port": "307",
"host": "308",
- "scheme": "跩aŕ翑",
+ "scheme": "T 苧yñKJɐ扵G",
"httpHeaders": [
{
"name": "309",
@@ -930,160 +933,156 @@
"port": "311",
"host": "312"
}
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "313"
+ ]
+ },
+ "httpGet": {
+ "path": "314",
+ "port": -331594625,
+ "host": "315",
+ "scheme": "lu|榝$î.",
+ "httpHeaders": [
+ {
+ "name": "316",
+ "value": "317"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "318",
+ "host": "319"
+ }
}
},
- "terminationMessagePath": "313",
- "imagePullPolicy": "\u0026皥贸碔lNKƙ順\\E¦队偯",
+ "terminationMessagePath": "320",
+ "terminationMessagePolicy": "ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ",
+ "imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
"capabilities": {
"add": [
- "徥淳4揻-$ɽ丟"
+ "碔"
],
"drop": [
- ""
+ "NKƙ順\\E¦队偯J僳徥淳4揻-$"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "314",
- "role": "315",
- "type": "316",
- "level": "317"
+ "user": "321",
+ "role": "322",
+ "type": "323",
+ "level": "324"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "318",
- "gmsaCredentialSpec": "319",
- "runAsUserName": "320",
+ "gmsaCredentialSpecName": "325",
+ "gmsaCredentialSpec": "326",
+ "runAsUserName": "327",
"hostProcess": false
},
- "runAsUser": -816831389119959689,
- "runAsGroup": 8194791334069427324,
+ "runAsUser": 8025933883888025358,
+ "runAsGroup": 8201449858636177397,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ",
+ "procMount": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
"seccompProfile": {
- "type": "ȱğ_\u003cǬëJ橈'琕鶫:顇ə",
- "localhostProfile": "321"
+ "type": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:",
+ "localhostProfile": "328"
}
},
- "stdinOnce": true,
+ "stdin": true,
"tty": true
}
],
"ephemeralContainers": [
{
- "name": "322",
- "image": "323",
+ "name": "329",
+ "image": "330",
"command": [
- "324"
+ "331"
],
"args": [
- "325"
+ "332"
],
- "workingDir": "326",
+ "workingDir": "333",
"ports": [
{
- "name": "327",
- "hostPort": 1504385614,
- "containerPort": 865289071,
- "protocol": "iɥ嵐sC8",
- "hostIP": "328"
+ "name": "334",
+ "hostPort": -116224247,
+ "containerPort": -2097329452,
+ "protocol": "屿oiɥ嵐sC8?",
+ "hostIP": "335"
}
],
"envFrom": [
{
- "prefix": "329",
+ "prefix": "336",
"configMapRef": {
- "name": "330",
+ "name": "337",
"optional": false
},
"secretRef": {
- "name": "331",
- "optional": false
+ "name": "338",
+ "optional": true
}
}
],
"env": [
{
- "name": "332",
- "value": "333",
+ "name": "339",
+ "value": "340",
"valueFrom": {
"fieldRef": {
- "apiVersion": "334",
- "fieldPath": "335"
+ "apiVersion": "341",
+ "fieldPath": "342"
},
"resourceFieldRef": {
- "containerName": "336",
- "resource": "337",
- "divisor": "832"
+ "containerName": "343",
+ "resource": "344",
+ "divisor": "974"
},
"configMapKeyRef": {
- "name": "338",
- "key": "339",
- "optional": false
+ "name": "345",
+ "key": "346",
+ "optional": true
},
"secretKeyRef": {
- "name": "340",
- "key": "341",
- "optional": false
+ "name": "347",
+ "key": "348",
+ "optional": true
}
}
}
],
"resources": {
"limits": {
- "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻": "127"
+ "亏yƕ丆録²Ŏ)/灩聋3趐囨鏻": "838"
},
"requests": {
- "C\"6x$1s": "463"
+ "i騎C\"6x$1sȣ±p鋄5弢ȹ均": "582"
}
},
"volumeMounts": [
{
- "name": "342",
- "mountPath": "343",
- "subPath": "344",
- "mountPropagation": "P蜷ɔ幩šeSvEȤƏ埮pɵ{W",
- "subPathExpr": "345"
+ "name": "349",
+ "readOnly": true,
+ "mountPath": "350",
+ "subPath": "351",
+ "mountPropagation": "vEȤƏ埮p",
+ "subPathExpr": "352"
}
],
"volumeDevices": [
{
- "name": "346",
- "devicePath": "347"
+ "name": "353",
+ "devicePath": "354"
}
],
"livenessProbe": {
- "exec": {
- "command": [
- "348"
- ]
- },
- "httpGet": {
- "path": "349",
- "port": -1700828941,
- "host": "350",
- "scheme": "諔迮ƙ",
- "httpHeaders": [
- {
- "name": "351",
- "value": "352"
- }
- ]
- },
- "tcpSocket": {
- "port": "353",
- "host": "354"
- },
- "initialDelaySeconds": -969533986,
- "timeoutSeconds": 299741709,
- "periodSeconds": -488127393,
- "successThreshold": 1137109081,
- "failureThreshold": -1896415283,
- "terminationGracePeriodSeconds": 6618112330449141397
- },
- "readinessProbe": {
"exec": {
"command": [
"355"
@@ -1091,28 +1090,32 @@
},
"httpGet": {
"path": "356",
- "port": "357",
- "host": "358",
- "scheme": "ɱďW賁Ě",
+ "port": 1473407401,
+ "host": "357",
+ "scheme": "ʐşƧ",
"httpHeaders": [
{
- "name": "359",
- "value": "360"
+ "name": "358",
+ "value": "359"
}
]
},
"tcpSocket": {
- "port": 1436222565,
- "host": "361"
+ "port": 199049889,
+ "host": "360"
},
- "initialDelaySeconds": -674445196,
- "timeoutSeconds": 1239158543,
- "periodSeconds": -543432015,
- "successThreshold": -515370067,
- "failureThreshold": 2073046460,
- "terminationGracePeriodSeconds": 7270263763744228913
+ "gRPC": {
+ "port": -667808868,
+ "service": "361"
+ },
+ "initialDelaySeconds": -1411971593,
+ "timeoutSeconds": -1952582931,
+ "periodSeconds": -74827262,
+ "successThreshold": 467105019,
+ "failureThreshold": 998588134,
+ "terminationGracePeriodSeconds": -7936947433725476327
},
- "startupProbe": {
+ "readinessProbe": {
"exec": {
"command": [
"362"
@@ -1122,7 +1125,7 @@
"path": "363",
"port": "364",
"host": "365",
- "scheme": "XW疪鑳w妕眵",
+ "scheme": "¼蠾8餑噭Dµņ",
"httpHeaders": [
{
"name": "366",
@@ -1131,158 +1134,193 @@
]
},
"tcpSocket": {
- "port": 455919108,
- "host": "368"
+ "port": "368",
+ "host": "369"
},
- "initialDelaySeconds": -832681001,
- "timeoutSeconds": 1616390418,
- "periodSeconds": -1337533938,
- "successThreshold": 1473765654,
- "failureThreshold": 252309773,
- "terminationGracePeriodSeconds": -8460346884535567850
+ "gRPC": {
+ "port": -543432015,
+ "service": "370"
+ },
+ "initialDelaySeconds": -515370067,
+ "timeoutSeconds": 2073046460,
+ "periodSeconds": 1692740191,
+ "successThreshold": -278396828,
+ "failureThreshold": 1497888778,
+ "terminationGracePeriodSeconds": -7146044409185304665
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "鑳w妕眵笭/9崍h趭",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "377",
+ "host": "378"
+ },
+ "gRPC": {
+ "port": 1454160406,
+ "service": "379"
+ },
+ "initialDelaySeconds": 597943993,
+ "timeoutSeconds": -1237718434,
+ "periodSeconds": -1379762675,
+ "successThreshold": -869776221,
+ "failureThreshold": -1869812680,
+ "terminationGracePeriodSeconds": -4480129203693517072
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "369"
+ "380"
]
},
"httpGet": {
- "path": "370",
- "port": -869776221,
- "host": "371",
- "scheme": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
+ "path": "381",
+ "port": 2112112129,
+ "host": "382",
+ "scheme": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗",
"httpHeaders": [
{
- "name": "372",
- "value": "373"
+ "name": "383",
+ "value": "384"
}
]
},
"tcpSocket": {
- "port": "374",
- "host": "375"
+ "port": "385",
+ "host": "386"
}
},
"preStop": {
"exec": {
"command": [
- "376"
+ "387"
]
},
"httpGet": {
- "path": "377",
- "port": -1917609921,
- "host": "378",
- "scheme": "耗",
+ "path": "388",
+ "port": -1920304485,
+ "host": "389",
"httpHeaders": [
{
- "name": "379",
- "value": "380"
+ "name": "390",
+ "value": "391"
}
]
},
"tcpSocket": {
- "port": "381",
- "host": "382"
+ "port": -531787516,
+ "host": "392"
}
}
},
- "terminationMessagePath": "383",
- "terminationMessagePolicy": "ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[",
- "imagePullPolicy": "灲閈誹ʅ蕉ɼ搳",
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "璾ėȜv",
+ "imagePullPolicy": "若`l}",
"securityContext": {
"capabilities": {
"add": [
- "箨ʨIk(dŊiɢ"
+ "Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ"
],
"drop": [
- "Į蛋I滞廬耐鷞焬CQ"
+ "Ix糂腂ǂǚŜEuEy"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "384",
- "role": "385",
- "type": "386",
- "level": "387"
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "388",
- "gmsaCredentialSpec": "389",
- "runAsUserName": "390",
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
"hostProcess": false
},
- "runAsUser": -506227444233847191,
- "runAsGroup": -583355774536171734,
+ "runAsUser": -8712539912912040623,
+ "runAsGroup": 1444191387770239457,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": false,
- "procMount": "EĨǔvÄÚ×p",
+ "allowPrivilegeEscalation": true,
+ "procMount": "Ǖc8ǣƘƵŧ1ƟƓ宆!",
"seccompProfile": {
- "type": "m罂o3ǰ廋i乳'ȘUɻ",
- "localhostProfile": "391"
+ "type": "ɋȑoG鄧蜢暳ǽżLj捲",
+ "localhostProfile": "401"
}
},
"stdin": true,
- "stdinOnce": true,
- "tty": true,
- "targetContainerName": "392"
+ "targetContainerName": "402"
}
],
- "restartPolicy": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑",
- "terminationGracePeriodSeconds": -3877666641335425693,
- "activeDeadlineSeconds": -2391833818948531474,
- "dnsPolicy": "Ƒ[澔",
+ "restartPolicy": "Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶",
+ "terminationGracePeriodSeconds": -2391833818948531474,
+ "activeDeadlineSeconds": 4961684277572791542,
+ "dnsPolicy": "G",
"nodeSelector": {
- "393": "394"
+ "403": "404"
},
- "serviceAccountName": "395",
- "serviceAccount": "396",
- "automountServiceAccountToken": true,
- "nodeName": "397",
- "hostPID": true,
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
+ "automountServiceAccountToken": false,
+ "nodeName": "407",
+ "hostNetwork": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "398",
- "role": "399",
- "type": "400",
- "level": "401"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "402",
- "gmsaCredentialSpec": "403",
- "runAsUserName": "404",
- "hostProcess": false
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
+ "hostProcess": true
},
- "runAsUser": 7177254483209867257,
- "runAsGroup": 7721939829013914482,
+ "runAsUser": 296399212346260204,
+ "runAsGroup": 1571605531283019612,
"runAsNonRoot": true,
"supplementalGroups": [
- -5080569150241191388
+ -7623856058716507834
],
- "fsGroup": -6486306216295496187,
+ "fsGroup": -2208341819971075364,
"sysctls": [
{
- "name": "405",
- "value": "406"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠",
+ "fsGroupChangePolicy": "`ǭ躌ñ?卶滿筇ȟP:/a殆诵",
"seccompProfile": {
- "type": "崖S«V¯Á",
- "localhostProfile": "407"
+ "type": "玲鑠ĭ$#卛8ð仁Q橱9ij",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "408"
+ "name": "418"
}
],
- "hostname": "409",
- "subdomain": "410",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1290,19 +1328,19 @@
{
"matchExpressions": [
{
- "key": "411",
- "operator": "\\Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o",
+ "key": "421",
+ "operator": "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃",
"values": [
- "412"
+ "422"
]
}
],
"matchFields": [
{
- "key": "413",
- "operator": "旹翃ɾ氒ĺʈʫ",
+ "key": "423",
+ "operator": "鬬$矐_敕ű嵞嬯t{Eɾ",
"values": [
- "414"
+ "424"
]
}
]
@@ -1311,23 +1349,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -855547676,
+ "weight": 1471419756,
"preference": {
"matchExpressions": [
{
- "key": "415",
- "operator": "F豎穜姰l咑耖p^鏋蛹Ƚȿ",
+ "key": "425",
+ "operator": "湷D谹気Ƀ秮òƬɸĻo:{",
"values": [
- "416"
+ "426"
]
}
],
"matchFields": [
{
- "key": "417",
- "operator": "ò",
+ "key": "427",
+ "operator": "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»",
"values": [
- "418"
+ "428"
]
}
]
@@ -1340,29 +1378,26 @@
{
"labelSelector": {
"matchLabels": {
- "4_-y.8_38xm-.nx.sEK4.B.__6m": "J1-1.9_.-.Ms7_tP"
+ "129-9d8-s7-t7--336-11k9-8609a-e1/R.--4Q3": "5-.DG7r-3.----._4__XOnf_ZN.-_--r.E__-.8_e_l23"
},
"matchExpressions": [
{
- "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v",
- "operator": "NotIn",
- "values": [
- "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc"
- ]
+ "key": "w80-4-6849--w-0-24u7-9pq66cs3--6/97..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_m",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "425"
+ "435"
],
- "topologyKey": "426",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "3QC1--L--v_Z--ZgC": "Q__-v_t_u_.__O"
+ "p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d": "69oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..Ki"
},
"matchExpressions": [
{
- "key": "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a",
+ "key": "7p--3zm-lx300w-tj-5.a-50/O--5-yp8q_s-1__gw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4",
"operator": "Exists"
}
]
@@ -1371,34 +1406,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 957174721,
+ "weight": -561220979,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C"
+ "g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-br75gp-c-o/AX.gUqV22-4-ye52yQh7.6.y": "w0_i"
},
"matchExpressions": [
{
- "key": "4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p",
- "operator": "NotIn",
- "values": [
- "N7_B_r"
- ]
+ "key": "i---rgvf3q-z-5z80n--t5p/0KkQ-R_R.-.--4_IT_O__3.5h_XC0_7",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "439"
+ "449"
],
- "topologyKey": "440",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "O_._e_3_.4_W_-q": "Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr"
+ "i_P..wW": "inE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b"
},
"matchExpressions": [
{
- "key": "XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T",
- "operator": "Exists"
+ "key": "C-PfNx__-U7",
+ "operator": "In",
+ "values": [
+ "IuGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlR__87"
+ ]
}
]
}
@@ -1411,33 +1446,30 @@
{
"labelSelector": {
"matchLabels": {
- "ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q": "h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV"
+ "T..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l6Q": "a_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.BO"
},
"matchExpressions": [
{
- "key": "xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W",
- "operator": "In",
+ "key": "0ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C",
+ "operator": "NotIn",
"values": [
- "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx"
+ "dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.x"
]
}
]
},
"namespaces": [
- "453"
+ "463"
],
- "topologyKey": "454",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "2-_.4dwFbuvf": "5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J"
+ "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1"
},
"matchExpressions": [
{
- "key": "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo",
- "operator": "NotIn",
- "values": [
- "0--_qv4--_.6_N_9X-B.s8.B"
- ]
+ "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J",
+ "operator": "DoesNotExist"
}
]
}
@@ -1445,34 +1477,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -1832836223,
+ "weight": 1131487788,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "BQ.9-_.m7-Q____vSW_4-__h": "w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj"
+ "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p"
},
"matchExpressions": [
{
- "key": "dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A",
- "operator": "Exists"
+ "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b",
+ "operator": "NotIn",
+ "values": [
+ "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m"
+ ]
}
]
},
"namespaces": [
- "467"
+ "477"
],
- "topologyKey": "468",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "8.7-72qz.W.d.._1-3968": "G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO"
+ "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K"
},
"matchExpressions": [
{
- "key": "006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W",
- "operator": "NotIn",
- "values": [
- "z87_2---2.E.p9-.-3.__a.bl_--..-A"
- ]
+ "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T",
+ "operator": "DoesNotExist"
}
]
}
@@ -1481,64 +1513,67 @@
]
}
},
- "schedulerName": "475",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "476",
- "operator": "Ü",
- "value": "477",
- "effect": "貛香\"砻B鷋RȽXv*!ɝ茀Ǩ",
- "tolerationSeconds": 8594241010639209901
+ "key": "486",
+ "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ",
+ "value": "487",
+ "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸",
+ "tolerationSeconds": -3147305732428645642
}
],
"hostAliases": [
{
- "ip": "478",
+ "ip": "488",
"hostnames": [
- "479"
+ "489"
]
}
],
- "priorityClassName": "480",
- "priority": 878153992,
+ "priorityClassName": "490",
+ "priority": -1756088332,
"dnsConfig": {
"nameservers": [
- "481"
+ "491"
],
"searches": [
- "482"
+ "492"
],
"options": [
{
- "name": "483",
- "value": "484"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "=ȑ-A敲ʉ"
+ "conditionType": "#sM網"
}
],
- "runtimeClassName": "485",
- "enableServiceLinks": false,
- "preemptionPolicy": "梊蝴.Ĉ马āƭw鰕ǰ\"șa",
+ "runtimeClassName": "495",
+ "enableServiceLinks": true,
+ "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡",
"overhead": {
- "\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ": "283"
+ "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452"
},
"topologySpreadConstraints": [
{
- "maxSkew": -702578810,
- "topologyKey": "486",
- "whenUnsatisfiable": "Ž氮怉ƥ;\"薑Ȣ#闬輙怀¹bCũw",
+ "maxSkew": -447559705,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒",
"labelSelector": {
"matchLabels": {
- "N-_.F": "09z2"
+ "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
},
"matchExpressions": [
{
- "key": "z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0",
- "operator": "DoesNotExist"
+ "key": "KTlO.__0PX",
+ "operator": "In",
+ "values": [
+ "V6K_.3_583-6.f-.9-.V..Q-K_6_3"
+ ]
}
]
}
@@ -1546,37 +1581,37 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "脡ǯ?b砸ƻ舁Ȁ贠ȇö匉"
+ "name": "sʅ朁遐»`癸ƥf豯烠砖#囹J,R"
}
}
},
- "ttlSecondsAfterFinished": -166315230,
- "completionMode": "TaI楅©Ǫ壿/š^劶äɲ泒",
- "suspend": true
+ "ttlSecondsAfterFinished": 114661309,
+ "completionMode": "埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$\u003cʖ欢",
+ "suspend": false
},
"status": {
"conditions": [
{
- "type": "燬Ǻ媳ɦ:Ȱ掯鿊刞篍倧F*Ʊ巭銔0",
- "status": "",
- "lastProbeTime": "2534-12-23T07:02:01Z",
- "lastTransitionTime": "2015-06-07T16:38:22Z",
- "reason": "493",
- "message": "494"
+ "type": "?ȣ4c",
+ "status": "粝ôD齆O",
+ "lastProbeTime": "2923-06-04T19:02:02Z",
+ "lastTransitionTime": "2889-05-11T04:07:25Z",
+ "reason": "503",
+ "message": "504"
}
],
- "active": -257419482,
- "succeeded": -808276219,
- "failed": -29650850,
- "completedIndexes": "495",
+ "active": -794443035,
+ "succeeded": -1709231587,
+ "failed": 885124697,
+ "completedIndexes": "505",
"uncountedTerminatedPods": {
"succeeded": [
- "抒h莤W{ɳ謏Ɵȗń暸a"
+ "65c3盧ŶbșʬÇ[輚趞ț"
],
"failed": [
- "ʖ臓祴ʬlǢǤųG3Ç"
+ ""
]
},
- "ready": 934248925
+ "ready": -1106455686
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb
index 0fc6265bf7f..8d6cb8c5cd9 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml
index 35078cbfc8a..51dfbad60de 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml
@@ -33,7 +33,7 @@ metadata:
spec:
activeDeadlineSeconds: -5584804243908071872
backoffLimit: -783752440
- completionMode: TaI楅©Ǫ壿/š^劶äɲ泒
+ completionMode: 埁摢噓涫祲ŗȨĽ堐mpƮ搌麸$<ʖ欢
completions: 1305381319
manualSelector: true
parallelism: 896585016
@@ -45,7 +45,7 @@ spec:
- 3_bQw.-dG6c-.x
matchLabels:
hjT9s-j41-0-6p-JFHn7y-74.-0MUORQQ.N4: 3L.u
- suspend: true
+ suspend: false
template:
metadata:
annotations:
@@ -78,166 +78,147 @@ spec:
selfLink: "29"
uid: ɸ=ǤÆ碛,1
spec:
- activeDeadlineSeconds: -2391833818948531474
+ activeDeadlineSeconds: 4961684277572791542
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "415"
- operator: F豎穜姰l咑耖p^鏋蛹Ƚȿ
+ - key: "425"
+ operator: 湷D谹気Ƀ秮òƬɸĻo:{
values:
- - "416"
+ - "426"
matchFields:
- - key: "417"
- operator: ò
+ - key: "427"
+ operator: 赮ǒđ>*劶?jĎĭ¥#ƱÁR»
values:
- - "418"
- weight: -855547676
+ - "428"
+ weight: 1471419756
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "411"
- operator: \Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o
+ - key: "421"
+ operator: 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃
values:
- - "412"
+ - "422"
matchFields:
- - key: "413"
- operator: 旹翃ɾ氒ĺʈʫ
+ - key: "423"
+ operator: 鬬$矐_敕ű嵞嬯t{Eɾ
values:
- - "414"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p
- operator: NotIn
- values:
- - N7_B_r
+ - key: i---rgvf3q-z-5z80n--t5p/0KkQ-R_R.-.--4_IT_O__3.5h_XC0_7
+ operator: DoesNotExist
matchLabels:
- o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C
+ g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-br75gp-c-o/AX.gUqV22-4-ye52yQh7.6.y: w0_i
namespaceSelector:
matchExpressions:
- - key: XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T
- operator: Exists
+ - key: C-PfNx__-U7
+ operator: In
+ values:
+ - IuGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlR__87
matchLabels:
- O_._e_3_.4_W_-q: Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr
+ i_P..wW: inE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b
namespaces:
- - "439"
- topologyKey: "440"
- weight: 957174721
+ - "449"
+ topologyKey: "450"
+ weight: -561220979
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v
- operator: NotIn
- values:
- - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
- matchLabels:
- 4_-y.8_38xm-.nx.sEK4.B.__6m: J1-1.9_.-.Ms7_tP
- namespaceSelector:
- matchExpressions:
- - key: w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a
+ - key: w80-4-6849--w-0-24u7-9pq66cs3--6/97..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_m
operator: Exists
matchLabels:
- 3QC1--L--v_Z--ZgC: Q__-v_t_u_.__O
+ 129-9d8-s7-t7--336-11k9-8609a-e1/R.--4Q3: 5-.DG7r-3.----._4__XOnf_ZN.-_--r.E__-.8_e_l23
+ namespaceSelector:
+ matchExpressions:
+ - key: 7p--3zm-lx300w-tj-5.a-50/O--5-yp8q_s-1__gw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4
+ operator: Exists
+ matchLabels:
+ p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d: 69oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..Ki
namespaces:
- - "425"
- topologyKey: "426"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A
- operator: Exists
- matchLabels:
- BQ.9-_.m7-Q____vSW_4-__h: w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj
- namespaceSelector:
- matchExpressions:
- - key: 006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W
+ - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- - z87_2---2.E.p9-.-3.__a.bl_--..-A
+ - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
- 8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO
+ 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
+ namespaceSelector:
+ matchExpressions:
+ - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
+ operator: DoesNotExist
+ matchLabels:
+ 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
namespaces:
- - "467"
- topologyKey: "468"
- weight: -1832836223
+ - "477"
+ topologyKey: "478"
+ weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W
- operator: In
- values:
- - U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
- matchLabels:
- ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q: h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV
- namespaceSelector:
- matchExpressions:
- - key: 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo
+ - key: 0ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C
operator: NotIn
values:
- - 0--_qv4--_.6_N_9X-B.s8.B
+ - dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.x
matchLabels:
- 2-_.4dwFbuvf: 5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J
+ T..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l6Q: a_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.BO
+ namespaceSelector:
+ matchExpressions:
+ - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
+ operator: DoesNotExist
+ matchLabels:
+ B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
namespaces:
- - "453"
- topologyKey: "454"
- automountServiceAccountToken: true
+ - "463"
+ topologyKey: "464"
+ automountServiceAccountToken: false
containers:
- args:
- - "254"
+ - "256"
command:
- - "253"
+ - "255"
env:
- - name: "261"
- value: "262"
+ - name: "263"
+ value: "264"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
- optional: true
- fieldRef:
- apiVersion: "263"
- fieldPath: "264"
- resourceFieldRef:
- containerName: "265"
- divisor: "1"
- resource: "266"
- secretKeyRef:
key: "270"
name: "269"
- optional: true
+ optional: false
+ fieldRef:
+ apiVersion: "265"
+ fieldPath: "266"
+ resourceFieldRef:
+ containerName: "267"
+ divisor: "99"
+ resource: "268"
+ secretKeyRef:
+ key: "272"
+ name: "271"
+ optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
- name: "260"
+ name: "261"
optional: true
- image: "252"
- imagePullPolicy: '&皥贸碔lNKƙ順\E¦队偯'
+ prefix: "260"
+ secretRef:
+ name: "262"
+ optional: true
+ image: "254"
+ imagePullPolicy: Ļǟi&
lifecycle:
postStart:
- exec:
- command:
- - "298"
- httpGet:
- host: "301"
- httpHeaders:
- - name: "302"
- value: "303"
- path: "299"
- port: "300"
- scheme: w忊|E剒蔞|表徶đ寳议
- tcpSocket:
- host: "304"
- port: -614161319
- preStop:
exec:
command:
- "305"
@@ -248,284 +229,263 @@ spec:
value: "310"
path: "306"
port: "307"
- scheme: 跩aŕ翑
+ scheme: T 苧yñKJɐ扵G
tcpSocket:
host: "312"
port: "311"
+ preStop:
+ exec:
+ command:
+ - "313"
+ httpGet:
+ host: "315"
+ httpHeaders:
+ - name: "316"
+ value: "317"
+ path: "314"
+ port: -331594625
+ scheme: lu|榝$î.
+ tcpSocket:
+ host: "319"
+ port: "318"
livenessProbe:
exec:
command:
- - "277"
- failureThreshold: 622267234
+ - "279"
+ failureThreshold: 410611837
+ gRPC:
+ port: 193463975
+ service: "287"
httpGet:
- host: "280"
+ host: "282"
httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- initialDelaySeconds: 193463975
- periodSeconds: -1425408777
- successThreshold: -820113531
+ - name: "283"
+ value: "284"
+ path: "280"
+ port: "281"
+ scheme: Í勅跦Opwǩ曬逴褜1ØœȠƬ
+ initialDelaySeconds: 1831208885
+ periodSeconds: -820113531
+ successThreshold: 622267234
tcpSocket:
- host: "283"
- port: 785984384
- terminationGracePeriodSeconds: 1763564411727068601
- timeoutSeconds: 1831208885
- name: "251"
+ host: "286"
+ port: "285"
+ terminationGracePeriodSeconds: 3474657193869121827
+ timeoutSeconds: -1425408777
+ name: "253"
ports:
- - containerPort: -1142814363
- hostIP: "257"
- hostPort: 1087851818
- name: "256"
- protocol: f<鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡źȰ
+ - containerPort: 1179132251
+ hostIP: "259"
+ hostPort: -1336170981
+ name: "258"
+ protocol: Kʝ瘴I\p[ħsĨɆâĺɗ
readinessProbe:
exec:
command:
- - "284"
- failureThreshold: -1538905728
+ - "288"
+ failureThreshold: -1355476687
+ gRPC:
+ port: -879005591
+ service: "296"
httpGet:
- host: "287"
+ host: "291"
httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: Ů+朷Ǝ膯ljVX1虊
- initialDelaySeconds: -1748648882
- periodSeconds: 1381579966
- successThreshold: -1418092595
+ - name: "292"
+ value: "293"
+ path: "289"
+ port: "290"
+ scheme: +
+ initialDelaySeconds: -743369977
+ periodSeconds: -635050145
+ successThreshold: 319766081
tcpSocket:
- host: "290"
- port: -979584143
- terminationGracePeriodSeconds: -1867540518204155332
- timeoutSeconds: -239843014
+ host: "295"
+ port: "294"
+ terminationGracePeriodSeconds: 3785971062093853048
+ timeoutSeconds: -1624574056
resources:
limits:
- ɳɷ9Ì: "134"
+ 攤/ɸɎ R§耶FfBl: "326"
requests:
- WKw(: "800"
+ ɱJȉ罴: "587"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- - 徥淳4揻-$ɽ丟
+ - 碔
drop:
- - ""
+ - NKƙ順\E¦队偯J僳徥淳4揻-$
privileged: false
- procMount: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
- readOnlyRootFilesystem: false
- runAsGroup: 8194791334069427324
+ procMount: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
+ readOnlyRootFilesystem: true
+ runAsGroup: 8201449858636177397
runAsNonRoot: false
- runAsUser: -816831389119959689
+ runAsUser: 8025933883888025358
seLinuxOptions:
- level: "317"
- role: "315"
- type: "316"
- user: "314"
+ level: "324"
+ role: "322"
+ type: "323"
+ user: "321"
seccompProfile:
- localhostProfile: "321"
- type: ȱğ_<ǬëJ橈'琕鶫:顇ə
+ localhostProfile: "328"
+ type: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:'
windowsOptions:
- gmsaCredentialSpec: "319"
- gmsaCredentialSpecName: "318"
+ gmsaCredentialSpec: "326"
+ gmsaCredentialSpecName: "325"
hostProcess: false
- runAsUserName: "320"
+ runAsUserName: "327"
startupProbe:
exec:
command:
- - "291"
- failureThreshold: 888935190
+ - "297"
+ failureThreshold: 508868877
+ gRPC:
+ port: -1546367923
+ service: "304"
httpGet:
- host: "294"
+ host: "299"
httpHeaders:
- - name: "295"
- value: "296"
- path: "292"
- port: "293"
- scheme: q埄趛屡ʁ岼昕ĬÇó藢xɮĵȑ6L*
- initialDelaySeconds: -244758593
- periodSeconds: 104069700
- successThreshold: -331594625
+ - name: "300"
+ value: "301"
+ path: "298"
+ port: 467291328
+ scheme: ĸ輦唊
+ initialDelaySeconds: -1403552092
+ periodSeconds: 1748715911
+ successThreshold: -888240870
tcpSocket:
- host: "297"
- port: 1574967021
- terminationGracePeriodSeconds: 7193904584276385338
- timeoutSeconds: 591440053
- stdinOnce: true
- terminationMessagePath: "313"
+ host: "303"
+ port: "302"
+ terminationGracePeriodSeconds: 4480986625444454685
+ timeoutSeconds: 453108839
+ stdin: true
+ terminationMessagePath: "320"
+ terminationMessagePolicy: ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ
tty: true
volumeDevices:
- - devicePath: "276"
- name: "275"
+ - devicePath: "278"
+ name: "277"
volumeMounts:
- - mountPath: "272"
- mountPropagation: 跦Opwǩ曬逴褜1
- name: "271"
+ - mountPath: "274"
+ mountPropagation: 6dz娝嘚庎D}埽uʎȺ眖R#yV'W
+ name: "273"
readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
+ subPath: "275"
+ subPathExpr: "276"
+ workingDir: "257"
dnsConfig:
nameservers:
- - "481"
+ - "491"
options:
- - name: "483"
- value: "484"
+ - name: "493"
+ value: "494"
searches:
- - "482"
- dnsPolicy: Ƒ[澔
- enableServiceLinks: false
+ - "492"
+ dnsPolicy: G
+ enableServiceLinks: true
ephemeralContainers:
- args:
- - "325"
+ - "332"
command:
- - "324"
+ - "331"
env:
- - name: "332"
- value: "333"
+ - name: "339"
+ value: "340"
valueFrom:
configMapKeyRef:
- key: "339"
- name: "338"
- optional: false
+ key: "346"
+ name: "345"
+ optional: true
fieldRef:
- apiVersion: "334"
- fieldPath: "335"
+ apiVersion: "341"
+ fieldPath: "342"
resourceFieldRef:
- containerName: "336"
- divisor: "832"
- resource: "337"
+ containerName: "343"
+ divisor: "974"
+ resource: "344"
secretKeyRef:
- key: "341"
- name: "340"
- optional: false
+ key: "348"
+ name: "347"
+ optional: true
envFrom:
- configMapRef:
- name: "330"
+ name: "337"
optional: false
- prefix: "329"
+ prefix: "336"
secretRef:
- name: "331"
- optional: false
- image: "323"
- imagePullPolicy: 灲閈誹ʅ蕉ɼ搳
+ name: "338"
+ optional: true
+ image: "330"
+ imagePullPolicy: 若`l}
lifecycle:
postStart:
exec:
command:
- - "369"
+ - "380"
httpGet:
- host: "371"
+ host: "382"
httpHeaders:
- - name: "372"
- value: "373"
- path: "370"
- port: -869776221
- scheme: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
+ - name: "383"
+ value: "384"
+ path: "381"
+ port: 2112112129
+ scheme: ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗
tcpSocket:
- host: "375"
- port: "374"
+ host: "386"
+ port: "385"
preStop:
exec:
command:
- - "376"
+ - "387"
httpGet:
- host: "378"
+ host: "389"
httpHeaders:
- - name: "379"
- value: "380"
- path: "377"
- port: -1917609921
- scheme: 耗
+ - name: "390"
+ value: "391"
+ path: "388"
+ port: -1920304485
tcpSocket:
- host: "382"
- port: "381"
+ host: "392"
+ port: -531787516
livenessProbe:
exec:
command:
- - "348"
- failureThreshold: -1896415283
+ - "355"
+ failureThreshold: 998588134
+ gRPC:
+ port: -667808868
+ service: "361"
httpGet:
- host: "350"
+ host: "357"
httpHeaders:
- - name: "351"
- value: "352"
- path: "349"
- port: -1700828941
- scheme: 諔迮ƙ
- initialDelaySeconds: -969533986
- periodSeconds: -488127393
- successThreshold: 1137109081
+ - name: "358"
+ value: "359"
+ path: "356"
+ port: 1473407401
+ scheme: ʐşƧ
+ initialDelaySeconds: -1411971593
+ periodSeconds: -74827262
+ successThreshold: 467105019
tcpSocket:
- host: "354"
- port: "353"
- terminationGracePeriodSeconds: 6618112330449141397
- timeoutSeconds: 299741709
- name: "322"
+ host: "360"
+ port: 199049889
+ terminationGracePeriodSeconds: -7936947433725476327
+ timeoutSeconds: -1952582931
+ name: "329"
ports:
- - containerPort: 865289071
- hostIP: "328"
- hostPort: 1504385614
- name: "327"
- protocol: iɥ嵐sC8
+ - containerPort: -2097329452
+ hostIP: "335"
+ hostPort: -116224247
+ name: "334"
+ protocol: 屿oiɥ嵐sC8?
readinessProbe:
- exec:
- command:
- - "355"
- failureThreshold: 2073046460
- httpGet:
- host: "358"
- httpHeaders:
- - name: "359"
- value: "360"
- path: "356"
- port: "357"
- scheme: ɱďW賁Ě
- initialDelaySeconds: -674445196
- periodSeconds: -543432015
- successThreshold: -515370067
- tcpSocket:
- host: "361"
- port: 1436222565
- terminationGracePeriodSeconds: 7270263763744228913
- timeoutSeconds: 1239158543
- resources:
- limits:
- h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻: "127"
- requests:
- C"6x$1s: "463"
- securityContext:
- allowPrivilegeEscalation: false
- capabilities:
- add:
- - 箨ʨIk(dŊiɢ
- drop:
- - Į蛋I滞廬耐鷞焬CQ
- privileged: true
- procMount: EĨǔvÄÚ×p
- readOnlyRootFilesystem: false
- runAsGroup: -583355774536171734
- runAsNonRoot: false
- runAsUser: -506227444233847191
- seLinuxOptions:
- level: "387"
- role: "385"
- type: "386"
- user: "384"
- seccompProfile:
- localhostProfile: "391"
- type: m罂o3ǰ廋i乳'ȘUɻ
- windowsOptions:
- gmsaCredentialSpec: "389"
- gmsaCredentialSpecName: "388"
- hostProcess: false
- runAsUserName: "390"
- startupProbe:
exec:
command:
- "362"
- failureThreshold: 252309773
+ failureThreshold: 1497888778
+ gRPC:
+ port: -543432015
+ service: "370"
httpGet:
host: "365"
httpHeaders:
@@ -533,39 +493,94 @@ spec:
value: "367"
path: "363"
port: "364"
- scheme: XW疪鑳w妕眵
- initialDelaySeconds: -832681001
- periodSeconds: -1337533938
- successThreshold: 1473765654
+ scheme: ¼蠾8餑噭Dµņ
+ initialDelaySeconds: -515370067
+ periodSeconds: 1692740191
+ successThreshold: -278396828
tcpSocket:
- host: "368"
- port: 455919108
- terminationGracePeriodSeconds: -8460346884535567850
- timeoutSeconds: 1616390418
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: -7146044409185304665
+ timeoutSeconds: 2073046460
+ resources:
+ limits:
+ 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻: "838"
+ requests:
+ i騎C"6x$1sȣ±p鋄5弢ȹ均: "582"
+ securityContext:
+ allowPrivilegeEscalation: true
+ capabilities:
+ add:
+ - Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ
+ drop:
+ - Ix糂腂ǂǚŜEuEy
+ privileged: false
+ procMount: Ǖc8ǣƘƵŧ1ƟƓ宆!
+ readOnlyRootFilesystem: false
+ runAsGroup: 1444191387770239457
+ runAsNonRoot: false
+ runAsUser: -8712539912912040623
+ seLinuxOptions:
+ level: "397"
+ role: "395"
+ type: "396"
+ user: "394"
+ seccompProfile:
+ localhostProfile: "401"
+ type: ɋȑoG鄧蜢暳ǽżLj捲
+ windowsOptions:
+ gmsaCredentialSpec: "399"
+ gmsaCredentialSpecName: "398"
+ hostProcess: false
+ runAsUserName: "400"
+ startupProbe:
+ exec:
+ command:
+ - "371"
+ failureThreshold: -1869812680
+ gRPC:
+ port: 1454160406
+ service: "379"
+ httpGet:
+ host: "374"
+ httpHeaders:
+ - name: "375"
+ value: "376"
+ path: "372"
+ port: "373"
+ scheme: 鑳w妕眵笭/9崍h趭
+ initialDelaySeconds: 597943993
+ periodSeconds: -1379762675
+ successThreshold: -869776221
+ tcpSocket:
+ host: "378"
+ port: "377"
+ terminationGracePeriodSeconds: -4480129203693517072
+ timeoutSeconds: -1237718434
stdin: true
- stdinOnce: true
- targetContainerName: "392"
- terminationMessagePath: "383"
- terminationMessagePolicy: ť1ùfŭƽ眝{æ盪泙若`l}Ñ蠂Ü[
- tty: true
+ targetContainerName: "402"
+ terminationMessagePath: "393"
+ terminationMessagePolicy: 璾ėȜv
volumeDevices:
- - devicePath: "347"
- name: "346"
+ - devicePath: "354"
+ name: "353"
volumeMounts:
- - mountPath: "343"
- mountPropagation: P蜷ɔ幩šeSvEȤƏ埮pɵ{W
- name: "342"
- subPath: "344"
- subPathExpr: "345"
- workingDir: "326"
+ - mountPath: "350"
+ mountPropagation: vEȤƏ埮p
+ name: "349"
+ readOnly: true
+ subPath: "351"
+ subPathExpr: "352"
+ workingDir: "333"
hostAliases:
- hostnames:
- - "479"
- ip: "478"
- hostPID: true
- hostname: "409"
+ - "489"
+ ip: "488"
+ hostIPC: true
+ hostNetwork: true
+ hostname: "419"
imagePullSecrets:
- - name: "408"
+ - name: "418"
initContainers:
- args:
- "184"
@@ -599,42 +614,46 @@ spec:
name: "190"
optional: false
image: "182"
+ imagePullPolicy: lNdǂ>5
lifecycle:
postStart:
exec:
command:
- - "227"
+ - "230"
httpGet:
- host: "230"
+ host: "232"
httpHeaders:
- - name: "231"
- value: "232"
- path: "228"
- port: "229"
- scheme: 拜Ȍzɟ踡肒Ao/樝f
+ - name: "233"
+ value: "234"
+ path: "231"
+ port: -1018741501
+ scheme: ɿʒ刽ʼn掏1ſ盷
tcpSocket:
- host: "233"
- port: -1497057920
+ host: "235"
+ port: 817152661
preStop:
exec:
command:
- - "234"
+ - "236"
httpGet:
- host: "237"
+ host: "239"
httpHeaders:
- - name: "238"
- value: "239"
- path: "235"
- port: "236"
- scheme: x榜VƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ
+ - name: "240"
+ value: "241"
+ path: "237"
+ port: "238"
+ scheme: ŽoǠŻʘY賃ɪ鐊瀑Ź9Ǖ
tcpSocket:
- host: "241"
- port: "240"
+ host: "243"
+ port: "242"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1167888910
+ failureThreshold: -1047607622
+ gRPC:
+ port: -774074461
+ service: "214"
httpGet:
host: "209"
httpHeaders:
@@ -643,14 +662,14 @@ spec:
path: "208"
port: 1094670193
scheme: 栲茇竛吲蚛隖<ǶĬ4y£軶ǃ*ʙ嫙&
- initialDelaySeconds: -802585193
- periodSeconds: 1944205014
- successThreshold: -2079582559
+ initialDelaySeconds: -1503428149
+ periodSeconds: -1765469779
+ successThreshold: 1525829664
tcpSocket:
host: "213"
port: "212"
- terminationGracePeriodSeconds: 9134864175859680954
- timeoutSeconds: 1901330124
+ terminationGracePeriodSeconds: -3116113949617156745
+ timeoutSeconds: 279808574
name: "181"
ports:
- containerPort: 44308192
@@ -661,22 +680,25 @@ spec:
readinessProbe:
exec:
command:
- - "214"
+ - "215"
failureThreshold: -1294101963
+ gRPC:
+ port: -88173241
+ service: "222"
httpGet:
- host: "217"
+ host: "218"
httpHeaders:
- - name: "218"
- value: "219"
- path: "215"
- port: "216"
- scheme: ȹ嫰ƹǔw÷nI粛E煹ǐƲE
+ - name: "219"
+ value: "220"
+ path: "216"
+ port: "217"
+ scheme: s{Ⱦdz@ùƸʋŀ樺ȃ
initialDelaySeconds: -1390686338
periodSeconds: 1908897348
successThreshold: -153894372
tcpSocket:
- host: "220"
- port: -88173241
+ host: "221"
+ port: -270045321
terminationGracePeriodSeconds: -8426138335498948912
timeoutSeconds: 1762266578
resources:
@@ -685,55 +707,58 @@ spec:
requests:
瀹鞎sn芞: "621"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - ȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄
+ - 懔%熷谟
drop:
- - rʤî萨zvt莭琽§ć\ ïì
- privileged: false
- procMount: N粕擓ƖHVe熼
+ - 蛯ɰ荶ljʁ揆ɘȌ
+ privileged: true
+ procMount: ""
readOnlyRootFilesystem: false
- runAsGroup: 9197199583783594492
- runAsNonRoot: false
- runAsUser: 5064334456447889244
+ runAsGroup: -834696834428133864
+ runAsNonRoot: true
+ runAsUser: -3530853032778992089
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "248"
+ role: "246"
+ type: "247"
+ user: "245"
seccompProfile:
- localhostProfile: "250"
- type: FD剂讼ɓȌʟn
+ localhostProfile: "252"
+ type: -鿧悮坮Ȣ幟ļ
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: false
- runAsUserName: "249"
+ gmsaCredentialSpec: "250"
+ gmsaCredentialSpecName: "249"
+ hostProcess: true
+ runAsUserName: "251"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: 441998152
+ - "223"
+ failureThreshold: -122979840
+ gRPC:
+ port: -820458255
+ service: "229"
httpGet:
- host: "223"
+ host: "225"
httpHeaders:
- - name: "224"
- value: "225"
- path: "222"
+ - name: "226"
+ value: "227"
+ path: "224"
port: -1273036797
scheme: ŤǢʭ嵔棂p儼Ƿ裚瓶
- initialDelaySeconds: -1275947865
- periodSeconds: -560140039
- successThreshold: -1933850966
+ initialDelaySeconds: -1109164040
+ periodSeconds: 899007965
+ successThreshold: -742356330
tcpSocket:
- host: "226"
+ host: "228"
port: -1549755975
- terminationGracePeriodSeconds: 3211788672813464064
- timeoutSeconds: -2112697830
- stdinOnce: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 萭旿@掇lNdǂ>5姣
+ terminationGracePeriodSeconds: 3932374770591864310
+ timeoutSeconds: -172174631
+ stdin: true
+ terminationMessagePath: "244"
+ terminationMessagePolicy: Ȋɞ-uƻ悖ȩ0Ƹ
tty: true
volumeDevices:
- devicePath: "206"
@@ -746,67 +771,69 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "397"
+ nodeName: "407"
nodeSelector:
- "393": "394"
+ "403": "404"
os:
- name: 脡ǯ?b砸ƻ舁Ȁ贠ȇö匉
+ name: sʅ朁遐»`癸ƥf豯烠砖#囹J,R
overhead:
- <ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283"
- preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa
- priority: 878153992
- priorityClassName: "480"
+ 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
+ preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
+ priority: -1756088332
+ priorityClassName: "490"
readinessGates:
- - conditionType: =ȑ-A敲ʉ
- restartPolicy: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑
- runtimeClassName: "485"
- schedulerName: "475"
+ - conditionType: '#sM網'
+ restartPolicy: Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů,趐V曡88 '
values:
- - "428"
+ - "441"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: J-_.ZCRT.0z-oe.G79.3bU_._nV34GH
- operator: DoesNotExist
+ - key: 4-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2-W
+ operator: In
+ values:
+ - 2-.s_6O-5_7_-0w_--5-_.3--_9QWJ
matchLabels:
- w_--5-_.3--_9QW2JkU27_.-4T-9: 4.K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._4
+ p2djmscp--ac8u23-k----26u5--72n-5.j8-0020-1-5/N7_B__--v-3-BzO5z80n_Ht5W_._._-2M2._i: wvU
namespaceSelector:
matchExpressions:
- - key: 3_Lsu-H_.f82-82
- operator: NotIn
- values:
- - P6j.u--.K--g__..2bidF.-0-...WE.-_tdt_-Z0_TM_p6lM.Y-nI
+ - key: fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o5
+ operator: Exists
matchLabels:
- 5i-z-s--o8t5-l6-407--m-dc---6-q-q0o90--g-09--d5ez1----b9/ERG2nV.__Y: T_YT.1--3
+ 14i: 07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_CG
namespaces:
- - "453"
- topologyKey: "454"
- weight: 199195373
+ - "466"
+ topologyKey: "467"
+ weight: 76443899
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7
- operator: NotIn
- values:
- - V.Vz_6.Hz_V_.r_v_._e_-78o_6Z..11_7pX3
+ - key: 7Vz_6.Hz_V_.r_v_._X
+ operator: Exists
matchLabels:
- 8v--xk-gr-2/5-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.C_--.F5_x.KNC0-.-m_0-m-6SN: S
+ 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q: 4XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0Ht
namespaceSelector:
matchExpressions:
- - key: 75p1em---1wwv3-f/k47M7y-Dy__3wcq
- operator: NotIn
- values:
- - x4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K..-68-A
+ - key: a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--G
+ operator: Exists
matchLabels:
- ? 5023-lt3-w-br75gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-6-g.4-----385h---0-u73phjo--8kb6--ut---p8--3-e-3-44---h-q7-ps/HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxB
- : w-W_-E
+ 7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5: yQh7.6.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__-ex-_1_-ODgC1
namespaces:
- - "439"
- topologyKey: "440"
+ - "452"
+ topologyKey: "453"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh
- operator: In
- values:
- - 7.W74-R_Z_Tz.a3_HWo4_6
+ - key: y--03-64-8l7-l-0787-1.t655-905---o7-g-10-oh-c3-----va10-m-fq97-81-xa-h0-4d-z-23---494/q-I_i72Tx3___-..f5-6x-_-o_6O_If-5_-_._F-09z02.4Z1
+ operator: Exists
matchLabels:
- 5396hq/v..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35HB: u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-Z
+ v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h: 16-...98m.p-kq.ByM1_..H1z..j_.r3--mT8vo
namespaceSelector:
matchExpressions:
- - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
+ - key: KTlO.__0PX
operator: In
values:
- - x3___-..f5-6x-_-o_6O_If-5_-_.F
+ - V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
- h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
+ ? 8-f2-ge-a--q6--sea-c-zz----0-d---z--3c9-47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/4--_63-Nz23.Ya-C3-._-l__KSvV-8-L__C_60-__.1S
+ : u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
namespaces:
- - "481"
- topologyKey: "482"
- weight: 1560053496
+ - "494"
+ topologyKey: "495"
+ weight: -512304328
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/i..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_D7RufiV-7uu
- operator: DoesNotExist
+ - key: pT-___-_5-6h_Ky7-_0Vw-Nzfdw.30
+ operator: Exists
matchLabels:
- t1n13sx82-cx-4q/Lbk81S3.T: d
+ 6j4uvf1-sdg--132bid-7x0u738--7w-tdt-u-0----p6l-3-znd-b/D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-1WV.-__05._Lsu-H_.f82-8_U: 55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3M
namespaceSelector:
matchExpressions:
- - key: U__L.KH6K.RwsfI_j
- operator: In
+ - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
+ operator: NotIn
values:
- - ""
+ - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
- f_-.l__.c17__f_-336-.B__.QiA6._3o_V-w._-0d__78: O-._-_8_.._._a-.N.__-_._.3l-_86_u2-7_._qN__A_f_B
+ l--7-n--kfk3x-j9133e--2t.58-7e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z4063---kb/5_D7RufiV-7uu: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
namespaces:
- - "467"
- topologyKey: "468"
+ - "480"
+ topologyKey: "481"
automountServiceAccountToken: true
containers:
- args:
- - "273"
+ - "274"
command:
- - "272"
+ - "273"
env:
- - name: "280"
- value: "281"
+ - name: "281"
+ value: "282"
valueFrom:
configMapKeyRef:
- key: "287"
- name: "286"
- optional: true
+ key: "288"
+ name: "287"
+ optional: false
fieldRef:
- apiVersion: "282"
- fieldPath: "283"
+ apiVersion: "283"
+ fieldPath: "284"
resourceFieldRef:
- containerName: "284"
- divisor: "381"
- resource: "285"
+ containerName: "285"
+ divisor: "107"
+ resource: "286"
secretKeyRef:
- key: "289"
- name: "288"
+ key: "290"
+ name: "289"
optional: false
envFrom:
- configMapRef:
- name: "278"
- optional: false
- prefix: "277"
- secretRef:
name: "279"
- optional: true
- image: "271"
- imagePullPolicy: 疪鑳w妕眵笭/9崍
+ optional: false
+ prefix: "278"
+ secretRef:
+ name: "280"
+ optional: false
+ image: "272"
+ imagePullPolicy: Ŵ壶ƵfȽÃ茓pȓɻ
lifecycle:
postStart:
- exec:
- command:
- - "315"
- httpGet:
- host: "317"
- httpHeaders:
- - name: "318"
- value: "319"
- path: "316"
- port: 1473407401
- scheme: ʐşƧ
- tcpSocket:
- host: "320"
- port: 199049889
- preStop:
exec:
command:
- "321"
httpGet:
- host: "323"
+ host: "324"
httpHeaders:
- - name: "324"
- value: "325"
+ - name: "325"
+ value: "326"
path: "322"
- port: -1952582931
- scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
+ port: "323"
+ scheme: /
tcpSocket:
host: "327"
- port: "326"
+ port: 1616390418
+ preStop:
+ exec:
+ command:
+ - "328"
+ httpGet:
+ host: "331"
+ httpHeaders:
+ - name: "332"
+ value: "333"
+ path: "329"
+ port: "330"
+ scheme: ť嗆u8晲T
+ tcpSocket:
+ host: "335"
+ port: "334"
livenessProbe:
exec:
command:
- - "296"
- failureThreshold: -300247800
+ - "297"
+ failureThreshold: 480631652
+ gRPC:
+ port: 1502643091
+ service: "305"
httpGet:
- host: "298"
+ host: "300"
httpHeaders:
- - name: "299"
- value: "300"
- path: "297"
- port: 865289071
- scheme: iɥ嵐sC8
- initialDelaySeconds: -1513284745
- periodSeconds: -414121491
- successThreshold: -1862764022
+ - name: "301"
+ value: "302"
+ path: "298"
+ port: "299"
+ scheme: C"6x$1s
+ initialDelaySeconds: -1850786456
+ periodSeconds: 1073055345
+ successThreshold: 1443329506
tcpSocket:
- host: "301"
- port: -898536659
- terminationGracePeriodSeconds: 1661310708546756312
- timeoutSeconds: 1258370227
- name: "270"
+ host: "304"
+ port: "303"
+ terminationGracePeriodSeconds: -8518791946699766113
+ timeoutSeconds: -518160270
+ name: "271"
ports:
- - containerPort: -1137436579
- hostIP: "276"
- hostPort: 1868683352
- name: "275"
- protocol: 颶妧Ö闊
+ - containerPort: 1157117817
+ hostIP: "277"
+ hostPort: -825277526
+ name: "276"
readinessProbe:
exec:
command:
- - "302"
- failureThreshold: -668834933
+ - "306"
+ failureThreshold: 1697842937
+ gRPC:
+ port: 1137109081
+ service: "313"
httpGet:
- host: "305"
- httpHeaders:
- - name: "306"
- value: "307"
- path: "303"
- port: "304"
- scheme: yƕ丆録²Ŏ)
- initialDelaySeconds: -1117254382
- periodSeconds: -1329220997
- successThreshold: -1659431885
- tcpSocket:
host: "308"
- port: 507384491
- terminationGracePeriodSeconds: -3376301370309029429
- timeoutSeconds: 1354318307
+ httpHeaders:
+ - name: "309"
+ value: "310"
+ path: "307"
+ port: 155090390
+ scheme: Ə埮pɵ{WOŭW灬pȭCV擭銆
+ initialDelaySeconds: -1896415283
+ periodSeconds: -1330095135
+ successThreshold: 1566213732
+ tcpSocket:
+ host: "312"
+ port: "311"
+ terminationGracePeriodSeconds: 4015558014521575949
+ timeoutSeconds: 1540899353
resources:
limits:
- ²sNƗ¸g: "50"
+ 琕鶫:顇ə娯Ȱ囌{: "853"
requests:
- 酊龨δ摖ȱğ_<: "118"
+ Z龏´DÒȗÔÂɘɢ鬍熖B芭花: "372"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - (娕uE增猍
+ - ɜ瞍阎lğ Ņ#耗Ǚ(
drop:
- - ' xǨŴ壶ƵfȽÃ茓pȓɻ挴ʠɜ瞍'
+ - 1ùfŭƽ眝{æ盪泙若`l}Ñ蠂
privileged: true
- procMount: 1ùfŭƽ眝{æ盪泙若`l}Ñ蠂
- readOnlyRootFilesystem: true
- runAsGroup: -8236071895143008294
+ procMount: 炊礫Ƽ¨Ix糂腂ǂǚŜEuEy竬ʆɞ
+ readOnlyRootFilesystem: false
+ runAsGroup: 1777701907934560087
runAsNonRoot: false
- runAsUser: 2548453080315983269
+ runAsUser: 2740243472098122859
seLinuxOptions:
- level: "332"
- role: "330"
- type: "331"
- user: "329"
+ level: "340"
+ role: "338"
+ type: "339"
+ user: "337"
seccompProfile:
- localhostProfile: "336"
- type: '[ƛ^輅'
+ localhostProfile: "344"
+ type: '}礤铟怖ý萜Ǖc8ǣ'
windowsOptions:
- gmsaCredentialSpec: "334"
- gmsaCredentialSpecName: "333"
- hostProcess: false
- runAsUserName: "335"
+ gmsaCredentialSpec: "342"
+ gmsaCredentialSpecName: "341"
+ hostProcess: true
+ runAsUserName: "343"
startupProbe:
exec:
command:
- - "309"
- failureThreshold: -2130294761
+ - "314"
+ failureThreshold: -1158164196
+ gRPC:
+ port: -260580148
+ service: "320"
httpGet:
- host: "311"
+ host: "316"
httpHeaders:
- - name: "312"
- value: "313"
- path: "310"
- port: -305362540
- scheme: Ǩ繫ʎǑyZ涬P蜷ɔ幩
- initialDelaySeconds: 455833230
- periodSeconds: 155090390
- successThreshold: -2113700533
+ - name: "317"
+ value: "318"
+ path: "315"
+ port: 2084371155
+ scheme: ɭɪǹ0衷,
+ initialDelaySeconds: -2146249756
+ periodSeconds: 129997413
+ successThreshold: 257855378
tcpSocket:
- host: "314"
- port: 1167615307
- terminationGracePeriodSeconds: -3385088507022597813
- timeoutSeconds: 1956567721
- stdinOnce: true
- terminationMessagePath: "328"
- terminationMessagePolicy: )DŽ髐njʉBn(fǂ
- tty: true
+ host: "319"
+ port: 1692740191
+ terminationGracePeriodSeconds: 3747469357740480836
+ timeoutSeconds: -1588068441
+ terminationMessagePath: "336"
volumeDevices:
- - devicePath: "295"
- name: "294"
+ - devicePath: "296"
+ name: "295"
volumeMounts:
- - mountPath: "291"
- mountPropagation: ƺ蛜6Ɖ飴ɎiǨź
- name: "290"
+ - mountPath: "292"
+ mountPropagation: 亏yƕ丆録²Ŏ)/灩聋3趐囨鏻
+ name: "291"
readOnly: true
- subPath: "292"
- subPathExpr: "293"
- workingDir: "274"
+ subPath: "293"
+ subPathExpr: "294"
+ workingDir: "275"
dnsConfig:
nameservers:
- - "495"
+ - "508"
options:
- - name: "497"
- value: "498"
+ - name: "510"
+ value: "511"
searches:
- - "496"
- dnsPolicy: 螗ɃŒGm¨z鋎靀
+ - "509"
+ dnsPolicy: G喾@潷ƹ8ï
enableServiceLinks: false
ephemeralContainers:
- args:
- - "340"
+ - "348"
command:
- - "339"
+ - "347"
env:
- - name: "347"
- value: "348"
+ - name: "355"
+ value: "356"
valueFrom:
configMapKeyRef:
- key: "354"
- name: "353"
- optional: true
+ key: "362"
+ name: "361"
+ optional: false
fieldRef:
- apiVersion: "349"
- fieldPath: "350"
+ apiVersion: "357"
+ fieldPath: "358"
resourceFieldRef:
- containerName: "351"
- divisor: "741"
- resource: "352"
+ containerName: "359"
+ divisor: "833"
+ resource: "360"
secretKeyRef:
- key: "356"
- name: "355"
+ key: "364"
+ name: "363"
optional: false
envFrom:
- configMapRef:
- name: "345"
+ name: "353"
optional: true
- prefix: "344"
+ prefix: "352"
secretRef:
- name: "346"
+ name: "354"
optional: true
- image: "338"
- imagePullPolicy: ʈʫ羶剹ƊF豎穜
+ image: "346"
+ imagePullPolicy: Ï 瞍髃#ɣȕW歹s梊ɥʋăƻ遲njl
lifecycle:
postStart:
exec:
command:
- - "383"
+ - "395"
httpGet:
- host: "386"
+ host: "398"
httpHeaders:
- - name: "387"
- value: "388"
- path: "384"
- port: "385"
- scheme: V
+ - name: "399"
+ value: "400"
+ path: "396"
+ port: "397"
+ scheme: 湷D谹気Ƀ秮òƬɸĻo:{
tcpSocket:
- host: "389"
- port: 1791758702
+ host: "402"
+ port: "401"
preStop:
exec:
command:
- - "390"
+ - "403"
httpGet:
- host: "393"
+ host: "405"
httpHeaders:
- - name: "394"
- value: "395"
- path: "391"
- port: "392"
- scheme: \Ď愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀o
+ - name: "406"
+ value: "407"
+ path: "404"
+ port: -752447038
+ scheme: '*劶?jĎĭ¥#Ʊ'
tcpSocket:
- host: "396"
- port: -1082980401
+ host: "409"
+ port: "408"
livenessProbe:
exec:
command:
- - "363"
- failureThreshold: -92253969
+ - "371"
+ failureThreshold: 336203895
+ gRPC:
+ port: -1447808835
+ service: "378"
httpGet:
- host: "366"
+ host: "374"
httpHeaders:
- - name: "367"
- value: "368"
- path: "364"
- port: "365"
- scheme: 裡×銵-紑浘牬釼
- initialDelaySeconds: 762856658
- periodSeconds: 713473395
- successThreshold: -912220708
+ - name: "375"
+ value: "376"
+ path: "372"
+ port: "373"
+ scheme: ȟP
+ initialDelaySeconds: 1304378059
+ periodSeconds: 71888222
+ successThreshold: -353088012
tcpSocket:
- host: "369"
- port: 1648539888
- terminationGracePeriodSeconds: 1046110838271944058
- timeoutSeconds: -1898251770
- name: "337"
+ host: "377"
+ port: 1445923603
+ terminationGracePeriodSeconds: -1123471466011207477
+ timeoutSeconds: -1738065470
+ name: "345"
ports:
- - containerPort: 1660454722
- hostIP: "343"
- hostPort: -1977635123
- name: "342"
- protocol: 礫Ƽ¨Ix糂腂ǂǚŜEu
+ - containerPort: -587859607
+ hostIP: "351"
+ hostPort: -36573584
+ name: "350"
+ protocol: 宆!鍲ɋȑoG鄧蜢暳ǽżLj捲攻xƂ
readinessProbe:
exec:
command:
- - "370"
- failureThreshold: 1504775716
+ - "379"
+ failureThreshold: -585628051
+ gRPC:
+ port: 494494744
+ service: "387"
httpGet:
- host: "372"
+ host: "382"
httpHeaders:
- - name: "373"
- value: "374"
- path: "371"
- port: 1797904220
- scheme: 羹
- initialDelaySeconds: -1510210852
- periodSeconds: 1770824317
- successThreshold: -1736247571
+ - name: "383"
+ value: "384"
+ path: "380"
+ port: "381"
+ scheme: ¯ÁȦtl敷斢
+ initialDelaySeconds: -578081758
+ periodSeconds: -547346163
+ successThreshold: -786927040
tcpSocket:
- host: "376"
- port: "375"
- terminationGracePeriodSeconds: 8657972883429789645
- timeoutSeconds: 1604463080
+ host: "386"
+ port: "385"
+ terminationGracePeriodSeconds: 8850141386971124227
+ timeoutSeconds: 1290872770
resources:
limits:
- ý萜Ǖc: "275"
+ Z漤ŗ坟Ů*劶?jĎ
+ - =歍þ
privileged: false
- procMount: e
- readOnlyRootFilesystem: false
- runAsGroup: 7755347487915595851
+ procMount: ¿əW#ļǹʅŚO虀^背遻堣灭ƴɦ燻踸
+ readOnlyRootFilesystem: true
+ runAsGroup: 7479459484302716044
runAsNonRoot: false
- runAsUser: -3365965984794126745
+ runAsUser: 8572105301692435343
seLinuxOptions:
- level: "401"
- role: "399"
- type: "400"
- user: "398"
+ level: "414"
+ role: "412"
+ type: "413"
+ user: "411"
seccompProfile:
- localhostProfile: "405"
- type: G昧牱fsǕT衩kƒK07曳wœj堑
+ localhostProfile: "418"
+ type: Sĕ濦ʓɻŊ0蚢鑸鶲Ãqb轫ʓ滨ĖRh
windowsOptions:
- gmsaCredentialSpec: "403"
- gmsaCredentialSpecName: "402"
+ gmsaCredentialSpec: "416"
+ gmsaCredentialSpecName: "415"
hostProcess: true
- runAsUserName: "404"
+ runAsUserName: "417"
startupProbe:
exec:
command:
- - "377"
- failureThreshold: -1457715462
+ - "388"
+ failureThreshold: -1223327585
+ gRPC:
+ port: 253035196
+ service: "394"
httpGet:
- host: "379"
+ host: "390"
httpHeaders:
- - name: "380"
- value: "381"
- path: "378"
- port: 1859267428
- scheme: ȟP
- initialDelaySeconds: 2040952835
- periodSeconds: -513325570
- successThreshold: 1491794693
+ - name: "391"
+ value: "392"
+ path: "389"
+ port: -2011369579
+ scheme: 忀oɎƺL肄$鬬
+ initialDelaySeconds: 1683993464
+ periodSeconds: -614393357
+ successThreshold: -183458945
tcpSocket:
- host: "382"
- port: 1445923603
- terminationGracePeriodSeconds: 5797412715505520759
- timeoutSeconds: -1101457109
- stdin: true
- targetContainerName: "406"
- terminationMessagePath: "397"
- terminationMessagePolicy: 肄$鬬
+ host: "393"
+ port: -1128805635
+ terminationGracePeriodSeconds: -425547479604104324
+ timeoutSeconds: -371229129
+ stdinOnce: true
+ targetContainerName: "419"
+ terminationMessagePath: "410"
+ terminationMessagePolicy: »淹揀.e鍃G昧牱
tty: true
volumeDevices:
- - devicePath: "362"
- name: "361"
+ - devicePath: "370"
+ name: "369"
volumeMounts:
- - mountPath: "358"
- mountPropagation: 暳ǽżLj捲攻xƂ9阠$嬏wy¶熀
- name: "357"
- readOnly: true
- subPath: "359"
- subPathExpr: "360"
- workingDir: "341"
+ - mountPath: "366"
+ mountPropagation: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
+ name: "365"
+ subPath: "367"
+ subPathExpr: "368"
+ workingDir: "349"
hostAliases:
- hostnames:
- - "493"
- ip: "492"
+ - "506"
+ ip: "505"
hostNetwork: true
- hostname: "423"
+ hostPID: true
+ hostname: "436"
imagePullSecrets:
- - name: "422"
+ - name: "435"
initContainers:
- args:
- "203"
@@ -636,43 +644,46 @@ spec:
name: "209"
optional: false
image: "201"
- imagePullPolicy: 鐫û咡W<敄lu|榝
+ imagePullPolicy: 8T 苧yñKJɐ扵Gƚ绤fʀ
lifecycle:
postStart:
exec:
command:
- - "246"
+ - "249"
httpGet:
- host: "249"
+ host: "251"
httpHeaders:
- - name: "250"
- value: "251"
- path: "247"
- port: "248"
- scheme: j爻ƙt叀碧闳ȩr嚧ʣq埄趛屡ʁ岼昕Ĭ
+ - name: "252"
+ value: "253"
+ path: "250"
+ port: -1624574056
+ scheme: 犵殇ŕ-Ɂ圯W:ĸ輦唊#
tcpSocket:
- host: "253"
- port: "252"
+ host: "255"
+ port: "254"
preStop:
exec:
command:
- - "254"
+ - "256"
httpGet:
- host: "257"
+ host: "258"
httpHeaders:
- - name: "258"
- value: "259"
- path: "255"
- port: "256"
- scheme: "y"
+ - name: "259"
+ value: "260"
+ path: "257"
+ port: 1748715911
+ scheme: 屡ʁ
tcpSocket:
- host: "260"
- port: -1620315711
+ host: "261"
+ port: -1554559634
livenessProbe:
exec:
command:
- "226"
- failureThreshold: 158280212
+ failureThreshold: -127849333
+ gRPC:
+ port: -228822833
+ service: "233"
httpGet:
host: "229"
httpHeaders:
@@ -681,14 +692,14 @@ spec:
path: "227"
port: "228"
scheme: 翁杙Ŧ癃8鸖ɱJȉ罴ņ螡ź
- initialDelaySeconds: 513341278
- periodSeconds: 1255312175
- successThreshold: -1740959124
+ initialDelaySeconds: -970312425
+ periodSeconds: 1451056156
+ successThreshold: 267768240
tcpSocket:
host: "232"
port: -1543701088
- terminationGracePeriodSeconds: -1552383991890236277
- timeoutSeconds: 627713162
+ terminationGracePeriodSeconds: -6249601560883066585
+ timeoutSeconds: -1213051101
name: "200"
ports:
- containerPort: -1409668172
@@ -699,24 +710,27 @@ spec:
readinessProbe:
exec:
command:
- - "233"
- failureThreshold: 852780575
+ - "234"
+ failureThreshold: -661937776
+ gRPC:
+ port: 571739592
+ service: "240"
httpGet:
- host: "235"
+ host: "236"
httpHeaders:
- - name: "236"
- value: "237"
- path: "234"
- port: -1099429189
- scheme: 9Ì
- initialDelaySeconds: 1689978741
- periodSeconds: -1798849477
- successThreshold: -1017263912
+ - name: "237"
+ value: "238"
+ path: "235"
+ port: 1741405963
+ scheme: V'WKw(ğ儴
+ initialDelaySeconds: 1853396726
+ periodSeconds: -280820676
+ successThreshold: 376404581
tcpSocket:
- host: "238"
- port: -1364571630
- terminationGracePeriodSeconds: -5381329890395615297
- timeoutSeconds: -1423854443
+ host: "239"
+ port: 965937684
+ terminationGracePeriodSeconds: 8892821664271613295
+ timeoutSeconds: 1330271338
resources:
limits:
"": "55"
@@ -726,51 +740,55 @@ spec:
allowPrivilegeEscalation: false
capabilities:
add:
- - .Ȏ蝪ʜ5遰=
+ - 墺Ò媁荭gw忊|E剒蔞|表徶đ
drop:
- - 埄Ȁ朦 wƯ貾坢'跩a
- privileged: true
- procMount: 垾现葢ŵ橨
+ - 议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&
+ privileged: false
+ procMount: ¦队偯J僳徥淳4揻-$ɽ丟×x锏ɟ
readOnlyRootFilesystem: true
- runAsGroup: 5005043520982487553
- runAsNonRoot: false
- runAsUser: 3024893073780181445
+ runAsGroup: -5569844914519516591
+ runAsNonRoot: true
+ runAsUser: -3342656999442156006
seLinuxOptions:
- level: "265"
- role: "263"
- type: "264"
- user: "262"
+ level: "266"
+ role: "264"
+ type: "265"
+ user: "263"
seccompProfile:
- localhostProfile: "269"
- type: l獕;跣Hǝcw媀瓄
+ localhostProfile: "270"
+ type: Ǒ輂,ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
windowsOptions:
- gmsaCredentialSpec: "267"
- gmsaCredentialSpecName: "266"
+ gmsaCredentialSpec: "268"
+ gmsaCredentialSpecName: "267"
hostProcess: false
- runAsUserName: "268"
+ runAsUserName: "269"
startupProbe:
exec:
command:
- - "239"
- failureThreshold: -743369977
+ - "241"
+ failureThreshold: 1388782554
+ gRPC:
+ port: 410611837
+ service: "248"
httpGet:
- host: "241"
+ host: "244"
httpHeaders:
- - name: "242"
- value: "243"
- path: "240"
- port: 1853396726
- scheme: 曬逴褜1ØœȠƬQg鄠[颐o啛更偢ɇ卷
- initialDelaySeconds: -1789370277
- periodSeconds: 1724958480
- successThreshold: -879005591
+ - name: "245"
+ value: "246"
+ path: "242"
+ port: "243"
+ scheme: Qg鄠[
+ initialDelaySeconds: 809006670
+ periodSeconds: 17771103
+ successThreshold: -1008070934
tcpSocket:
- host: "245"
- port: "244"
- terminationGracePeriodSeconds: -6977492437661738751
- timeoutSeconds: -1738948598
- terminationMessagePath: "261"
- terminationMessagePolicy: ɐ扵
+ host: "247"
+ port: -241238495
+ terminationGracePeriodSeconds: 4876101091241607178
+ timeoutSeconds: 972978563
+ stdin: true
+ terminationMessagePath: "262"
+ tty: true
volumeDevices:
- devicePath: "225"
name: "224"
@@ -781,69 +799,67 @@ spec:
subPath: "222"
subPathExpr: "223"
workingDir: "204"
- nodeName: "411"
+ nodeName: "424"
nodeSelector:
- "407": "408"
+ "420": "421"
os:
- name: +&ɃB沅零șPî壣
+ name: '%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ'
overhead:
- D傕Ɠ栊闔虝巒瀦ŕ: "124"
- preemptionPolicy: Iƭij韺ʧ>
- priority: 743241089
- priorityClassName: "494"
+ ʬÇ[輚趞ț@: "597"
+ preemptionPolicy: '%ǁšjƾ$ʛ螳%65c3盧Ŷb'
+ priority: -1371816595
+ priorityClassName: "507"
readinessGates:
- - conditionType: 0yVA嬂刲;牆詒ĸąs
- restartPolicy: 鈱ɖ'蠨磼O_h盌3+Œ9两@8
- runtimeClassName: "499"
- schedulerName: "489"
+ - conditionType: ?ȣ4c
+ restartPolicy: hȱɷȰW瀤oɢ嫎
+ runtimeClassName: "512"
+ schedulerName: "502"
securityContext:
- fsGroup: 2700145646260085226
- fsGroupChangePolicy: 灭ƴɦ燻踸陴Sĕ濦
- runAsGroup: -3019907599090873206
+ fsGroup: 6543873941346781273
+ fsGroupChangePolicy: E1º轪d覉;Ĕ颪œ
+ runAsGroup: -3501425899000054955
runAsNonRoot: true
- runAsUser: 107192836721418523
+ runAsUser: -1357828024706138776
seLinuxOptions:
- level: "415"
- role: "413"
- type: "414"
- user: "412"
+ level: "428"
+ role: "426"
+ type: "427"
+ user: "425"
seccompProfile:
- localhostProfile: "421"
- type: ɻŊ0
+ localhostProfile: "434"
+ type: 洈愥朘ZDŽʤ搤ȃ$|gɳ礬
supplementalGroups:
- - 5333609790435719468
+ - 8102472596003640481
sysctls:
- - name: "419"
- value: "420"
+ - name: "432"
+ value: "433"
windowsOptions:
- gmsaCredentialSpec: "417"
- gmsaCredentialSpecName: "416"
+ gmsaCredentialSpec: "430"
+ gmsaCredentialSpecName: "429"
hostProcess: true
- runAsUserName: "418"
- serviceAccount: "410"
- serviceAccountName: "409"
- setHostnameAsFQDN: true
- shareProcessNamespace: true
- subdomain: "424"
- terminationGracePeriodSeconds: 8904478052175112945
+ runAsUserName: "431"
+ serviceAccount: "423"
+ serviceAccountName: "422"
+ setHostnameAsFQDN: false
+ shareProcessNamespace: false
+ subdomain: "437"
+ terminationGracePeriodSeconds: -7488651211709812271
tolerations:
- - effect: '慰x:'
- key: "490"
- operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
- tolerationSeconds: 3362400521064014157
- value: "491"
+ - effect: r埁摢噓涫祲ŗȨĽ堐mpƮ搌
+ key: "503"
+ operator: Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏
+ tolerationSeconds: 6217170132371410053
+ value: "504"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- operator: In
- values:
- - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
+ - key: kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V
+ operator: Exists
matchLabels:
- 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
- maxSkew: -174245111
- topologyKey: "500"
- whenUnsatisfiable: ""
+ 5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w: j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7
+ maxSkew: 1762898358
+ topologyKey: "513"
+ whenUnsatisfiable: ʚʛ&]ŶɄğɒơ舎
volumes:
- awsElasticBlockStore:
fsType: "68"
@@ -1101,17 +1117,17 @@ spec:
storagePolicyID: "125"
storagePolicyName: "124"
volumePath: "122"
- ttlSecondsAfterFinished: -2008027992
+ ttlSecondsAfterFinished: -1905218436
schedule: "20"
startingDeadlineSeconds: -2555947251840004808
- successfulJobsHistoryLimit: -1190434752
+ successfulJobsHistoryLimit: -860626688
suspend: true
status:
active:
- - apiVersion: "510"
- fieldPath: "512"
- kind: "507"
- name: "509"
- namespace: "508"
- resourceVersion: "511"
- uid: 蒱鄆&嬜Š&?鳢.ǀŭ瘢颦
+ - apiVersion: "523"
+ fieldPath: "525"
+ kind: "520"
+ name: "522"
+ namespace: "521"
+ resourceVersion: "524"
+ uid: 砽§^Dê婼SƸ炃&-Ƹ绿
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json
index 2c613237516..8ea55eee486 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.json
@@ -606,95 +606,85 @@
"port": -438588982,
"host": "230"
},
- "initialDelaySeconds": 1004325340,
- "timeoutSeconds": -1313320434,
- "periodSeconds": 14304392,
- "successThreshold": 465972736,
- "failureThreshold": -1784617397,
- "terminationGracePeriodSeconds": 8340498462419356921
+ "gRPC": {
+ "port": 133009177,
+ "service": "231"
+ },
+ "initialDelaySeconds": -1438286448,
+ "timeoutSeconds": 834105836,
+ "periodSeconds": -1462219068,
+ "successThreshold": -370386363,
+ "failureThreshold": 1714588921,
+ "terminationGracePeriodSeconds": -5353126188990290855
},
"readinessProbe": {
"exec": {
"command": [
- "231"
+ "232"
]
},
"httpGet": {
- "path": "232",
- "port": 627670321,
- "host": "233",
+ "path": "233",
+ "port": "234",
+ "host": "235",
+ "scheme": "跩aŕ翑",
"httpHeaders": [
{
- "name": "234",
- "value": "235"
+ "name": "236",
+ "value": "237"
}
]
},
"tcpSocket": {
- "port": "236",
- "host": "237"
+ "port": "238",
+ "host": "239"
},
- "initialDelaySeconds": -1666819085,
- "timeoutSeconds": -282193676,
- "periodSeconds": 1777326813,
- "successThreshold": -1471289102,
- "failureThreshold": 704287801,
- "terminationGracePeriodSeconds": 8549738818875784336
+ "gRPC": {
+ "port": 1990641192,
+ "service": "240"
+ },
+ "initialDelaySeconds": -2121788927,
+ "timeoutSeconds": 1017803158,
+ "periodSeconds": 233282513,
+ "successThreshold": -518330919,
+ "failureThreshold": 1313273370,
+ "terminationGracePeriodSeconds": -5569844914519516591
},
"startupProbe": {
"exec": {
"command": [
- "238"
+ "241"
]
},
"httpGet": {
- "path": "239",
- "port": -518330919,
- "host": "240",
- "scheme": "NKƙ順\\E¦队偯J僳徥淳4揻-$",
+ "path": "242",
+ "port": "243",
+ "host": "244",
+ "scheme": "E¦",
"httpHeaders": [
{
- "name": "241",
- "value": "242"
+ "name": "245",
+ "value": "246"
}
]
},
"tcpSocket": {
- "port": 1235694147,
- "host": "243"
+ "port": "247",
+ "host": "248"
},
- "initialDelaySeconds": 348370746,
- "timeoutSeconds": 468369166,
- "periodSeconds": 1909548849,
- "successThreshold": 1492642476,
- "failureThreshold": -367153801,
- "terminationGracePeriodSeconds": 8194791334069427324
+ "gRPC": {
+ "port": -1813746408,
+ "service": "249"
+ },
+ "initialDelaySeconds": -853533760,
+ "timeoutSeconds": -560717833,
+ "periodSeconds": -760292259,
+ "successThreshold": -1164530482,
+ "failureThreshold": 1877574041,
+ "terminationGracePeriodSeconds": 6143034813730176704
},
"lifecycle": {
"postStart": {
- "exec": {
- "command": [
- "244"
- ]
- },
- "httpGet": {
- "path": "245",
- "port": 1746399757,
- "host": "246",
- "scheme": "V訆Ǝżŧ",
- "httpHeaders": [
- {
- "name": "247",
- "value": "248"
- }
- ]
- },
- "tcpSocket": {
- "port": 204229950,
- "host": "249"
- }
- },
- "preStop": {
"exec": {
"command": [
"250"
@@ -704,7 +694,6 @@
"path": "251",
"port": "252",
"host": "253",
- "scheme": "ɣľ)酊龨δ摖ȱğ_\u003cǬëJ橈",
"httpHeaders": [
{
"name": "254",
@@ -713,104 +702,128 @@
]
},
"tcpSocket": {
- "port": "256",
- "host": "257"
+ "port": 1909548849,
+ "host": "256"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "257"
+ ]
+ },
+ "httpGet": {
+ "path": "258",
+ "port": -341287812,
+ "host": "259",
+ "scheme": " 鰔澝qV訆ƎżŧL²",
+ "httpHeaders": [
+ {
+ "name": "260",
+ "value": "261"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": 1328165061,
+ "host": "262"
}
}
},
- "terminationMessagePath": "258",
- "terminationMessagePolicy": "鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC",
- "imagePullPolicy": "ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏",
+ "terminationMessagePath": "263",
+ "terminationMessagePolicy": "¸gĩ",
+ "imagePullPolicy": "酊龨δ摖ȱğ_\u003c",
"securityContext": {
"capabilities": {
"add": [
- "²静ƲǦŐnj汰8"
+ "J橈'琕鶫:顇ə娯"
],
"drop": [
- "İ"
+ "囌{屿oiɥ嵐sC"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "259",
- "role": "260",
- "type": "261",
- "level": "262"
+ "user": "264",
+ "role": "265",
+ "type": "266",
+ "level": "267"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "263",
- "gmsaCredentialSpec": "264",
- "runAsUserName": "265",
- "hostProcess": true
+ "gmsaCredentialSpecName": "268",
+ "gmsaCredentialSpec": "269",
+ "runAsUserName": "270",
+ "hostProcess": false
},
- "runAsUser": -1311522118950739815,
- "runAsGroup": 5903342706635131481,
+ "runAsUser": -5175286970144973961,
+ "runAsGroup": 5404658974498114041,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
- "allowPrivilegeEscalation": true,
- "procMount": "±p鋄5弢ȹ均i绝5哇芆",
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": false,
+ "procMount": "ih亏yƕ丆録²",
"seccompProfile": {
- "type": "ì",
- "localhostProfile": "266"
+ "type": ")/灩聋3趐囨鏻",
+ "localhostProfile": "271"
}
- }
+ },
+ "tty": true
}
],
"containers": [
{
- "name": "267",
- "image": "268",
+ "name": "272",
+ "image": "273",
"command": [
- "269"
+ "274"
],
"args": [
- "270"
+ "275"
],
- "workingDir": "271",
+ "workingDir": "276",
"ports": [
{
- "name": "272",
- "hostPort": -1449289597,
- "containerPort": 1473407401,
- "protocol": "ʐşƧ",
- "hostIP": "273"
+ "name": "277",
+ "hostPort": -1365158918,
+ "containerPort": -305362540,
+ "protocol": "Ǩ繫ʎǑyZ涬P蜷ɔ幩",
+ "hostIP": "278"
}
],
"envFrom": [
{
- "prefix": "274",
+ "prefix": "279",
"configMapRef": {
- "name": "275",
+ "name": "280",
"optional": true
},
"secretRef": {
- "name": "276",
- "optional": false
+ "name": "281",
+ "optional": true
}
}
],
"env": [
{
- "name": "277",
- "value": "278",
+ "name": "282",
+ "value": "283",
"valueFrom": {
"fieldRef": {
- "apiVersion": "279",
- "fieldPath": "280"
+ "apiVersion": "284",
+ "fieldPath": "285"
},
"resourceFieldRef": {
- "containerName": "281",
- "resource": "282",
- "divisor": "178"
+ "containerName": "286",
+ "resource": "287",
+ "divisor": "9"
},
"configMapKeyRef": {
- "name": "283",
- "key": "284",
+ "name": "288",
+ "key": "289",
"optional": false
},
"secretKeyRef": {
- "name": "285",
- "key": "286",
+ "name": "290",
+ "key": "291",
"optional": false
}
}
@@ -818,86 +831,62 @@
],
"resources": {
"limits": {
- "饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM": "270"
+ "{WOŭW灬pȭCV擭銆jʒǚ鍰": "212"
},
"requests": {
- "(fǂǢ曣ŋayå": "182"
+ "| 鞤ɱďW賁Ěɭɪǹ0衷,": "227"
}
},
"volumeMounts": [
{
- "name": "287",
+ "name": "292",
"readOnly": true,
- "mountPath": "288",
- "subPath": "289",
- "mountPropagation": "崍h趭(娕u",
- "subPathExpr": "290"
+ "mountPath": "293",
+ "subPath": "294",
+ "mountPropagation": "Bn(fǂǢ曣ŋayåe躒訙Ǫ",
+ "subPathExpr": "295"
}
],
"volumeDevices": [
{
- "name": "291",
- "devicePath": "292"
+ "name": "296",
+ "devicePath": "297"
}
],
"livenessProbe": {
"exec": {
"command": [
- "293"
+ "298"
]
},
"httpGet": {
- "path": "294",
- "port": -869776221,
- "host": "295",
- "scheme": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
+ "path": "299",
+ "port": "300",
+ "host": "301",
+ "scheme": "uE增猍ǵ xǨŴ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "302",
+ "value": "303"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": 2112112129,
+ "host": "304"
},
- "initialDelaySeconds": 1532103808,
- "timeoutSeconds": 593357971,
- "periodSeconds": 1453852685,
- "successThreshold": 2037135322,
- "failureThreshold": -571541491,
- "terminationGracePeriodSeconds": -7117039988160665426
+ "gRPC": {
+ "port": -1758095966,
+ "service": "305"
+ },
+ "initialDelaySeconds": 1627026804,
+ "timeoutSeconds": -1508967300,
+ "periodSeconds": -1058923098,
+ "successThreshold": -1656699070,
+ "failureThreshold": -1918622971,
+ "terminationGracePeriodSeconds": 4430285638700927057
},
"readinessProbe": {
- "exec": {
- "command": [
- "300"
- ]
- },
- "httpGet": {
- "path": "301",
- "port": -1920304485,
- "host": "302",
- "httpHeaders": [
- {
- "name": "303",
- "value": "304"
- }
- ]
- },
- "tcpSocket": {
- "port": -531787516,
- "host": "305"
- },
- "initialDelaySeconds": 2073630689,
- "timeoutSeconds": -830875556,
- "periodSeconds": -1395144116,
- "successThreshold": -684167223,
- "failureThreshold": -751455207,
- "terminationGracePeriodSeconds": -3839813958613977681
- },
- "startupProbe": {
"exec": {
"command": [
"306"
@@ -905,108 +894,146 @@
},
"httpGet": {
"path": "307",
- "port": -2064284357,
- "host": "308",
+ "port": "308",
+ "host": "309",
+ "scheme": "Ǹ|蕎'佉賞ǧĒz",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "310",
+ "value": "311"
}
]
},
"tcpSocket": {
- "port": -313085430,
- "host": "311"
+ "port": -1920304485,
+ "host": "312"
},
- "initialDelaySeconds": -1789721862,
- "timeoutSeconds": 638012651,
- "periodSeconds": -1161185537,
- "successThreshold": 1928937303,
- "failureThreshold": 1611386356,
- "terminationGracePeriodSeconds": 3527635231201289331
+ "gRPC": {
+ "port": -655359985,
+ "service": "313"
+ },
+ "initialDelaySeconds": 875971520,
+ "timeoutSeconds": 161338049,
+ "periodSeconds": 65094252,
+ "successThreshold": -1590604058,
+ "failureThreshold": -824445204,
+ "terminationGracePeriodSeconds": -9182172319006215143
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "314"
+ ]
+ },
+ "httpGet": {
+ "path": "315",
+ "port": -1050824692,
+ "host": "316",
+ "scheme": "Ñ蠂Ü[ƛ^輅",
+ "httpHeaders": [
+ {
+ "name": "317",
+ "value": "318"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -1192140557,
+ "host": "319"
+ },
+ "gRPC": {
+ "port": 240657401,
+ "service": "320"
+ },
+ "initialDelaySeconds": 1817639756,
+ "timeoutSeconds": 374862544,
+ "periodSeconds": 1518001294,
+ "successThreshold": 1467189105,
+ "failureThreshold": -2068583194,
+ "terminationGracePeriodSeconds": -124867620858254891
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "312"
+ "321"
]
},
"httpGet": {
- "path": "313",
- "port": -1347045470,
- "host": "314",
- "scheme": "¨Ix糂腂ǂǚŜEuEy",
+ "path": "322",
+ "port": "323",
+ "host": "324",
+ "scheme": "ǚŜEuEy竬ʆɞ",
"httpHeaders": [
{
- "name": "315",
- "value": "316"
+ "name": "325",
+ "value": "326"
}
]
},
"tcpSocket": {
- "port": -1945921250,
- "host": "317"
+ "port": "327",
+ "host": "328"
}
},
"preStop": {
"exec": {
"command": [
- "318"
+ "329"
]
},
"httpGet": {
- "path": "319",
- "port": 1605974497,
- "host": "320",
- "scheme": "m坊柩劄奼[ƕƑĝ",
+ "path": "330",
+ "port": "331",
+ "host": "332",
+ "scheme": "坊柩劄",
"httpHeaders": [
{
- "name": "321",
- "value": "322"
+ "name": "333",
+ "value": "334"
}
]
},
"tcpSocket": {
- "port": 293042649,
- "host": "323"
+ "port": -1345219897,
+ "host": "335"
}
}
},
- "terminationMessagePath": "324",
- "terminationMessagePolicy": "ǔvÄÚ×p鬷m罂o3ǰ廋i乳'",
- "imagePullPolicy": "xƂ9阠",
+ "terminationMessagePath": "336",
+ "terminationMessagePolicy": "Ƒĝ®EĨǔvÄÚ×p鬷m",
+ "imagePullPolicy": "鄧蜢暳ǽż",
"securityContext": {
"capabilities": {
"add": [
- "wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶縆ł"
+ "攻xƂ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003c"
],
"drop": [
- "[澔槃JŵǤ桒"
+ "鯶縆"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "325",
- "role": "326",
- "type": "327",
- "level": "328"
+ "user": "337",
+ "role": "338",
+ "type": "339",
+ "level": "340"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "329",
- "gmsaCredentialSpec": "330",
- "runAsUserName": "331",
+ "gmsaCredentialSpecName": "341",
+ "gmsaCredentialSpec": "342",
+ "runAsUserName": "343",
"hostProcess": true
},
- "runAsUser": 7721939829013914482,
- "runAsGroup": -2468498954406158514,
+ "runAsUser": 3276444400509442476,
+ "runAsGroup": -928325006716912269,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": false,
- "procMount": "ȼN翾ȾD虓氙磂tńČȷǻ.wȏâ磠",
+ "readOnlyRootFilesystem": true,
+ "allowPrivilegeEscalation": true,
+ "procMount": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
"seccompProfile": {
- "type": "崖S«V¯Á",
- "localhostProfile": "332"
+ "type": "Čȷǻ.wȏâ磠Ƴ崖S«V",
+ "localhostProfile": "344"
}
},
"stdin": true,
@@ -1015,318 +1042,325 @@
],
"ephemeralContainers": [
{
- "name": "333",
- "image": "334",
+ "name": "345",
+ "image": "346",
"command": [
- "335"
+ "347"
],
"args": [
- "336"
+ "348"
],
- "workingDir": "337",
+ "workingDir": "349",
"ports": [
{
- "name": "338",
- "hostPort": -1069764899,
- "containerPort": -329321819,
- "protocol": "ż鯀1",
- "hostIP": "339"
+ "name": "350",
+ "hostPort": 1733132724,
+ "containerPort": -122203422,
+ "protocol": "斢杧ż鯀1'鸔",
+ "hostIP": "351"
}
],
"envFrom": [
{
- "prefix": "340",
+ "prefix": "352",
"configMapRef": {
- "name": "341",
+ "name": "353",
"optional": true
},
"secretRef": {
- "name": "342",
- "optional": true
+ "name": "354",
+ "optional": false
}
}
],
"env": [
{
- "name": "343",
- "value": "344",
+ "name": "355",
+ "value": "356",
"valueFrom": {
"fieldRef": {
- "apiVersion": "345",
- "fieldPath": "346"
+ "apiVersion": "357",
+ "fieldPath": "358"
},
"resourceFieldRef": {
- "containerName": "347",
- "resource": "348",
- "divisor": "343"
+ "containerName": "359",
+ "resource": "360",
+ "divisor": "363"
},
"configMapKeyRef": {
- "name": "349",
- "key": "350",
- "optional": true
+ "name": "361",
+ "key": "362",
+ "optional": false
},
"secretKeyRef": {
- "name": "351",
- "key": "352",
- "optional": false
+ "name": "363",
+ "key": "364",
+ "optional": true
}
}
}
],
"resources": {
"limits": {
- "q櫞繡": "121"
+ "繡旹翃ɾ氒ĺʈʫ羶剹Ɗ": "151"
},
"requests": {
- "肄$鬬": "915"
+ "t{Eɾ敹Ȯ-湷D": "398"
}
},
"volumeMounts": [
{
- "name": "353",
- "readOnly": true,
- "mountPath": "354",
- "subPath": "355",
- "mountPropagation": "羶剹ƊF豎穜姰l咑耖",
- "subPathExpr": "356"
+ "name": "365",
+ "mountPath": "366",
+ "subPath": "367",
+ "mountPropagation": "醏g遧Ȋ飂廤Ƌʙ",
+ "subPathExpr": "368"
}
],
"volumeDevices": [
{
- "name": "357",
- "devicePath": "358"
+ "name": "369",
+ "devicePath": "370"
}
],
"livenessProbe": {
"exec": {
"command": [
- "359"
+ "371"
]
},
"httpGet": {
- "path": "360",
- "port": 892837330,
- "host": "361",
- "scheme": "気Ƀ秮ò",
+ "path": "372",
+ "port": "373",
+ "host": "374",
"httpHeaders": [
{
- "name": "362",
- "value": "363"
+ "name": "375",
+ "value": "376"
}
]
},
"tcpSocket": {
- "port": "364",
- "host": "365"
+ "port": "377",
+ "host": "378"
},
- "initialDelaySeconds": -1649234654,
- "timeoutSeconds": -263708518,
- "periodSeconds": 541943046,
- "successThreshold": 1502194981,
- "failureThreshold": 1447996588,
- "terminationGracePeriodSeconds": -3565639689247870986
+ "gRPC": {
+ "port": 151468789,
+ "service": "379"
+ },
+ "initialDelaySeconds": 1389988151,
+ "timeoutSeconds": -1309338556,
+ "periodSeconds": 1928526133,
+ "successThreshold": 92593647,
+ "failureThreshold": -176877925,
+ "terminationGracePeriodSeconds": 4331154303122903365
},
"readinessProbe": {
"exec": {
"command": [
- "366"
+ "380"
]
},
"httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "h`職铳s44矕Ƈ",
+ "path": "381",
+ "port": "382",
+ "host": "383",
"httpHeaders": [
{
- "name": "370",
- "value": "371"
+ "name": "384",
+ "value": "385"
}
]
},
"tcpSocket": {
- "port": 1592612939,
- "host": "372"
+ "port": 1903147240,
+ "host": "386"
},
- "initialDelaySeconds": 168484477,
- "timeoutSeconds": 1022152027,
- "periodSeconds": -1001034710,
- "successThreshold": 467693083,
- "failureThreshold": 1262500808,
- "terminationGracePeriodSeconds": -867246751039954454
+ "gRPC": {
+ "port": -1001034710,
+ "service": "387"
+ },
+ "initialDelaySeconds": 467693083,
+ "timeoutSeconds": 1262500808,
+ "periodSeconds": -201921620,
+ "successThreshold": 829672703,
+ "failureThreshold": 718799934,
+ "terminationGracePeriodSeconds": -5728960352366086876
},
"startupProbe": {
"exec": {
"command": [
- "373"
+ "388"
]
},
"httpGet": {
- "path": "374",
- "port": -1452767599,
- "host": "375",
- "scheme": " 瞍髃#ɣȕ",
+ "path": "389",
+ "port": "390",
+ "host": "391",
"httpHeaders": [
{
- "name": "376",
- "value": "377"
+ "name": "392",
+ "value": "393"
}
]
},
"tcpSocket": {
- "port": "378",
- "host": "379"
+ "port": -1857865963,
+ "host": "394"
},
- "initialDelaySeconds": -1014296961,
- "timeoutSeconds": 1708011112,
- "periodSeconds": -603097910,
- "successThreshold": 1776174141,
- "failureThreshold": -1349160121,
- "terminationGracePeriodSeconds": -3183357344394757806
+ "gRPC": {
+ "port": 212308536,
+ "service": "395"
+ },
+ "initialDelaySeconds": 1096508251,
+ "timeoutSeconds": 1527977545,
+ "periodSeconds": -995439906,
+ "successThreshold": -629974246,
+ "failureThreshold": 22814565,
+ "terminationGracePeriodSeconds": -385633037408963769
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "380"
+ "396"
]
},
"httpGet": {
- "path": "381",
- "port": "382",
- "host": "383",
- "scheme": "'蠨磼O_h盌3+Œ9两@8",
+ "path": "397",
+ "port": 134832144,
+ "host": "398",
+ "scheme": "Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍",
"httpHeaders": [
{
- "name": "384",
- "value": "385"
+ "name": "399",
+ "value": "400"
}
]
},
"tcpSocket": {
- "port": -130408357,
- "host": "386"
+ "port": -1289510276,
+ "host": "401"
}
},
"preStop": {
"exec": {
"command": [
- "387"
+ "402"
]
},
"httpGet": {
- "path": "388",
- "port": "389",
- "host": "390",
- "scheme": "ŒGm¨z鋎靀G",
+ "path": "403",
+ "port": -281926929,
+ "host": "404",
+ "scheme": "葰賦",
"httpHeaders": [
{
- "name": "391",
- "value": "392"
+ "name": "405",
+ "value": "406"
}
]
},
"tcpSocket": {
- "port": "393",
- "host": "394"
+ "port": "407",
+ "host": "408"
}
}
},
- "terminationMessagePath": "395",
- "terminationMessagePolicy": "W#ļǹʅŚO虀^",
- "imagePullPolicy": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "terminationMessagePath": "409",
+ "terminationMessagePolicy": "ƴ4虵p",
+ "imagePullPolicy": "ļǹʅŚO虀",
"securityContext": {
"capabilities": {
"add": [
- "5Ų買霎ȃň[\u003eą S"
+ "遻堣灭ƴ"
],
"drop": [
- "d'呪"
+ "燻"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "410",
+ "role": "411",
+ "type": "412",
+ "level": "413"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
- "hostProcess": false
+ "gmsaCredentialSpecName": "414",
+ "gmsaCredentialSpec": "415",
+ "runAsUserName": "416",
+ "hostProcess": true
},
- "runAsUser": -4328915352766545090,
- "runAsGroup": -8583816881639870831,
+ "runAsUser": 8980441885915239627,
+ "runAsGroup": 2793654627656241086,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "",
+ "readOnlyRootFilesystem": true,
+ "allowPrivilegeEscalation": false,
+ "procMount": "鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW",
"seccompProfile": {
- "type": "ǻG喾@潷ƹ8ï驿",
- "localhostProfile": "403"
+ "type": "oɢ嫎",
+ "localhostProfile": "417"
}
},
"stdin": true,
"stdinOnce": true,
- "tty": true,
- "targetContainerName": "404"
+ "targetContainerName": "418"
}
],
- "restartPolicy": "rƈa餖Ľ",
- "terminationGracePeriodSeconds": -3501425899000054955,
- "activeDeadlineSeconds": -5896459953103714718,
- "dnsPolicy": "ŶJ詢QǾɁ鍻G鯇ɀ魒Ð扬=",
+ "restartPolicy": "篎3o8[y#t(ȗŜŲ\u0026洪y儕l",
+ "terminationGracePeriodSeconds": 4233308148542782456,
+ "activeDeadlineSeconds": -2958928304063527963,
+ "dnsPolicy": "¶ȲƪE1º轪d",
"nodeSelector": {
- "405": "406"
+ "419": "420"
},
- "serviceAccountName": "407",
- "serviceAccount": "408",
- "automountServiceAccountToken": false,
- "nodeName": "409",
+ "serviceAccountName": "421",
+ "serviceAccount": "422",
+ "automountServiceAccountToken": true,
+ "nodeName": "423",
"hostNetwork": true,
"hostPID": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "410",
- "role": "411",
- "type": "412",
- "level": "413"
+ "user": "424",
+ "role": "425",
+ "type": "426",
+ "level": "427"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "414",
- "gmsaCredentialSpec": "415",
- "runAsUserName": "416",
+ "gmsaCredentialSpecName": "428",
+ "gmsaCredentialSpec": "429",
+ "runAsUserName": "430",
"hostProcess": false
},
- "runAsUser": -2841141127223294729,
- "runAsGroup": -6754946370765710682,
+ "runAsUser": -6558079743661172944,
+ "runAsGroup": -2713809069228546579,
"runAsNonRoot": false,
"supplementalGroups": [
- -1612979559790338418
+ -5071790362153704411
],
- "fsGroup": 6541871045343732877,
+ "fsGroup": -2841141127223294729,
"sysctls": [
{
- "name": "417",
- "value": "418"
+ "name": "431",
+ "value": "432"
}
],
- "fsGroupChangePolicy": "d%蹶/ʗp壥",
+ "fsGroupChangePolicy": "|gɳ礬.b屏ɧeʫį淓¯Ą0",
"seccompProfile": {
- "type": "揤郡ɑ鮽ǍJB膾扉",
- "localhostProfile": "419"
+ "type": "忀z委\u003e,趐V曡88 u怞",
+ "localhostProfile": "433"
}
},
"imagePullSecrets": [
{
- "name": "420"
+ "name": "434"
}
],
- "hostname": "421",
- "subdomain": "422",
+ "hostname": "435",
+ "subdomain": "436",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1334,19 +1368,19 @@
{
"matchExpressions": [
{
- "key": "423",
- "operator": " u怞荊ù灹8緔Tj§E蓋Cȗä",
+ "key": "437",
+ "operator": "塨Ý",
"values": [
- "424"
+ "438"
]
}
],
"matchFields": [
{
- "key": "425",
- "operator": "愉BʟƮƙ",
+ "key": "439",
+ "operator": "§E蓋C",
"values": [
- "426"
+ "440"
]
}
]
@@ -1355,23 +1389,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -1699090088,
+ "weight": 460581668,
"preference": {
"matchExpressions": [
{
- "key": "427",
- "operator": "普闎Ť萃Q+駟à稨氙",
+ "key": "441",
+ "operator": " ɲ±",
"values": [
- "428"
+ "442"
]
}
],
"matchFields": [
{
- "key": "429",
- "operator": "血x柱栦阫Ƈʥ椹ý飝ȕ笧L",
+ "key": "443",
+ "operator": "ƙ2詃ǣ普闎Ť萃Q+駟à稨氙'[\u003eĵ",
"values": [
- "430"
+ "444"
]
}
]
@@ -1384,30 +1418,27 @@
{
"labelSelector": {
"matchLabels": {
- "0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7": "2"
+ "Tt_u_.__I_-_-3-3--5X1rh-K5L": "zOBW.9oE9_6.--v17r__.b"
},
"matchExpressions": [
{
- "key": "e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5",
+ "key": "1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m7o/u-3-_n0..KpiS.oK-.O--b",
"operator": "DoesNotExist"
}
]
},
"namespaces": [
- "437"
+ "451"
],
- "topologyKey": "438",
+ "topologyKey": "452",
"namespaceSelector": {
"matchLabels": {
- "Y.39g_.--_-_ve5.m_U": "mXZ-3"
+ "3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2": "CpS__.39g_.--_-_ve5.m_2_--XZx"
},
"matchExpressions": [
{
- "key": "p-a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h-6.6qr-7----rgvf3q-z-5z80n--t5--9-4-d2-22--i--401/2-n_5023Xl-3Pw_-r75--_-A-o-_y",
- "operator": "In",
- "values": [
- "Z-nE...-__--.4"
- ]
+ "key": "w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf",
+ "operator": "DoesNotExist"
}
]
}
@@ -1415,37 +1446,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 450920824,
+ "weight": 730155844,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "0k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a42-2y20--s-7l6e--s-9/5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K.a": "A_-_l67Q.-_t--O.3L.z2-y.-...CC"
+ "ZXC0_-7.-hj-O_8-b6E_--B": "p8O_._e_3_.4_W_H"
},
"matchExpressions": [
{
- "key": "d-m._fN._k8__._ep21",
+ "key": "6n-f-x--i-b/8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.4",
"operator": "In",
"values": [
- "5_--u.._.105-4_ed-0-i_zZsYo"
+ "n-W23-_.z_.._s--_F-BR-.W"
]
}
]
},
"namespaces": [
- "451"
+ "465"
],
- "topologyKey": "452",
+ "topologyKey": "466",
"namespaceSelector": {
"matchLabels": {
- "8d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d019v.g9f82k8-2-d--n--r8661--3-8-tc/TB-d--Q5._D60": "F.-0-...WE.-_tdE"
+ "4-2-k-27-4r4-d-9a42-2y20--9/AlR__8-7_-YD-Q9u": "gX__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.7"
},
"matchExpressions": [
{
- "key": "t1n13sx82-cx-4q/0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.T",
- "operator": "NotIn",
- "values": [
- "2-__3uM77U7._pT-___-_5-6h_K7"
- ]
+ "key": "Oep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q2",
+ "operator": "DoesNotExist"
}
]
}
@@ -1458,33 +1486,27 @@
{
"labelSelector": {
"matchLabels": {
- "q": "zfdw.3-._CJ4a1._-_CH-6"
+ "Qw__YT.1-y": "eo7.pJ-4-1WV.-__05._LsuH"
},
"matchExpressions": [
{
- "key": "nJ_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-_.m7-Q____vSW_4-__h",
- "operator": "In",
- "values": [
- "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1"
- ]
+ "key": "8",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "465"
+ "479"
],
- "topologyKey": "466",
+ "topologyKey": "480",
"namespaceSelector": {
"matchLabels": {
- "o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H": "gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq"
+ "s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp": "5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7"
},
"matchExpressions": [
{
- "key": "8v---a9j23/9",
- "operator": "In",
- "values": [
- "y__y.9O.L-.m.3h"
- ]
+ "key": "27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y",
+ "operator": "DoesNotExist"
}
]
}
@@ -1492,33 +1514,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -2090647419,
+ "weight": -1638320945,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "N-._M5..-N_H_55..--E3_2D-1DW_o": "k._kzB7U_.Q.45cy-.._-__-Zvt.L6"
+ "q_U-.60--o._8H__ln_9--Avi.gZdnUV6": "81_---l_3_-_G-D....js--a---..6bD_M--c.0Q-2"
},
"matchExpressions": [
{
- "key": "3m-8vuo17qre-33-5-u8f0f1qv--i72-x3---v255/GT._.Y4-0.67hP-lX-_-..5-.._r6M__4P",
+ "key": "1.--5B-.SuN.-v-SBR_P8.7-7q",
"operator": "In",
"values": [
- "6x-_-o_6O_If-5_-_._F-09z024"
+ "E35H__.B_6_-U..u8gb"
]
}
]
},
"namespaces": [
- "479"
+ "493"
],
- "topologyKey": "480",
+ "topologyKey": "494",
"namespaceSelector": {
"matchLabels": {
- "23---49tw-2j.7-e10-f-o-fr-5-3t--y9---5/G0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.-a": "ql__KSvV-8-L__C_60-__.19_-gYY._..fP-h"
+ "8GA--__A7r.8U.V_p61-d_O-Ynu.7.._B-ks7dx": "S-O62o.8._.---UK_-.j21---__y.9O.L-.m.3--.4_-8U.2617.W7b"
},
"matchExpressions": [
{
- "key": "ctyxc-1-x9-i9wegl8ppv90-u---2-w-bn54kh-9/77q___n.__16ee.-.66c",
+ "key": "03-2-h1----o-k8-kz7/U",
"operator": "Exists"
}
]
@@ -1528,78 +1550,78 @@
]
}
},
- "schedulerName": "487",
+ "schedulerName": "501",
"tolerations": [
{
- "key": "488",
- "operator": "珢\\%傢z¦Ā竚ĐȌƨǴ",
- "value": "489",
- "effect": "Ƀ咇8夎純Ǐnn坾",
- "tolerationSeconds": 7246782235209217945
+ "key": "502",
+ "operator": "KȴǃmŁȒ|",
+ "value": "503",
+ "effect": "ǟm{煰œ憼鮫ʌ槧ą°Z拕獘:pȚ\\",
+ "tolerationSeconds": 7009928011811725883
}
],
"hostAliases": [
{
- "ip": "490",
+ "ip": "504",
"hostnames": [
- "491"
+ "505"
]
}
],
- "priorityClassName": "492",
- "priority": 516555648,
+ "priorityClassName": "506",
+ "priority": 165747350,
"dnsConfig": {
"nameservers": [
- "493"
+ "507"
],
"searches": [
- "494"
+ "508"
],
"options": [
{
- "name": "495",
- "value": "496"
+ "name": "509",
+ "value": "510"
}
]
},
"readinessGates": [
{
- "conditionType": "ɺ"
+ "conditionType": "竒决瘛ǪǵƢǦ澵貛香\"砻"
}
],
- "runtimeClassName": "497",
- "enableServiceLinks": true,
- "preemptionPolicy": "牯雫íȣƎǗ啕倽|銜Ʌ0斃搡Cʼn嘡",
+ "runtimeClassName": "511",
+ "enableServiceLinks": false,
+ "preemptionPolicy": "RȽXv*!ɝ茀ǨĪ弊ʥ",
"overhead": {
- "Ɇȏ+\u0026ɃB沅零șPî壣V礆á¤": "650"
+ "ȡWU=ȑ-A敲ʉ2腠梊蝴.Ĉ马": "503"
},
"topologySpreadConstraints": [
{
- "maxSkew": -1190434752,
- "topologyKey": "498",
- "whenUnsatisfiable": "ŭ飼蒱鄆",
+ "maxSkew": -1265830604,
+ "topologyKey": "512",
+ "whenUnsatisfiable": "Ŭ捕|ðÊʉiUȡɭĮ庺%#",
"labelSelector": {
"matchLabels": {
- "i86t27w417-7-lyzeqr/G.i-F_.TJ.-V6K_.3_58t": "lSKp.Iw2__V3T68.W7De.._g"
+ "0711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/0-1q-I_i72Tx3___-..f5-6x-_-o6": "I-._g_.._-hKc.OB_F_--.._m_-9"
},
"matchExpressions": [
{
- "key": "m2-8-i--------uzh9-6o0972-3-4.d50v-k47/z._3.x.8iSq-r_5--..dc3doP_.l-3",
- "operator": "Exists"
+ "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
+ "operator": "DoesNotExist"
}
]
}
}
],
- "setHostnameAsFQDN": true,
+ "setHostnameAsFQDN": false,
"os": {
- "name": "Ʌmƣ乇ǡ\u003cʍʃ'ơa6ʔF{ȃ"
+ "name": "}梳攔wŲ魦Ɔ0ƢĮÀĘ"
}
}
},
- "ttlSecondsAfterFinished": -908823020,
- "completionMode": "`",
- "suspend": true
+ "ttlSecondsAfterFinished": -1887055171,
+ "completionMode": "3ñƍU烈 źfjǰɪ嘞ȏ}杻扞",
+ "suspend": false
}
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb
index 0e55ecb96d6..b29249df967 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb and b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml
index c78e03fd725..3df15d04e9d 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.JobTemplate.yaml
@@ -64,7 +64,7 @@ template:
spec:
activeDeadlineSeconds: -9086179100394185427
backoffLimit: -1796008812
- completionMode: '`'
+ completionMode: 3ñƍU烈 źfjǰɪ嘞ȏ}杻扞
completions: -1771909905
manualSelector: false
parallelism: -443114323
@@ -76,7 +76,7 @@ template:
- Ou1.m_.5AW-_S-.3g.7_2fNc5-_.-RX8
matchLabels:
g5i9/l-Y._.-444: c2_kS91.e5K-_e63_-_3-n-_-__3u-.__P__.7U-Uo_4_-D7r__.am64
- suspend: true
+ suspend: false
template:
metadata:
annotations:
@@ -109,498 +109,505 @@ template:
selfLink: "47"
uid: Ȗ脵鴈Ō
spec:
- activeDeadlineSeconds: -5896459953103714718
+ activeDeadlineSeconds: -2958928304063527963
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "427"
- operator: 普闎Ť萃Q+駟à稨氙
+ - key: "441"
+ operator: ' ɲ±'
values:
- - "428"
+ - "442"
matchFields:
- - key: "429"
- operator: 血x柱栦阫Ƈʥ椹ý飝ȕ笧L
+ - key: "443"
+ operator: ƙ2詃ǣ普闎Ť萃Q+駟à稨氙'[>ĵ
values:
- - "430"
- weight: -1699090088
+ - "444"
+ weight: 460581668
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "423"
- operator: ' u怞荊ù灹8緔Tj§E蓋Cȗä'
+ - key: "437"
+ operator: 塨Ý
values:
- - "424"
+ - "438"
matchFields:
- - key: "425"
- operator: 愉BʟƮƙ
+ - key: "439"
+ operator: §E蓋C
values:
- - "426"
+ - "440"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: d-m._fN._k8__._ep21
+ - key: 6n-f-x--i-b/8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.4
operator: In
values:
- - 5_--u.._.105-4_ed-0-i_zZsYo
+ - n-W23-_.z_.._s--_F-BR-.W
matchLabels:
- 0k5-7-a0w-ke5p-33lt-9--2-k-27-4r4-d-9a42-2y20--s-7l6e--s-9/5-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_N_h_4Hl-X0_2--__4K.a: A_-_l67Q.-_t--O.3L.z2-y.-...CC
+ ZXC0_-7.-hj-O_8-b6E_--B: p8O_._e_3_.4_W_H
namespaceSelector:
matchExpressions:
- - key: t1n13sx82-cx-4q/0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._bk81S3.T
- operator: NotIn
- values:
- - 2-__3uM77U7._pT-___-_5-6h_K7
+ - key: Oep2P.B._A_090ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q2
+ operator: DoesNotExist
matchLabels:
- 8d5ez1----b69x98--7g0e6-x5-7-a6434---7i-f-d019v.g9f82k8-2-d--n--r8661--3-8-tc/TB-d--Q5._D60: F.-0-...WE.-_tdE
+ 4-2-k-27-4r4-d-9a42-2y20--9/AlR__8-7_-YD-Q9u: gX__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.7
namespaces:
- - "451"
- topologyKey: "452"
- weight: 450920824
+ - "465"
+ topologyKey: "466"
+ weight: 730155844
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: e-_o_2.--4Z7__i1T.miw_7a_...8-_0__5HG2_5XOAX.gUqV22-4-y5
+ - key: 1wl----f31-0-2t3z-w5----7-z-63-z---5r-v-5-e-m7o/u-3-_n0..KpiS.oK-.O--b
operator: DoesNotExist
matchLabels:
- 0l4-vo5bypq.5---f31-0-2t3z-w5h/Z9p_6.C.-e16-O_.Q-U-_s-mtA.W5_-5_.V1-rU.___06.eqk5E_-4-.XH-.k7: "2"
+ Tt_u_.__I_-_-3-3--5X1rh-K5L: zOBW.9oE9_6.--v17r__.b
namespaceSelector:
matchExpressions:
- - key: p-a7-2--o--u0038mp9c10-k-r---3g7nz4-------385h-6.6qr-7----rgvf3q-z-5z80n--t5--9-4-d2-22--i--401/2-n_5023Xl-3Pw_-r75--_-A-o-_y
- operator: In
- values:
- - Z-nE...-__--.4
+ - key: w_-r75--_-A-o-__y__._12..wrbW_E..24-O._.v._9-czf
+ operator: DoesNotExist
matchLabels:
- Y.39g_.--_-_ve5.m_U: mXZ-3
+ 3-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G2: CpS__.39g_.--_-_ve5.m_2_--XZx
namespaces:
- - "437"
- topologyKey: "438"
+ - "451"
+ topologyKey: "452"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 3m-8vuo17qre-33-5-u8f0f1qv--i72-x3---v255/GT._.Y4-0.67hP-lX-_-..5-.._r6M__4P
+ - key: 1.--5B-.SuN.-v-SBR_P8.7-7q
operator: In
values:
- - 6x-_-o_6O_If-5_-_._F-09z024
+ - E35H__.B_6_-U..u8gb
matchLabels:
- N-._M5..-N_H_55..--E3_2D-1DW_o: k._kzB7U_.Q.45cy-.._-__-Zvt.L6
+ q_U-.60--o._8H__ln_9--Avi.gZdnUV6: 81_---l_3_-_G-D....js--a---..6bD_M--c.0Q-2
namespaceSelector:
matchExpressions:
- - key: ctyxc-1-x9-i9wegl8ppv90-u---2-w-bn54kh-9/77q___n.__16ee.-.66c
+ - key: 03-2-h1----o-k8-kz7/U
operator: Exists
matchLabels:
- 23---49tw-2j.7-e10-f-o-fr-5-3t--y9---5/G0.87B_1BKi-5y-9-kE-4.._c_____gNM-.T-..--44-Bb1.R_.225.5D1.-a: ql__KSvV-8-L__C_60-__.19_-gYY._..fP-h
+ 8GA--__A7r.8U.V_p61-d_O-Ynu.7.._B-ks7dx: S-O62o.8._.---UK_-.j21---__y.9O.L-.m.3--.4_-8U.2617.W7b
namespaces:
- - "479"
- topologyKey: "480"
- weight: -2090647419
+ - "493"
+ topologyKey: "494"
+ weight: -1638320945
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: nJ_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-_.m7-Q____vSW_4-__h
- operator: In
- values:
- - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
+ - key: "8"
+ operator: DoesNotExist
matchLabels:
- q: zfdw.3-._CJ4a1._-_CH-6
+ Qw__YT.1-y: eo7.pJ-4-1WV.-__05._LsuH
namespaceSelector:
matchExpressions:
- - key: 8v---a9j23/9
- operator: In
- values:
- - y__y.9O.L-.m.3h
+ - key: 27e74-ddq-a-lcv0n1-i-d-----9---063-qm-j-3wc89k-0-57z406v.yn4-a--o2h0fy-j-5-5-2n32178aoj/TCH--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_Y
+ operator: DoesNotExist
matchLabels:
- o9-ak9-5--y-4-03ls-86-u2i7-6-q-----f-b-3-----7--6-7-wf.c50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qz6-7d84-1f396h82a/n.60--o._H: gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSLq
+ s4dw-buv-f55-2k2-e-443m678-2v89-zk873--1n133.or-0-2--rad877gr62g/dg__..2bidF.-0-...WE.-_tdt_-Z0_TMp: 5_pT-___-_5-6h_Ky7-_0Vw-Nzfd7
namespaces:
- - "465"
- topologyKey: "466"
- automountServiceAccountToken: false
+ - "479"
+ topologyKey: "480"
+ automountServiceAccountToken: true
containers:
- args:
- - "270"
+ - "275"
command:
- - "269"
+ - "274"
env:
- - name: "277"
- value: "278"
+ - name: "282"
+ value: "283"
valueFrom:
configMapKeyRef:
- key: "284"
- name: "283"
+ key: "289"
+ name: "288"
optional: false
fieldRef:
- apiVersion: "279"
- fieldPath: "280"
+ apiVersion: "284"
+ fieldPath: "285"
resourceFieldRef:
- containerName: "281"
- divisor: "178"
- resource: "282"
+ containerName: "286"
+ divisor: "9"
+ resource: "287"
secretKeyRef:
- key: "286"
- name: "285"
+ key: "291"
+ name: "290"
optional: false
envFrom:
- configMapRef:
- name: "275"
+ name: "280"
optional: true
- prefix: "274"
+ prefix: "279"
secretRef:
- name: "276"
- optional: false
- image: "268"
- imagePullPolicy: xƂ9阠
+ name: "281"
+ optional: true
+ image: "273"
+ imagePullPolicy: 鄧蜢暳ǽż
lifecycle:
postStart:
exec:
command:
- - "312"
+ - "321"
httpGet:
- host: "314"
+ host: "324"
httpHeaders:
- - name: "315"
- value: "316"
- path: "313"
- port: -1347045470
- scheme: ¨Ix糂腂ǂǚŜEuEy
+ - name: "325"
+ value: "326"
+ path: "322"
+ port: "323"
+ scheme: ǚŜEuEy竬ʆɞ
tcpSocket:
- host: "317"
- port: -1945921250
+ host: "328"
+ port: "327"
preStop:
exec:
command:
- - "318"
+ - "329"
httpGet:
- host: "320"
+ host: "332"
httpHeaders:
- - name: "321"
- value: "322"
- path: "319"
- port: 1605974497
- scheme: m坊柩劄奼[ƕƑĝ
+ - name: "333"
+ value: "334"
+ path: "330"
+ port: "331"
+ scheme: 坊柩劄
tcpSocket:
- host: "323"
- port: 293042649
+ host: "335"
+ port: -1345219897
livenessProbe:
exec:
command:
- - "293"
- failureThreshold: -571541491
+ - "298"
+ failureThreshold: -1918622971
+ gRPC:
+ port: -1758095966
+ service: "305"
httpGet:
- host: "295"
+ host: "301"
httpHeaders:
- - name: "296"
- value: "297"
- path: "294"
- port: -869776221
- scheme: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- initialDelaySeconds: 1532103808
- periodSeconds: 1453852685
- successThreshold: 2037135322
+ - name: "302"
+ value: "303"
+ path: "299"
+ port: "300"
+ scheme: uE增猍ǵ xǨŴ
+ initialDelaySeconds: 1627026804
+ periodSeconds: -1058923098
+ successThreshold: -1656699070
tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -7117039988160665426
- timeoutSeconds: 593357971
- name: "267"
+ host: "304"
+ port: 2112112129
+ terminationGracePeriodSeconds: 4430285638700927057
+ timeoutSeconds: -1508967300
+ name: "272"
ports:
- - containerPort: 1473407401
- hostIP: "273"
- hostPort: -1449289597
- name: "272"
- protocol: ʐşƧ
+ - containerPort: -305362540
+ hostIP: "278"
+ hostPort: -1365158918
+ name: "277"
+ protocol: Ǩ繫ʎǑyZ涬P蜷ɔ幩
readinessProbe:
- exec:
- command:
- - "300"
- failureThreshold: -751455207
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: -1920304485
- initialDelaySeconds: 2073630689
- periodSeconds: -1395144116
- successThreshold: -684167223
- tcpSocket:
- host: "305"
- port: -531787516
- terminationGracePeriodSeconds: -3839813958613977681
- timeoutSeconds: -830875556
- resources:
- limits:
- 饾| 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣM: "270"
- requests:
- (fǂǢ曣ŋayå: "182"
- securityContext:
- allowPrivilegeEscalation: false
- capabilities:
- add:
- - wy¶熀ďJZ漤ŗ坟Ůą S
+ - 攻xƂ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů<
drop:
- - d'呪
+ - 鯶縆
privileged: false
- procMount: ""
- readOnlyRootFilesystem: false
- runAsGroup: -8583816881639870831
+ procMount: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ readOnlyRootFilesystem: true
+ runAsGroup: -928325006716912269
runAsNonRoot: false
- runAsUser: -4328915352766545090
+ runAsUser: 3276444400509442476
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "340"
+ role: "338"
+ type: "339"
+ user: "337"
seccompProfile:
- localhostProfile: "403"
- type: ǻG喾@潷ƹ8ï驿
+ localhostProfile: "344"
+ type: Čȷǻ.wȏâ磠Ƴ崖S«V
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
- hostProcess: false
- runAsUserName: "402"
+ gmsaCredentialSpec: "342"
+ gmsaCredentialSpecName: "341"
+ hostProcess: true
+ runAsUserName: "343"
startupProbe:
exec:
command:
- - "373"
- failureThreshold: -1349160121
+ - "314"
+ failureThreshold: -2068583194
+ gRPC:
+ port: 240657401
+ service: "320"
httpGet:
- host: "375"
+ host: "316"
httpHeaders:
- - name: "376"
- value: "377"
- path: "374"
- port: -1452767599
- scheme: ' 瞍髃#ɣȕ'
- initialDelaySeconds: -1014296961
- periodSeconds: -603097910
- successThreshold: 1776174141
+ - name: "317"
+ value: "318"
+ path: "315"
+ port: -1050824692
+ scheme: Ñ蠂Ü[ƛ^輅
+ initialDelaySeconds: 1817639756
+ periodSeconds: 1518001294
+ successThreshold: 1467189105
tcpSocket:
- host: "379"
- port: "378"
- terminationGracePeriodSeconds: -3183357344394757806
- timeoutSeconds: 1708011112
+ host: "319"
+ port: -1192140557
+ terminationGracePeriodSeconds: -124867620858254891
+ timeoutSeconds: 374862544
stdin: true
- stdinOnce: true
- targetContainerName: "404"
- terminationMessagePath: "395"
- terminationMessagePolicy: W#ļǹʅŚO虀^
+ terminationMessagePath: "336"
+ terminationMessagePolicy: Ƒĝ®EĨǔvÄÚ×p鬷m
tty: true
volumeDevices:
- - devicePath: "358"
- name: "357"
+ - devicePath: "297"
+ name: "296"
volumeMounts:
- - mountPath: "354"
- mountPropagation: 羶剹ƊF豎穜姰l咑耖
- name: "353"
+ - mountPath: "293"
+ mountPropagation: Bn(fǂǢ曣ŋayåe躒訙Ǫ
+ name: "292"
readOnly: true
- subPath: "355"
- subPathExpr: "356"
- workingDir: "337"
+ subPath: "294"
+ subPathExpr: "295"
+ workingDir: "276"
+ dnsConfig:
+ nameservers:
+ - "507"
+ options:
+ - name: "509"
+ value: "510"
+ searches:
+ - "508"
+ dnsPolicy: ¶ȲƪE1º轪d
+ enableServiceLinks: false
+ ephemeralContainers:
+ - args:
+ - "348"
+ command:
+ - "347"
+ env:
+ - name: "355"
+ value: "356"
+ valueFrom:
+ configMapKeyRef:
+ key: "362"
+ name: "361"
+ optional: false
+ fieldRef:
+ apiVersion: "357"
+ fieldPath: "358"
+ resourceFieldRef:
+ containerName: "359"
+ divisor: "363"
+ resource: "360"
+ secretKeyRef:
+ key: "364"
+ name: "363"
+ optional: true
+ envFrom:
+ - configMapRef:
+ name: "353"
+ optional: true
+ prefix: "352"
+ secretRef:
+ name: "354"
+ optional: false
+ image: "346"
+ imagePullPolicy: ļǹʅŚO虀
+ lifecycle:
+ postStart:
+ exec:
+ command:
+ - "396"
+ httpGet:
+ host: "398"
+ httpHeaders:
+ - name: "399"
+ value: "400"
+ path: "397"
+ port: 134832144
+ scheme: Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍
+ tcpSocket:
+ host: "401"
+ port: -1289510276
+ preStop:
+ exec:
+ command:
+ - "402"
+ httpGet:
+ host: "404"
+ httpHeaders:
+ - name: "405"
+ value: "406"
+ path: "403"
+ port: -281926929
+ scheme: 葰賦
+ tcpSocket:
+ host: "408"
+ port: "407"
+ livenessProbe:
+ exec:
+ command:
+ - "371"
+ failureThreshold: -176877925
+ gRPC:
+ port: 151468789
+ service: "379"
+ httpGet:
+ host: "374"
+ httpHeaders:
+ - name: "375"
+ value: "376"
+ path: "372"
+ port: "373"
+ initialDelaySeconds: 1389988151
+ periodSeconds: 1928526133
+ successThreshold: 92593647
+ tcpSocket:
+ host: "378"
+ port: "377"
+ terminationGracePeriodSeconds: 4331154303122903365
+ timeoutSeconds: -1309338556
+ name: "345"
+ ports:
+ - containerPort: -122203422
+ hostIP: "351"
+ hostPort: 1733132724
+ name: "350"
+ protocol: 斢杧ż鯀1'鸔
+ readinessProbe:
+ exec:
+ command:
+ - "380"
+ failureThreshold: 718799934
+ gRPC:
+ port: -1001034710
+ service: "387"
+ httpGet:
+ host: "383"
+ httpHeaders:
+ - name: "384"
+ value: "385"
+ path: "381"
+ port: "382"
+ initialDelaySeconds: 467693083
+ periodSeconds: -201921620
+ successThreshold: 829672703
+ tcpSocket:
+ host: "386"
+ port: 1903147240
+ terminationGracePeriodSeconds: -5728960352366086876
+ timeoutSeconds: 1262500808
+ resources:
+ limits:
+ 繡旹翃ɾ氒ĺʈʫ羶剹Ɗ: "151"
+ requests:
+ t{Eɾ敹Ȯ-湷D: "398"
+ securityContext:
+ allowPrivilegeEscalation: false
+ capabilities:
+ add:
+ - 遻堣灭ƴ
+ drop:
+ - 燻
+ privileged: true
+ procMount: 鑸鶲Ãqb轫ʓ滨ĖRh}颉hȱɷȰW
+ readOnlyRootFilesystem: true
+ runAsGroup: 2793654627656241086
+ runAsNonRoot: false
+ runAsUser: 8980441885915239627
+ seLinuxOptions:
+ level: "413"
+ role: "411"
+ type: "412"
+ user: "410"
+ seccompProfile:
+ localhostProfile: "417"
+ type: oɢ嫎
+ windowsOptions:
+ gmsaCredentialSpec: "415"
+ gmsaCredentialSpecName: "414"
+ hostProcess: true
+ runAsUserName: "416"
+ startupProbe:
+ exec:
+ command:
+ - "388"
+ failureThreshold: 22814565
+ gRPC:
+ port: 212308536
+ service: "395"
+ httpGet:
+ host: "391"
+ httpHeaders:
+ - name: "392"
+ value: "393"
+ path: "389"
+ port: "390"
+ initialDelaySeconds: 1096508251
+ periodSeconds: -995439906
+ successThreshold: -629974246
+ tcpSocket:
+ host: "394"
+ port: -1857865963
+ terminationGracePeriodSeconds: -385633037408963769
+ timeoutSeconds: 1527977545
+ stdin: true
+ stdinOnce: true
+ targetContainerName: "418"
+ terminationMessagePath: "409"
+ terminationMessagePolicy: ƴ4虵p
+ volumeDevices:
+ - devicePath: "370"
+ name: "369"
+ volumeMounts:
+ - mountPath: "366"
+ mountPropagation: 醏g遧Ȋ飂廤Ƌʙ
+ name: "365"
+ subPath: "367"
+ subPathExpr: "368"
+ workingDir: "349"
hostAliases:
- hostnames:
- - "491"
- ip: "490"
+ - "505"
+ ip: "504"
hostNetwork: true
hostPID: true
- hostname: "421"
+ hostname: "435"
imagePullSecrets:
- - name: "420"
+ - name: "434"
initContainers:
- args:
- "202"
@@ -634,24 +641,9 @@ template:
name: "208"
optional: false
image: "200"
- imagePullPolicy: ÔÂɘɢ鬍熖B芭花ª瘡蟦JBʟ鍏
+ imagePullPolicy: 酊龨δ摖ȱğ_<
lifecycle:
postStart:
- exec:
- command:
- - "244"
- httpGet:
- host: "246"
- httpHeaders:
- - name: "247"
- value: "248"
- path: "245"
- port: 1746399757
- scheme: V訆Ǝżŧ
- tcpSocket:
- host: "249"
- port: 204229950
- preStop:
exec:
command:
- "250"
@@ -662,15 +654,32 @@ template:
value: "255"
path: "251"
port: "252"
- scheme: ɣľ)酊龨δ摖ȱğ_<ǬëJ橈
tcpSocket:
- host: "257"
- port: "256"
+ host: "256"
+ port: 1909548849
+ preStop:
+ exec:
+ command:
+ - "257"
+ httpGet:
+ host: "259"
+ httpHeaders:
+ - name: "260"
+ value: "261"
+ path: "258"
+ port: -341287812
+ scheme: ' 鰔澝qV訆ƎżŧL²'
+ tcpSocket:
+ host: "262"
+ port: 1328165061
livenessProbe:
exec:
command:
- "225"
- failureThreshold: -1784617397
+ failureThreshold: 1714588921
+ gRPC:
+ port: 133009177
+ service: "231"
httpGet:
host: "227"
httpHeaders:
@@ -679,14 +688,14 @@ template:
path: "226"
port: -1225815437
scheme: 荭gw忊|E
- initialDelaySeconds: 1004325340
- periodSeconds: 14304392
- successThreshold: 465972736
+ initialDelaySeconds: -1438286448
+ periodSeconds: -1462219068
+ successThreshold: -370386363
tcpSocket:
host: "230"
port: -438588982
- terminationGracePeriodSeconds: 8340498462419356921
- timeoutSeconds: -1313320434
+ terminationGracePeriodSeconds: -5353126188990290855
+ timeoutSeconds: 834105836
name: "199"
ports:
- containerPort: 1791615594
@@ -697,77 +706,85 @@ template:
readinessProbe:
exec:
command:
- - "231"
- failureThreshold: 704287801
+ - "232"
+ failureThreshold: 1313273370
+ gRPC:
+ port: 1990641192
+ service: "240"
httpGet:
- host: "233"
+ host: "235"
httpHeaders:
- - name: "234"
- value: "235"
- path: "232"
- port: 627670321
- initialDelaySeconds: -1666819085
- periodSeconds: 1777326813
- successThreshold: -1471289102
+ - name: "236"
+ value: "237"
+ path: "233"
+ port: "234"
+ scheme: 跩aŕ翑
+ initialDelaySeconds: -2121788927
+ periodSeconds: 233282513
+ successThreshold: -518330919
tcpSocket:
- host: "237"
- port: "236"
- terminationGracePeriodSeconds: 8549738818875784336
- timeoutSeconds: -282193676
+ host: "239"
+ port: "238"
+ terminationGracePeriodSeconds: -5569844914519516591
+ timeoutSeconds: 1017803158
resources:
limits:
"": "268"
requests:
-Ɂ圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀ơ: "340"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - ²静ƲǦŐnj汰8
+ - J橈'琕鶫:顇ə娯
drop:
- - İ
- privileged: true
- procMount: ±p鋄5弢ȹ均i绝5哇芆
- readOnlyRootFilesystem: true
- runAsGroup: 5903342706635131481
+ - 囌{屿oiɥ嵐sC
+ privileged: false
+ procMount: ih亏yƕ丆録²
+ readOnlyRootFilesystem: false
+ runAsGroup: 5404658974498114041
runAsNonRoot: false
- runAsUser: -1311522118950739815
+ runAsUser: -5175286970144973961
seLinuxOptions:
- level: "262"
- role: "260"
- type: "261"
- user: "259"
+ level: "267"
+ role: "265"
+ type: "266"
+ user: "264"
seccompProfile:
- localhostProfile: "266"
- type: ì
+ localhostProfile: "271"
+ type: )/灩聋3趐囨鏻
windowsOptions:
- gmsaCredentialSpec: "264"
- gmsaCredentialSpecName: "263"
- hostProcess: true
- runAsUserName: "265"
+ gmsaCredentialSpec: "269"
+ gmsaCredentialSpecName: "268"
+ hostProcess: false
+ runAsUserName: "270"
startupProbe:
exec:
command:
- - "238"
- failureThreshold: -367153801
+ - "241"
+ failureThreshold: 1877574041
+ gRPC:
+ port: -1813746408
+ service: "249"
httpGet:
- host: "240"
+ host: "244"
httpHeaders:
- - name: "241"
- value: "242"
- path: "239"
- port: -518330919
- scheme: NKƙ順\E¦队偯J僳徥淳4揻-$
- initialDelaySeconds: 348370746
- periodSeconds: 1909548849
- successThreshold: 1492642476
+ - name: "245"
+ value: "246"
+ path: "242"
+ port: "243"
+ scheme: E¦
+ initialDelaySeconds: -853533760
+ periodSeconds: -760292259
+ successThreshold: -1164530482
tcpSocket:
- host: "243"
- port: 1235694147
- terminationGracePeriodSeconds: 8194791334069427324
- timeoutSeconds: 468369166
- terminationMessagePath: "258"
- terminationMessagePolicy: 鶫:顇ə娯Ȱ囌{屿oiɥ嵐sC
+ host: "248"
+ port: "247"
+ terminationGracePeriodSeconds: 6143034813730176704
+ timeoutSeconds: -560717833
+ terminationMessagePath: "263"
+ terminationMessagePolicy: ¸gĩ
+ tty: true
volumeDevices:
- devicePath: "224"
name: "223"
@@ -778,67 +795,67 @@ template:
subPath: "221"
subPathExpr: "222"
workingDir: "203"
- nodeName: "409"
+ nodeName: "423"
nodeSelector:
- "405": "406"
+ "419": "420"
os:
- name: Ʌmƣ乇ǡ<ʍʃ'ơa6ʔF{ȃ
+ name: '}梳攔wŲ魦Ɔ0ƢĮÀĘ'
overhead:
- Ɇȏ+&ɃB沅零șPî壣V礆á¤: "650"
- preemptionPolicy: 牯雫íȣƎǗ啕倽|銜Ʌ0斃搡Cʼn嘡
- priority: 516555648
- priorityClassName: "492"
+ ȡWU=ȑ-A敲ʉ2腠梊蝴.Ĉ马: "503"
+ preemptionPolicy: RȽXv*!ɝ茀ǨĪ弊ʥ
+ priority: 165747350
+ priorityClassName: "506"
readinessGates:
- - conditionType: ɺ
- restartPolicy: rƈa餖Ľ
- runtimeClassName: "497"
- schedulerName: "487"
+ - conditionType: 竒决瘛ǪǵƢǦ澵貛香"砻
+ restartPolicy: 篎3o8[y#t(ȗŜŲ&洪y儕l
+ runtimeClassName: "511"
+ schedulerName: "501"
securityContext:
- fsGroup: 6541871045343732877
- fsGroupChangePolicy: d%蹶/ʗp壥
- runAsGroup: -6754946370765710682
+ fsGroup: -2841141127223294729
+ fsGroupChangePolicy: '|gɳ礬.b屏ɧeʫį淓¯Ą0'
+ runAsGroup: -2713809069228546579
runAsNonRoot: false
- runAsUser: -2841141127223294729
+ runAsUser: -6558079743661172944
seLinuxOptions:
- level: "413"
- role: "411"
- type: "412"
- user: "410"
+ level: "427"
+ role: "425"
+ type: "426"
+ user: "424"
seccompProfile:
- localhostProfile: "419"
- type: 揤郡ɑ鮽ǍJB膾扉
+ localhostProfile: "433"
+ type: 忀z委>,趐V曡88 u怞
supplementalGroups:
- - -1612979559790338418
+ - -5071790362153704411
sysctls:
- - name: "417"
- value: "418"
+ - name: "431"
+ value: "432"
windowsOptions:
- gmsaCredentialSpec: "415"
- gmsaCredentialSpecName: "414"
+ gmsaCredentialSpec: "429"
+ gmsaCredentialSpecName: "428"
hostProcess: false
- runAsUserName: "416"
- serviceAccount: "408"
- serviceAccountName: "407"
- setHostnameAsFQDN: true
+ runAsUserName: "430"
+ serviceAccount: "422"
+ serviceAccountName: "421"
+ setHostnameAsFQDN: false
shareProcessNamespace: false
- subdomain: "422"
- terminationGracePeriodSeconds: -3501425899000054955
+ subdomain: "436"
+ terminationGracePeriodSeconds: 4233308148542782456
tolerations:
- - effect: Ƀ咇8夎純Ǐnn坾
- key: "488"
- operator: 珢\%傢z¦Ā竚ĐȌƨǴ
- tolerationSeconds: 7246782235209217945
- value: "489"
+ - effect: ǟm{煰œ憼鮫ʌ槧ą°Z拕獘:pȚ\
+ key: "502"
+ operator: KȴǃmŁȒ|
+ tolerationSeconds: 7009928011811725883
+ value: "503"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: m2-8-i--------uzh9-6o0972-3-4.d50v-k47/z._3.x.8iSq-r_5--..dc3doP_.l-3
- operator: Exists
+ - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
+ operator: DoesNotExist
matchLabels:
- i86t27w417-7-lyzeqr/G.i-F_.TJ.-V6K_.3_58t: lSKp.Iw2__V3T68.W7De.._g
- maxSkew: -1190434752
- topologyKey: "498"
- whenUnsatisfiable: ŭ飼蒱鄆
+ 0711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/0-1q-I_i72Tx3___-..f5-6x-_-o6: I-._g_.._-hKc.OB_F_--.._m_-9
+ maxSkew: -1265830604
+ topologyKey: "512"
+ whenUnsatisfiable: Ŭ捕|ðÊʉiUȡɭĮ庺%#
volumes:
- awsElasticBlockStore:
fsType: "67"
@@ -1097,4 +1114,4 @@ template:
storagePolicyID: "124"
storagePolicyName: "123"
volumePath: "121"
- ttlSecondsAfterFinished: -908823020
+ ttlSecondsAfterFinished: -1887055171
diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json
index 8febf175d74..e0c5bf497b3 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json
@@ -502,352 +502,355 @@
"port": "188",
"host": "189"
},
- "initialDelaySeconds": -687313111,
- "timeoutSeconds": -131161294,
- "periodSeconds": 1730325900,
- "successThreshold": -828368050,
- "failureThreshold": 952979935,
- "terminationGracePeriodSeconds": 3485267088372060587
+ "gRPC": {
+ "port": 1843670786,
+ "service": "190"
+ },
+ "initialDelaySeconds": -2041475873,
+ "timeoutSeconds": 2020789772,
+ "periodSeconds": 435655893,
+ "successThreshold": -683915391,
+ "failureThreshold": 2110181803,
+ "terminationGracePeriodSeconds": -8508077999296389100
},
"readinessProbe": {
"exec": {
"command": [
- "190"
+ "191"
]
},
"httpGet": {
- "path": "191",
- "port": -1893103047,
- "host": "192",
- "scheme": "įXŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ",
+ "path": "192",
+ "port": "193",
+ "host": "194",
+ "scheme": "ź贩j瀉",
"httpHeaders": [
{
- "name": "193",
- "value": "194"
+ "name": "195",
+ "value": "196"
}
]
},
"tcpSocket": {
- "port": "195",
- "host": "196"
+ "port": 580681683,
+ "host": "197"
},
- "initialDelaySeconds": 1836896522,
- "timeoutSeconds": -2101285839,
- "periodSeconds": 2064656704,
- "successThreshold": -1940723300,
- "failureThreshold": 749147575,
- "terminationGracePeriodSeconds": 2131277878630553496
+ "gRPC": {
+ "port": -1996616480,
+ "service": "198"
+ },
+ "initialDelaySeconds": 981940178,
+ "timeoutSeconds": -1841227335,
+ "periodSeconds": 312792977,
+ "successThreshold": 1597969994,
+ "failureThreshold": -288563359,
+ "terminationGracePeriodSeconds": 8180448406065045988
},
"startupProbe": {
"exec": {
"command": [
- "197"
+ "199"
]
},
"httpGet": {
- "path": "198",
- "port": "199",
- "host": "200",
+ "path": "200",
+ "port": "201",
+ "host": "202",
+ "scheme": "厶耈 T衧ȇe媹Hǝ呮}臷",
"httpHeaders": [
{
- "name": "201",
- "value": "202"
+ "name": "203",
+ "value": "204"
}
]
},
"tcpSocket": {
- "port": 675406340,
- "host": "203"
+ "port": "205",
+ "host": "206"
},
- "initialDelaySeconds": 994527057,
- "timeoutSeconds": -1482763519,
- "periodSeconds": -1346458591,
- "successThreshold": 1234551517,
- "failureThreshold": -1618937335,
- "terminationGracePeriodSeconds": -8171267464271993058
+ "gRPC": {
+ "port": 1154560741,
+ "service": "207"
+ },
+ "initialDelaySeconds": -1376537100,
+ "timeoutSeconds": 1100645882,
+ "periodSeconds": -532628939,
+ "successThreshold": -748919010,
+ "failureThreshold": -1126738259,
+ "terminationGracePeriodSeconds": -8638776927777706944
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "204"
+ "208"
]
},
"httpGet": {
- "path": "205",
- "port": -1296140,
- "host": "206",
- "scheme": "Y籎顒ǥŴ",
+ "path": "209",
+ "port": -199511133,
+ "host": "210",
+ "scheme": "ʪīT捘ɍi縱ù墴1Rƥ贫d飼$俊跾",
"httpHeaders": [
{
- "name": "207",
- "value": "208"
+ "name": "211",
+ "value": "212"
}
]
},
"tcpSocket": {
- "port": 1061537,
- "host": "209"
+ "port": 173916181,
+ "host": "213"
}
},
"preStop": {
"exec": {
"command": [
- "210"
+ "214"
]
},
"httpGet": {
- "path": "211",
- "port": "212",
- "host": "213",
- "scheme": "墴1Rƥ贫d",
+ "path": "215",
+ "port": "216",
+ "host": "217",
+ "scheme": "ūPH炮掊°nʮ閼咎櫸eʔ",
"httpHeaders": [
{
- "name": "214",
- "value": "215"
+ "name": "218",
+ "value": "219"
}
]
},
"tcpSocket": {
- "port": -33154680,
- "host": "216"
+ "port": "220",
+ "host": "221"
}
}
},
- "terminationMessagePath": "217",
- "terminationMessagePolicy": "跾|@?鷅bȻN+ņ榱*",
+ "terminationMessagePath": "222",
+ "terminationMessagePolicy": "究:hoĂɋ瀐\u003cɉ湨",
+ "imagePullPolicy": "ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö",
"securityContext": {
"capabilities": {
"add": [
- "閼咎櫸eʔŊ"
+ "5w垁鷌辪虽U珝Żwʮ馜üNșƶ"
],
"drop": [
- "究:hoĂɋ瀐\u003cɉ湨"
+ "ĩĉş蝿ɖȃ賲鐅臬"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "218",
- "role": "219",
- "type": "220",
- "level": "221"
+ "user": "223",
+ "role": "224",
+ "type": "225",
+ "level": "226"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "222",
- "gmsaCredentialSpec": "223",
- "runAsUserName": "224",
+ "gmsaCredentialSpecName": "227",
+ "gmsaCredentialSpec": "228",
+ "runAsUserName": "229",
"hostProcess": true
},
- "runAsUser": 5069703513298030462,
- "runAsGroup": -879001843196053690,
- "runAsNonRoot": true,
+ "runAsUser": -2242514391033939790,
+ "runAsGroup": 2404245025847758433,
+ "runAsNonRoot": false,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": "Ǯń",
+ "procMount": "ʭd鲡:贅wE@Ȗs«öʮĀ\u003cé瞾ʀN",
"seccompProfile": {
- "type": "ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳",
- "localhostProfile": "225"
+ "type": "ɨǙÄr蛏豈ɃH",
+ "localhostProfile": "230"
}
},
- "stdin": true,
- "tty": true
+ "stdin": true
}
],
"containers": [
{
- "name": "226",
- "image": "227",
+ "name": "231",
+ "image": "232",
"command": [
- "228"
+ "233"
],
"args": [
- "229"
+ "234"
],
- "workingDir": "230",
+ "workingDir": "235",
"ports": [
{
- "name": "231",
- "hostPort": 483512911,
- "containerPort": -1941847253,
- "protocol": "=6}ɡ",
- "hostIP": "232"
+ "name": "236",
+ "hostPort": -1765469779,
+ "containerPort": 1525829664,
+ "protocol": "Áȉ彂Ŵ廷s{Ⱦdz@ùƸ",
+ "hostIP": "237"
}
],
"envFrom": [
{
- "prefix": "233",
+ "prefix": "238",
"configMapRef": {
- "name": "234",
- "optional": true
+ "name": "239",
+ "optional": false
},
"secretRef": {
- "name": "235",
+ "name": "240",
"optional": true
}
}
],
"env": [
{
- "name": "236",
- "value": "237",
+ "name": "241",
+ "value": "242",
"valueFrom": {
"fieldRef": {
- "apiVersion": "238",
- "fieldPath": "239"
+ "apiVersion": "243",
+ "fieldPath": "244"
},
"resourceFieldRef": {
- "containerName": "240",
- "resource": "241",
- "divisor": "421"
+ "containerName": "245",
+ "resource": "246",
+ "divisor": "970"
},
"configMapKeyRef": {
- "name": "242",
- "key": "243",
- "optional": false
+ "name": "247",
+ "key": "248",
+ "optional": true
},
"secretKeyRef": {
- "name": "244",
- "key": "245",
- "optional": false
+ "name": "249",
+ "key": "250",
+ "optional": true
}
}
}
],
"resources": {
"limits": {
- "_瀹鞎sn芞QÄȻȊ+?": "193"
+ "jƯĖ漘Z剚敍0)": "908"
},
"requests": {
- "@Ȗs«öʮĀ\u003cé瞾": "51"
+ "ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ": "976"
}
},
"volumeMounts": [
{
- "name": "246",
- "mountPath": "247",
- "subPath": "248",
- "mountPropagation": "£軶ǃ*ʙ嫙\u0026蒒5靇C'ɵK.Q貇",
- "subPathExpr": "249"
+ "name": "251",
+ "readOnly": true,
+ "mountPath": "252",
+ "subPath": "253",
+ "mountPropagation": "烀罁胾^拜Ȍzɟ踡肒A",
+ "subPathExpr": "254"
}
],
"volumeDevices": [
{
- "name": "250",
- "devicePath": "251"
+ "name": "255",
+ "devicePath": "256"
}
],
"livenessProbe": {
"exec": {
"command": [
- "252"
+ "257"
]
},
"httpGet": {
- "path": "253",
- "port": "254",
- "host": "255",
- "scheme": "{Ⱦdz@",
+ "path": "258",
+ "port": 622473257,
+ "host": "259",
+ "scheme": "weLJèux榜VƋ",
"httpHeaders": [
{
- "name": "256",
- "value": "257"
+ "name": "260",
+ "value": "261"
}
]
},
"tcpSocket": {
- "port": 406308963,
- "host": "258"
+ "port": -1810997540,
+ "host": "262"
},
- "initialDelaySeconds": 632397602,
- "timeoutSeconds": 2026784878,
- "periodSeconds": -730174220,
- "successThreshold": 433084615,
- "failureThreshold": 208045354,
- "terminationGracePeriodSeconds": -1159835821828680707
+ "gRPC": {
+ "port": 1832870128,
+ "service": "263"
+ },
+ "initialDelaySeconds": 191755979,
+ "timeoutSeconds": -2000048581,
+ "periodSeconds": 88483549,
+ "successThreshold": 364078113,
+ "failureThreshold": -181693648,
+ "terminationGracePeriodSeconds": 3556977032714681114
},
"readinessProbe": {
"exec": {
"command": [
- "259"
+ "264"
]
},
"httpGet": {
- "path": "260",
- "port": 576428641,
- "host": "261",
- "scheme": "ƯĖ漘Z剚敍0)鈼¬麄p呝T",
+ "path": "265",
+ "port": -26910286,
+ "host": "266",
+ "scheme": "ƻ悖ȩ0Ƹ[",
"httpHeaders": [
{
- "name": "262",
- "value": "263"
+ "name": "267",
+ "value": "268"
}
]
},
"tcpSocket": {
- "port": -1891134534,
- "host": "264"
+ "port": "269",
+ "host": "270"
},
- "initialDelaySeconds": -1710454086,
- "timeoutSeconds": 192146389,
- "periodSeconds": 1285027515,
- "successThreshold": 111876618,
- "failureThreshold": -820458255,
- "terminationGracePeriodSeconds": -4763823273964408583
+ "gRPC": {
+ "port": 1584001904,
+ "service": "271"
+ },
+ "initialDelaySeconds": -839281354,
+ "timeoutSeconds": 2035347577,
+ "periodSeconds": -819723498,
+ "successThreshold": -150133456,
+ "failureThreshold": 1507815593,
+ "terminationGracePeriodSeconds": 6437439882210784813
},
"startupProbe": {
"exec": {
"command": [
- "265"
+ "272"
]
},
"httpGet": {
- "path": "266",
- "port": -122979840,
- "host": "267",
- "scheme": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩",
+ "path": "273",
+ "port": 1599076900,
+ "host": "274",
+ "scheme": "ɰ",
"httpHeaders": [
{
- "name": "268",
- "value": "269"
+ "name": "275",
+ "value": "276"
}
]
},
"tcpSocket": {
- "port": "270",
- "host": "271"
+ "port": -1675041613,
+ "host": "277"
},
- "initialDelaySeconds": 2045456786,
- "timeoutSeconds": 988932710,
- "periodSeconds": -1537700150,
- "successThreshold": -1815868713,
- "failureThreshold": 105707873,
- "terminationGracePeriodSeconds": -810905585400838367
+ "gRPC": {
+ "port": 1919527626,
+ "service": "278"
+ },
+ "initialDelaySeconds": -389501466,
+ "timeoutSeconds": -161753937,
+ "periodSeconds": -1578746609,
+ "successThreshold": 1428207963,
+ "failureThreshold": 790462391,
+ "terminationGracePeriodSeconds": -3530853032778992089
},
"lifecycle": {
"postStart": {
- "exec": {
- "command": [
- "272"
- ]
- },
- "httpGet": {
- "path": "273",
- "port": 1422435836,
- "host": "274",
- "scheme": ",ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ",
- "httpHeaders": [
- {
- "name": "275",
- "value": "276"
- }
- ]
- },
- "tcpSocket": {
- "port": "277",
- "host": "278"
- }
- },
- "preStop": {
"exec": {
"command": [
"279"
@@ -857,7 +860,7 @@
"path": "280",
"port": "281",
"host": "282",
- "scheme": "Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄",
+ "scheme": "3.v-鿧悮坮Ȣ",
"httpHeaders": [
{
"name": "283",
@@ -869,103 +872,125 @@
"port": "285",
"host": "286"
}
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "287"
+ ]
+ },
+ "httpGet": {
+ "path": "288",
+ "port": "289",
+ "host": "290",
+ "scheme": "丯Ƙ枛牐ɺ皚|",
+ "httpHeaders": [
+ {
+ "name": "291",
+ "value": "292"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "293",
+ "host": "294"
+ }
}
},
- "terminationMessagePath": "287",
- "terminationMessagePolicy": "ʤî萨zvt莭",
- "imagePullPolicy": "悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\\p",
+ "terminationMessagePath": "295",
+ "terminationMessagePolicy": "N粕擓ƖHVe熼",
+ "imagePullPolicy": "Ź倗S晒嶗UÐ_ƮA攤/ɸɎ ",
"securityContext": {
"capabilities": {
"add": [
- "sĨɆâĺɗŹ倗S晒嶗U"
+ "耶FfBls3!Zɾģ毋Ó6dz"
],
"drop": [
- "_ƮA攤/ɸɎ R§耶FfBl"
+ "嘚庎D}"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "288",
- "role": "289",
- "type": "290",
- "level": "291"
+ "user": "296",
+ "role": "297",
+ "type": "298",
+ "level": "299"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "292",
- "gmsaCredentialSpec": "293",
- "runAsUserName": "294",
- "hostProcess": true
+ "gmsaCredentialSpecName": "300",
+ "gmsaCredentialSpec": "301",
+ "runAsUserName": "302",
+ "hostProcess": false
},
- "runAsUser": 3850139838566476547,
- "runAsGroup": -7106791338981314910,
+ "runAsUser": -11671145270681448,
+ "runAsGroup": -8648209499645539653,
"runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": "娝嘚庎D}埽uʎȺ眖R#yV'",
+ "procMount": "WKw(",
"seccompProfile": {
- "type": "Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ",
- "localhostProfile": "295"
+ "type": "儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ",
+ "localhostProfile": "303"
}
},
- "stdin": true,
- "tty": true
+ "stdin": true
}
],
"ephemeralContainers": [
{
- "name": "296",
- "image": "297",
+ "name": "304",
+ "image": "305",
"command": [
- "298"
+ "306"
],
"args": [
- "299"
+ "307"
],
- "workingDir": "300",
+ "workingDir": "308",
"ports": [
{
- "name": "301",
- "hostPort": -1643733106,
- "containerPort": -805795167,
- "protocol": "8Ƥ熪军g\u003e郵[+",
- "hostIP": "302"
+ "name": "309",
+ "hostPort": 785984384,
+ "containerPort": 193463975,
+ "protocol": "军g\u003e郵[+扴ȨŮ+朷Ǝ膯lj",
+ "hostIP": "310"
}
],
"envFrom": [
{
- "prefix": "303",
+ "prefix": "311",
"configMapRef": {
- "name": "304",
- "optional": true
+ "name": "312",
+ "optional": false
},
"secretRef": {
- "name": "305",
+ "name": "313",
"optional": false
}
}
],
"env": [
{
- "name": "306",
- "value": "307",
+ "name": "314",
+ "value": "315",
"valueFrom": {
"fieldRef": {
- "apiVersion": "308",
- "fieldPath": "309"
+ "apiVersion": "316",
+ "fieldPath": "317"
},
"resourceFieldRef": {
- "containerName": "310",
- "resource": "311",
- "divisor": "730"
+ "containerName": "318",
+ "resource": "319",
+ "divisor": "334"
},
"configMapKeyRef": {
- "name": "312",
- "key": "313",
- "optional": true
+ "name": "320",
+ "key": "321",
+ "optional": false
},
"secretKeyRef": {
- "name": "314",
- "key": "315",
+ "name": "322",
+ "key": "323",
"optional": false
}
}
@@ -973,253 +998,266 @@
],
"resources": {
"limits": {
- "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq": "431"
+ "碧闳ȩr": "648"
},
"requests": {
- "ē鐭#嬀ơŸ8T 苧yñKJɐ": "894"
+ "ʩȂ4ē鐭#": "954"
}
},
"volumeMounts": [
{
- "name": "316",
- "mountPath": "317",
- "subPath": "318",
- "mountPropagation": "û咡W\u003c敄lu|榝$î.Ȏ蝪ʜ5",
- "subPathExpr": "319"
+ "name": "324",
+ "mountPath": "325",
+ "subPath": "326",
+ "mountPropagation": "",
+ "subPathExpr": "327"
}
],
"volumeDevices": [
{
- "name": "320",
- "devicePath": "321"
+ "name": "328",
+ "devicePath": "329"
}
],
"livenessProbe": {
"exec": {
"command": [
- "322"
+ "330"
]
},
"httpGet": {
- "path": "323",
- "port": 14304392,
- "host": "324",
- "scheme": "寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥贸碔",
+ "path": "331",
+ "port": -199753536,
+ "host": "332",
+ "scheme": "y",
"httpHeaders": [
{
- "name": "325",
- "value": "326"
+ "name": "333",
+ "value": "334"
}
]
},
"tcpSocket": {
- "port": "327",
- "host": "328"
+ "port": -1620315711,
+ "host": "335"
},
- "initialDelaySeconds": -1296830577,
- "timeoutSeconds": -1314967760,
- "periodSeconds": 1174240097,
- "successThreshold": -1928016742,
- "failureThreshold": -787458357,
- "terminationGracePeriodSeconds": 342609112008782456
+ "gRPC": {
+ "port": 582041100,
+ "service": "336"
+ },
+ "initialDelaySeconds": 509188266,
+ "timeoutSeconds": -940514142,
+ "periodSeconds": 1574967021,
+ "successThreshold": -244758593,
+ "failureThreshold": 591440053,
+ "terminationGracePeriodSeconds": 446975960103225489
},
"readinessProbe": {
"exec": {
"command": [
- "329"
+ "337"
]
},
"httpGet": {
- "path": "330",
- "port": -528664199,
- "host": "331",
- "scheme": "徥淳4揻-$ɽ丟",
+ "path": "338",
+ "port": "339",
+ "host": "340",
+ "scheme": "|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w",
"httpHeaders": [
{
- "name": "332",
- "value": "333"
+ "name": "341",
+ "value": "342"
}
]
},
"tcpSocket": {
- "port": "334",
- "host": "335"
+ "port": 432291364,
+ "host": "343"
},
- "initialDelaySeconds": 468369166,
- "timeoutSeconds": 1909548849,
- "periodSeconds": 1492642476,
- "successThreshold": -367153801,
- "failureThreshold": 1907998540,
- "terminationGracePeriodSeconds": 8959437085840841638
+ "gRPC": {
+ "port": -125932767,
+ "service": "344"
+ },
+ "initialDelaySeconds": -18758819,
+ "timeoutSeconds": -1666819085,
+ "periodSeconds": -282193676,
+ "successThreshold": 1777326813,
+ "failureThreshold": -1471289102,
+ "terminationGracePeriodSeconds": 3024893073780181445
},
"startupProbe": {
"exec": {
"command": [
- "336"
+ "345"
]
},
"httpGet": {
- "path": "337",
- "port": "338",
- "host": "339",
- "scheme": "M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ",
+ "path": "346",
+ "port": "347",
+ "host": "348",
+ "scheme": "碔",
"httpHeaders": [
{
- "name": "340",
- "value": "341"
+ "name": "349",
+ "value": "350"
}
]
},
"tcpSocket": {
- "port": 458427807,
- "host": "342"
+ "port": "351",
+ "host": "352"
},
- "initialDelaySeconds": -1971421078,
- "timeoutSeconds": 1905181464,
- "periodSeconds": -1730959016,
- "successThreshold": 1272940694,
- "failureThreshold": -385597677,
- "terminationGracePeriodSeconds": 1813049096022212391
+ "gRPC": {
+ "port": -2146674095,
+ "service": "353"
+ },
+ "initialDelaySeconds": -260262954,
+ "timeoutSeconds": 1980459939,
+ "periodSeconds": 1625542084,
+ "successThreshold": -1554093462,
+ "failureThreshold": 303592056,
+ "terminationGracePeriodSeconds": -5636823324804561910
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "343"
+ "354"
]
},
"httpGet": {
- "path": "344",
- "port": 50696420,
- "host": "345",
- "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ",
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "淳4揻-$ɽ丟×x锏ɟ",
"httpHeaders": [
{
- "name": "346",
- "value": "347"
+ "name": "358",
+ "value": "359"
}
]
},
"tcpSocket": {
- "port": 802134138,
- "host": "348"
+ "port": 1907998540,
+ "host": "360"
}
},
"preStop": {
"exec": {
"command": [
- "349"
+ "361"
]
},
"httpGet": {
- "path": "350",
- "port": -126958936,
- "host": "351",
- "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻",
+ "path": "362",
+ "port": "363",
+ "host": "364",
+ "scheme": "澝qV訆Ǝżŧ",
"httpHeaders": [
{
- "name": "352",
- "value": "353"
+ "name": "365",
+ "value": "366"
}
]
},
"tcpSocket": {
- "port": "354",
- "host": "355"
+ "port": 204229950,
+ "host": "367"
}
}
},
- "terminationMessagePath": "356",
- "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS",
- "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮",
+ "terminationMessagePath": "368",
+ "terminationMessagePolicy": "NƗ¸gĩ",
+ "imagePullPolicy": "酊龨δ摖ȱğ_\u003c",
"securityContext": {
"capabilities": {
"add": [
- "嘢4ʗN,丽饾| 鞤ɱďW賁"
+ "J橈'琕鶫:顇ə娯"
],
"drop": [
- "ɭɪǹ0衷,"
+ "囌{屿oiɥ嵐sC"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "357",
- "role": "358",
- "type": "359",
- "level": "360"
+ "user": "369",
+ "role": "370",
+ "type": "371",
+ "level": "372"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "361",
- "gmsaCredentialSpec": "362",
- "runAsUserName": "363",
- "hostProcess": true
+ "gmsaCredentialSpecName": "373",
+ "gmsaCredentialSpec": "374",
+ "runAsUserName": "375",
+ "hostProcess": false
},
- "runAsUser": -1119183212148951030,
- "runAsGroup": -7146044409185304665,
+ "runAsUser": -5175286970144973961,
+ "runAsGroup": 5404658974498114041,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
- "allowPrivilegeEscalation": true,
- "procMount": "w妕眵笭/9崍h趭(娕",
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": false,
+ "procMount": "ih亏yƕ丆録²",
"seccompProfile": {
- "type": "E增猍",
- "localhostProfile": "364"
+ "type": ")/灩聋3趐囨鏻",
+ "localhostProfile": "376"
}
},
- "targetContainerName": "365"
+ "tty": true,
+ "targetContainerName": "377"
}
],
- "restartPolicy": "xǨŴ壶ƵfȽÃ",
- "terminationGracePeriodSeconds": -6480965203152502098,
- "activeDeadlineSeconds": -1027633754006304958,
- "dnsPolicy": "Ȁĵ鴁",
+ "restartPolicy": "爥",
+ "terminationGracePeriodSeconds": -6937733263836228614,
+ "activeDeadlineSeconds": -1311522118950739815,
+ "dnsPolicy": "x$1",
"nodeSelector": {
- "366": "367"
+ "378": "379"
},
- "serviceAccountName": "368",
- "serviceAccount": "369",
- "automountServiceAccountToken": false,
- "nodeName": "370",
- "hostPID": true,
+ "serviceAccountName": "380",
+ "serviceAccount": "381",
+ "automountServiceAccountToken": true,
+ "nodeName": "382",
+ "hostIPC": true,
"shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "371",
- "role": "372",
- "type": "373",
- "level": "374"
+ "user": "383",
+ "role": "384",
+ "type": "385",
+ "level": "386"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "375",
- "gmsaCredentialSpec": "376",
- "runAsUserName": "377",
- "hostProcess": false
+ "gmsaCredentialSpecName": "387",
+ "gmsaCredentialSpec": "388",
+ "runAsUserName": "389",
+ "hostProcess": true
},
- "runAsUser": 8749429589533479764,
- "runAsGroup": -2587337448078233130,
- "runAsNonRoot": false,
+ "runAsUser": -3293876530290657822,
+ "runAsGroup": 2064297229886854304,
+ "runAsNonRoot": true,
"supplementalGroups": [
- 8748656795747647539
+ -2305748055620880754
],
- "fsGroup": 1362411221198469787,
+ "fsGroup": 8403394374485358747,
"sysctls": [
{
- "name": "378",
- "value": "379"
+ "name": "390",
+ "value": "391"
}
],
- "fsGroupChangePolicy": "輔3璾ėȜv1b繐汚磉反-n覦",
+ "fsGroupChangePolicy": "ì",
"seccompProfile": {
- "type": "閈誹ʅ蕉ɼ",
- "localhostProfile": "380"
+ "type": "",
+ "localhostProfile": "392"
}
},
"imagePullSecrets": [
{
- "name": "381"
+ "name": "393"
}
],
- "hostname": "382",
- "subdomain": "383",
+ "hostname": "394",
+ "subdomain": "395",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1227,19 +1265,19 @@
{
"matchExpressions": [
{
- "key": "384",
- "operator": "Ƽ¨Ix糂腂ǂ",
+ "key": "396",
+ "operator": "OŭW灬pȭCV擭",
"values": [
- "385"
+ "397"
]
}
],
"matchFields": [
{
- "key": "386",
- "operator": "zĮ蛋I滞廬耐鷞焬CQ",
+ "key": "398",
+ "operator": "ʗN",
"values": [
- "387"
+ "399"
]
}
]
@@ -1248,23 +1286,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1624098740,
+ "weight": -1847964580,
"preference": {
"matchExpressions": [
{
- "key": "388",
- "operator": "劄奼[ƕƑĝ®E",
+ "key": "400",
+ "operator": "| 鞤ɱďW賁Ěɭɪǹ0衷,",
"values": [
- "389"
+ "401"
]
}
],
"matchFields": [
{
- "key": "390",
- "operator": "Ɠ宆!鍲ɋȑoG鄧",
+ "key": "402",
+ "operator": "ʉBn(fǂǢ曣ŋa",
"values": [
- "391"
+ "403"
]
}
]
@@ -1277,29 +1315,32 @@
{
"labelSelector": {
"matchLabels": {
- "K_A-_9_Z_C..7o_x3..-.8-Jp-94": "Tm.__G-8...__.Q_c8.G.b_9_18"
+ "0n": "8hx_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k5"
},
"matchExpressions": [
{
- "key": "1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q",
- "operator": "DoesNotExist"
+ "key": "9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D",
+ "operator": "NotIn",
+ "values": [
+ "G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X"
+ ]
}
]
},
"namespaces": [
- "398"
+ "410"
],
- "topologyKey": "399",
+ "topologyKey": "411",
"namespaceSelector": {
"matchLabels": {
- "4sE4": "B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6"
+ "70u-1ml.711k9-8609a-e0--1----v8-4--558n1asz-re/OMop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.9_.-M": "ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--0"
},
"matchExpressions": [
{
- "key": "0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs",
- "operator": "NotIn",
+ "key": "2ga-v205p-26-u5wg-gb8a-6-80-4-6849--w-0-24u9.44rm-0uma6-p--d-17-o--776n15-b-3-b/5",
+ "operator": "In",
"values": [
- "6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7"
+ "c"
]
}
]
@@ -1308,33 +1349,33 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -688929182,
+ "weight": -1097269124,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "y_-3_L_2--_v2.5p_6": "u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q"
+ "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a": "n9"
},
"matchExpressions": [
{
- "key": "3--51",
- "operator": "NotIn",
+ "key": "xv-5-e-m78o-6-6211-7p--3zm-lx300w-tj-35840-4.x5----0g-q-22r4wye5y/8q_s-1__gw_-z_659GE.l_.23--_6l.-5B",
+ "operator": "In",
"values": [
- "C.-e16-O5"
+ "h7.6.-y-s4483Po_L3f1-7_O4.w"
]
}
]
},
"namespaces": [
- "412"
+ "424"
],
- "topologyKey": "413",
+ "topologyKey": "425",
"namespaceSelector": {
"matchLabels": {
- "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM"
+ "n_5023Xl-3Pw_-r75--_-A-o-__y_4": "12..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr"
},
"matchExpressions": [
{
- "key": "8mtxb__-ex-_1_-ODgC_1-_8__3",
+ "key": "0n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--.k47My",
"operator": "DoesNotExist"
}
]
@@ -1348,26 +1389,29 @@
{
"labelSelector": {
"matchLabels": {
- "K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0": "u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K"
+ "E00.0_._.-_L-__bf_9_-C-PfNxG": "U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e"
},
"matchExpressions": [
{
- "key": "sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V",
- "operator": "Exists"
+ "key": "3--_9QW2JkU27_.-4T-I.-..K.2",
+ "operator": "In",
+ "values": [
+ "6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8"
+ ]
}
]
},
"namespaces": [
- "426"
+ "438"
],
- "topologyKey": "427",
+ "topologyKey": "439",
"namespaceSelector": {
"matchLabels": {
- "e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m": "e.Dx._.W-6..4_MU7iLfS0"
+ "7G79.3bU_._nV34GH": "qu.._.105-4_ed-0-iz"
},
"matchExpressions": [
{
- "key": "P6j.u--.K--g__..b",
+ "key": "o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6",
"operator": "DoesNotExist"
}
]
@@ -1376,34 +1420,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -616061040,
+ "weight": -176177167,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u": "j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w"
+ "8_t..-Ww2q.zK-p5": "8Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._28"
},
"matchExpressions": [
{
- "key": "b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X",
+ "key": "x.._-x_4..u2-__3uM77U7._pT-___-_r",
"operator": "Exists"
}
]
},
"namespaces": [
- "440"
+ "452"
],
- "topologyKey": "441",
+ "topologyKey": "453",
"namespaceSelector": {
"matchLabels": {
- "97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a": "ZZ__.-_U-.60--o._8H__lB"
+ "46-48e-9-h4-w-qp25--7-n--kfk3x-j9133es/T-_Lq-.5s": "M-k5.C.e.._d-Y"
},
"matchExpressions": [
{
- "key": "vi.Z",
- "operator": "NotIn",
- "values": [
- "03l-_86_u2-7_._qN__A_f_-B3_U__L.H"
- ]
+ "key": "N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-16",
+ "operator": "DoesNotExist"
}
]
}
@@ -1412,64 +1453,67 @@
]
}
},
- "schedulerName": "448",
+ "schedulerName": "460",
"tolerations": [
{
- "key": "449",
- "operator": "瘂S淫íŶƭ鬯富Nú顏*z犔kU",
- "value": "450",
- "effect": "甬Ʈ岢r臣鐐qwïźU痤ȵ",
- "tolerationSeconds": -4322909565451750640
+ "key": "461",
+ "operator": "5谠vÐ仆dždĄ跞肞=ɴC}怢",
+ "value": "462",
+ "effect": "D?/nēɅĀ埰ʀł!U詨nj1ýǝ",
+ "tolerationSeconds": -7090833765995091747
}
],
"hostAliases": [
{
- "ip": "451",
+ "ip": "463",
"hostnames": [
- "452"
+ "464"
]
}
],
- "priorityClassName": "453",
- "priority": 780753434,
+ "priorityClassName": "465",
+ "priority": -1623129882,
"dnsConfig": {
"nameservers": [
- "454"
+ "466"
],
"searches": [
- "455"
+ "467"
],
"options": [
{
- "name": "456",
- "value": "457"
+ "name": "468",
+ "value": "469"
}
]
},
"readinessGates": [
{
- "conditionType": "¤趜磕绘翁揌p:oŇE"
+ "conditionType": "d楗鱶镖喗vȥ倉螆ȨX"
}
],
- "runtimeClassName": "458",
+ "runtimeClassName": "470",
"enableServiceLinks": false,
- "preemptionPolicy": "ħ\\",
+ "preemptionPolicy": "«ɒó\u003c碡4鏽喡孨ʚé薘-ɞ逭ɋ¡",
"overhead": {
- "kƱ": "313"
+ "": "846"
},
"topologySpreadConstraints": [
{
- "maxSkew": 1674267790,
- "topologyKey": "459",
- "whenUnsatisfiable": "G峣搒R谱ʜ篲\u0026ZǘtnjʣǕV",
+ "maxSkew": 1688294622,
+ "topologyKey": "471",
+ "whenUnsatisfiable": "矵\u00267Ʃɩ",
"labelSelector": {
"matchLabels": {
- "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i": "Wq-...Oai.D7-_9..8-8yw..__Yb_8"
+ "t-nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qc/2-7_._qN__A_f_-B3_U__L.KHK": "35H__.B_6_-U..u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4Po"
},
"matchExpressions": [
{
- "key": "h---dY7_M_-._M5..-N_H_55..--E3_2D1",
- "operator": "DoesNotExist"
+ "key": "ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh",
+ "operator": "In",
+ "values": [
+ "7.W74-R_Z_Tz.a3_HWo4_6"
+ ]
}
]
}
@@ -1477,170 +1521,170 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "値å镮"
+ "name": "/ƻ假Ĵ"
}
},
"status": {
- "phase": "ą¨?ɣ蔫椁",
+ "phase": "诹ɼ#趶毎卸値å镮ó\"壽ȱǒ鉚#",
"conditions": [
{
- "type": "蝬KȴǃmŁȒ|'从LŸɬʥ",
- "status": "鮫ʌ槧ą°Z拕獘:p",
- "lastProbeTime": "2964-11-28T11:39:16Z",
- "lastTransitionTime": "2684-04-17T20:01:15Z",
- "reason": "466",
- "message": "467"
+ "type": "撡'降\\4",
+ "status": "Ȓ|'从LŸɬʥhA輞0ɹmŎO",
+ "lastProbeTime": "2799-10-17T21:43:53Z",
+ "lastTransitionTime": "2007-08-17T02:42:37Z",
+ "reason": "478",
+ "message": "479"
}
],
- "message": "468",
- "reason": "469",
- "nominatedNodeName": "470",
- "hostIP": "471",
- "podIP": "472",
+ "message": "480",
+ "reason": "481",
+ "nominatedNodeName": "482",
+ "hostIP": "483",
+ "podIP": "484",
"podIPs": [
{
- "ip": "473"
+ "ip": "485"
}
],
"initContainerStatuses": [
{
- "name": "474",
+ "name": "486",
"state": {
"waiting": {
- "reason": "475",
- "message": "476"
+ "reason": "487",
+ "message": "488"
},
"running": {
- "startedAt": "2045-05-04T00:27:18Z"
+ "startedAt": "2684-04-17T20:01:15Z"
},
"terminated": {
- "exitCode": 840157370,
- "signal": 165747350,
- "reason": "477",
- "message": "478",
- "startedAt": "2362-01-25T20:42:09Z",
- "finishedAt": "2115-03-23T22:33:35Z",
- "containerID": "479"
+ "exitCode": -933017112,
+ "signal": -182902213,
+ "reason": "489",
+ "message": "490",
+ "startedAt": "2221-08-06T21:21:19Z",
+ "finishedAt": "2760-10-14T11:51:24Z",
+ "containerID": "491"
}
},
"lastState": {
"waiting": {
- "reason": "480",
- "message": "481"
+ "reason": "492",
+ "message": "493"
},
"running": {
- "startedAt": "2405-08-10T09:51:44Z"
+ "startedAt": "2574-10-15T01:48:10Z"
},
"terminated": {
- "exitCode": 1690803571,
- "signal": 1574959758,
- "reason": "482",
- "message": "483",
- "startedAt": "2871-08-02T00:56:38Z",
- "finishedAt": "2056-06-22T17:22:55Z",
- "containerID": "484"
+ "exitCode": -773770291,
+ "signal": 2124926228,
+ "reason": "494",
+ "message": "495",
+ "startedAt": "2902-10-04T13:01:15Z",
+ "finishedAt": "2127-06-24T09:29:52Z",
+ "containerID": "496"
}
},
- "ready": true,
- "restartCount": -560956057,
- "image": "485",
- "imageID": "486",
- "containerID": "487",
- "started": false
+ "ready": false,
+ "restartCount": 1574959758,
+ "image": "497",
+ "imageID": "498",
+ "containerID": "499",
+ "started": true
}
],
"containerStatuses": [
{
- "name": "488",
+ "name": "500",
"state": {
"waiting": {
- "reason": "489",
- "message": "490"
+ "reason": "501",
+ "message": "502"
},
"running": {
- "startedAt": "2514-10-23T19:30:50Z"
+ "startedAt": "2584-05-18T04:27:14Z"
},
"terminated": {
- "exitCode": -1915588568,
- "signal": -748558554,
- "reason": "491",
- "message": "492",
- "startedAt": "2669-01-03T02:05:34Z",
- "finishedAt": "2539-08-23T00:33:24Z",
- "containerID": "493"
+ "exitCode": -362057173,
+ "signal": 1953662668,
+ "reason": "503",
+ "message": "504",
+ "startedAt": "2914-12-02T03:21:31Z",
+ "finishedAt": "2676-03-28T17:20:22Z",
+ "containerID": "505"
}
},
"lastState": {
"waiting": {
- "reason": "494",
- "message": "495"
+ "reason": "506",
+ "message": "507"
},
"running": {
- "startedAt": "2940-02-10T02:45:51Z"
+ "startedAt": "2930-09-29T01:55:03Z"
},
"terminated": {
- "exitCode": 508776344,
- "signal": -419737006,
- "reason": "496",
- "message": "497",
- "startedAt": "2556-04-09T04:29:45Z",
- "finishedAt": "2716-06-10T12:34:06Z",
- "containerID": "498"
+ "exitCode": 1729335119,
+ "signal": 1052076475,
+ "reason": "508",
+ "message": "509",
+ "startedAt": "2845-04-10T17:32:22Z",
+ "finishedAt": "2269-01-04T20:21:46Z",
+ "containerID": "510"
}
},
"ready": false,
- "restartCount": 839330574,
- "image": "499",
- "imageID": "500",
- "containerID": "501",
- "started": true
+ "restartCount": -419737006,
+ "image": "511",
+ "imageID": "512",
+ "containerID": "513",
+ "started": false
}
],
- "qosClass": "!ɝ茀ǨĪ弊ʥ汹ȡWU=ȑ-A敲",
+ "qosClass": "nET¬%Ȏ",
"ephemeralContainerStatuses": [
{
- "name": "502",
+ "name": "514",
"state": {
"waiting": {
- "reason": "503",
- "message": "504"
+ "reason": "515",
+ "message": "516"
},
"running": {
- "startedAt": "2307-01-05T17:43:36Z"
+ "startedAt": "2758-10-26T12:02:16Z"
},
"terminated": {
- "exitCode": 390203674,
- "signal": -372320382,
- "reason": "505",
- "message": "506",
- "startedAt": "2843-07-14T02:23:26Z",
- "finishedAt": "2475-06-22T13:38:30Z",
- "containerID": "507"
+ "exitCode": -746177818,
+ "signal": 878153992,
+ "reason": "517",
+ "message": "518",
+ "startedAt": "2373-04-09T07:28:39Z",
+ "finishedAt": "2206-03-08T16:25:10Z",
+ "containerID": "519"
}
},
"lastState": {
"waiting": {
- "reason": "508",
- "message": "509"
+ "reason": "520",
+ "message": "521"
},
"running": {
- "startedAt": "2873-08-04T14:47:20Z"
+ "startedAt": "2337-02-28T18:34:34Z"
},
"terminated": {
- "exitCode": -1736264167,
- "signal": -61756682,
- "reason": "510",
- "message": "511",
- "startedAt": "2083-06-13T02:40:30Z",
- "finishedAt": "2162-04-09T16:36:03Z",
- "containerID": "512"
+ "exitCode": -1497066738,
+ "signal": -1575088377,
+ "reason": "522",
+ "message": "523",
+ "startedAt": "2245-04-18T03:12:10Z",
+ "finishedAt": "2010-12-07T07:18:59Z",
+ "containerID": "524"
}
},
- "ready": true,
- "restartCount": -598136292,
- "image": "513",
- "imageID": "514",
- "containerID": "515",
+ "ready": false,
+ "restartCount": -985855709,
+ "image": "525",
+ "imageID": "526",
+ "containerID": "527",
"started": true
}
]
diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb
index 799829460bb..163ae32cb00 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml
index d406e8aa124..196afa7b954 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml
@@ -31,163 +31,149 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- activeDeadlineSeconds: -1027633754006304958
+ activeDeadlineSeconds: -1311522118950739815
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "388"
- operator: 劄奼[ƕƑĝ®E
+ - key: "400"
+ operator: '| 鞤ɱďW賁Ěɭɪǹ0衷,'
values:
- - "389"
+ - "401"
matchFields:
- - key: "390"
- operator: Ɠ宆!鍲ɋȑoG鄧
+ - key: "402"
+ operator: ʉBn(fǂǢ曣ŋa
values:
- - "391"
- weight: 1624098740
+ - "403"
+ weight: -1847964580
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "384"
- operator: Ƽ¨Ix糂腂ǂ
+ - key: "396"
+ operator: OŭW灬pȭCV擭
values:
- - "385"
+ - "397"
matchFields:
- - key: "386"
- operator: zĮ蛋I滞廬耐鷞焬CQ
+ - key: "398"
+ operator: ʗN
values:
- - "387"
+ - "399"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 3--51
- operator: NotIn
+ - key: xv-5-e-m78o-6-6211-7p--3zm-lx300w-tj-35840-4.x5----0g-q-22r4wye5y/8q_s-1__gw_-z_659GE.l_.23--_6l.-5B
+ operator: In
values:
- - C.-e16-O5
+ - h7.6.-y-s4483Po_L3f1-7_O4.w
matchLabels:
- y_-3_L_2--_v2.5p_6: u.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3QC1--L--v_Z--Zg-_Q
+ w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a: n9
namespaceSelector:
matchExpressions:
- - key: 8mtxb__-ex-_1_-ODgC_1-_8__3
+ - key: 0n_Ht5W_._._-2M2._I-_P..w-W_-nE...-__--.k47My
operator: DoesNotExist
matchLabels:
- 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM
+ n_5023Xl-3Pw_-r75--_-A-o-__y_4: 12..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
namespaces:
- - "412"
- topologyKey: "413"
- weight: -688929182
+ - "424"
+ topologyKey: "425"
+ weight: -1097269124
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 1-_I-A-_3bz._8M0U1_-__.71-_-9_._X-D---k..1Q7._l..Q
- operator: DoesNotExist
- matchLabels:
- K_A-_9_Z_C..7o_x3..-.8-Jp-94: Tm.__G-8...__.Q_c8.G.b_9_18
- namespaceSelector:
- matchExpressions:
- - key: 0R_.Z__Lv8_.O_..8n.--z_-..6W.VKs
+ - key: 9d4i-m7---k8235--8--c83-4b-9-1o8w-4/4csh-3--Z1Tvw39F_C-rtSY.g._2F7.-_e..Or_-.3OHgt._U.-x_rC9.D
operator: NotIn
values:
- - 6E__-.8_e_l2.._8s--7_3x_-J_.....7..--w0_1V7
+ - G31-_I-A-_3bz._8M0U1_-__.71-_-9_.X
matchLabels:
- 4sE4: B.__65m8_1-1.9_.-.Ms7_t.P_3..H..k9M6
+ 0n: 8hx_-a__0-8-.M-.-.-8v-J1zET_..3dCv3j._.-_pP__up.2L_s-o779._-k5
+ namespaceSelector:
+ matchExpressions:
+ - key: 2ga-v205p-26-u5wg-gb8a-6-80-4-6849--w-0-24u9.44rm-0uma6-p--d-17-o--776n15-b-3-b/5
+ operator: In
+ values:
+ - c
+ matchLabels:
+ 70u-1ml.711k9-8609a-e0--1----v8-4--558n1asz-re/OMop34_-y.8_38xm-.nx.sEK4.B.__65m8_1-1.9_.-M: ZN.-_--r.E__-.8_e_l2.._8s--7_3x_-J_.....7..--0
namespaces:
- - "398"
- topologyKey: "399"
+ - "410"
+ topologyKey: "411"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: b6---9-d-6s83--r-vk58-7e74-ddq-al.8-0m2/48-S9_-4CwMqp..__X
+ - key: x.._-x_4..u2-__3uM77U7._pT-___-_r
operator: Exists
matchLabels:
- L_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4.u: j__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.w
+ 8_t..-Ww2q.zK-p5: 8Z-O.-.jL_v.-_.4dwFbuvEf55Y2k.F-F..3m6.._28
namespaceSelector:
matchExpressions:
- - key: vi.Z
- operator: NotIn
- values:
- - 03l-_86_u2-7_._qN__A_f_-B3_U__L.H
+ - key: N-R__RR9YAZ...W-m_-Z.wc..k_0_5.z.0..__D-16
+ operator: DoesNotExist
matchLabels:
- 97---1-i-67-3o--w/Q__-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...7a: ZZ__.-_U-.60--o._8H__lB
+ 46-48e-9-h4-w-qp25--7-n--kfk3x-j9133es/T-_Lq-.5s: M-k5.C.e.._d-Y
namespaces:
- - "440"
- topologyKey: "441"
- weight: -616061040
+ - "452"
+ topologyKey: "453"
+ weight: -176177167
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: sap--h--q0h-t2n4s-6-k5-e.t8x7-l--b-9-u--17---u7-gl7814ei0/pT75-.emV__1-wv3UDf.-4D-r.-F__r.oh..2_uGGP..-_V
- operator: Exists
+ - key: 3--_9QW2JkU27_.-4T-I.-..K.2
+ operator: In
+ values:
+ - 6___-X__H.-39-A_-_l67Q.-_t--O.3L.z2-y.-.8
matchLabels:
- K-.03.mp.-10KkQ-R_R.-.--4_IT_O__3.5h_X0: u7.-hj-O_8-b6E_--Y_Dp8O_._e_3_.4_W_-_-7Tp_.----cp__ac8u.._K
+ E00.0_._.-_L-__bf_9_-C-PfNxG: U_.Pn-W23-_.z_.._s--_F-BR-.h_-2-.s_6O-5_7_-0w_e
namespaceSelector:
matchExpressions:
- - key: P6j.u--.K--g__..b
+ - key: o79p-f4r1--7p--053--suu--9f82k8-2-d--n--e/Y_o8t5Vl6_..7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.6
operator: DoesNotExist
matchLabels:
- ? e7-7973b--7-n-34-5-yqu20-9105g4-edj0fi-z-s--o8t7.4--p1-2-xa-o65p--edno-52--6-0dkn-9n7p22o4a-w----17/zA_-_l67Q.-_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h-m
- : e.Dx._.W-6..4_MU7iLfS0
+ 7G79.3bU_._nV34GH: qu.._.105-4_ed-0-iz
namespaces:
- - "426"
- topologyKey: "427"
- automountServiceAccountToken: false
+ - "438"
+ topologyKey: "439"
+ automountServiceAccountToken: true
containers:
- args:
- - "229"
+ - "234"
command:
- - "228"
+ - "233"
env:
- - name: "236"
- value: "237"
+ - name: "241"
+ value: "242"
valueFrom:
configMapKeyRef:
- key: "243"
- name: "242"
- optional: false
+ key: "248"
+ name: "247"
+ optional: true
fieldRef:
- apiVersion: "238"
- fieldPath: "239"
+ apiVersion: "243"
+ fieldPath: "244"
resourceFieldRef:
- containerName: "240"
- divisor: "421"
- resource: "241"
+ containerName: "245"
+ divisor: "970"
+ resource: "246"
secretKeyRef:
- key: "245"
- name: "244"
- optional: false
+ key: "250"
+ name: "249"
+ optional: true
envFrom:
- configMapRef:
- name: "234"
- optional: true
- prefix: "233"
+ name: "239"
+ optional: false
+ prefix: "238"
secretRef:
- name: "235"
+ name: "240"
optional: true
- image: "227"
- imagePullPolicy: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p
+ image: "232"
+ imagePullPolicy: 'Ź倗S晒嶗UÐ_ƮA攤/ɸɎ '
lifecycle:
postStart:
- exec:
- command:
- - "272"
- httpGet:
- host: "274"
- httpHeaders:
- - name: "275"
- value: "276"
- path: "273"
- port: 1422435836
- scheme: ',ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ'
- tcpSocket:
- host: "278"
- port: "277"
- preStop:
exec:
command:
- "279"
@@ -198,322 +184,356 @@ spec:
value: "284"
path: "280"
port: "281"
- scheme: Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄
+ scheme: 3.v-鿧悮坮Ȣ
tcpSocket:
host: "286"
port: "285"
+ preStop:
+ exec:
+ command:
+ - "287"
+ httpGet:
+ host: "290"
+ httpHeaders:
+ - name: "291"
+ value: "292"
+ path: "288"
+ port: "289"
+ scheme: 丯Ƙ枛牐ɺ皚|
+ tcpSocket:
+ host: "294"
+ port: "293"
livenessProbe:
exec:
command:
- - "252"
- failureThreshold: 208045354
+ - "257"
+ failureThreshold: -181693648
+ gRPC:
+ port: 1832870128
+ service: "263"
httpGet:
- host: "255"
+ host: "259"
httpHeaders:
- - name: "256"
- value: "257"
- path: "253"
- port: "254"
- scheme: '{Ⱦdz@'
- initialDelaySeconds: 632397602
- periodSeconds: -730174220
- successThreshold: 433084615
+ - name: "260"
+ value: "261"
+ path: "258"
+ port: 622473257
+ scheme: weLJèux榜VƋ
+ initialDelaySeconds: 191755979
+ periodSeconds: 88483549
+ successThreshold: 364078113
tcpSocket:
- host: "258"
- port: 406308963
- terminationGracePeriodSeconds: -1159835821828680707
- timeoutSeconds: 2026784878
- name: "226"
+ host: "262"
+ port: -1810997540
+ terminationGracePeriodSeconds: 3556977032714681114
+ timeoutSeconds: -2000048581
+ name: "231"
ports:
- - containerPort: -1941847253
- hostIP: "232"
- hostPort: 483512911
- name: "231"
- protocol: =6}ɡ
+ - containerPort: 1525829664
+ hostIP: "237"
+ hostPort: -1765469779
+ name: "236"
+ protocol: Áȉ彂Ŵ廷s{Ⱦdz@ùƸ
readinessProbe:
exec:
command:
- - "259"
- failureThreshold: -820458255
+ - "264"
+ failureThreshold: 1507815593
+ gRPC:
+ port: 1584001904
+ service: "271"
httpGet:
- host: "261"
+ host: "266"
httpHeaders:
- - name: "262"
- value: "263"
- path: "260"
- port: 576428641
- scheme: ƯĖ漘Z剚敍0)鈼¬麄p呝T
- initialDelaySeconds: -1710454086
- periodSeconds: 1285027515
- successThreshold: 111876618
+ - name: "267"
+ value: "268"
+ path: "265"
+ port: -26910286
+ scheme: ƻ悖ȩ0Ƹ[
+ initialDelaySeconds: -839281354
+ periodSeconds: -819723498
+ successThreshold: -150133456
tcpSocket:
- host: "264"
- port: -1891134534
- terminationGracePeriodSeconds: -4763823273964408583
- timeoutSeconds: 192146389
+ host: "270"
+ port: "269"
+ terminationGracePeriodSeconds: 6437439882210784813
+ timeoutSeconds: 2035347577
resources:
limits:
- _瀹鞎sn芞QÄȻȊ+?: "193"
+ jƯĖ漘Z剚敍0): "908"
requests:
- '@Ȗs«öʮĀ<é瞾': "51"
+ ʭ嵔棂p儼Ƿ裚瓶釆Ɗ+j忊Ŗ: "976"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - sĨɆâĺɗŹ倗S晒嶗U
+ - 耶FfBls3!Zɾģ毋Ó6dz
drop:
- - _ƮA攤/ɸɎ R§耶FfBl
+ - 嘚庎D}
privileged: true
- procMount: 娝嘚庎D}埽uʎȺ眖R#yV'
- readOnlyRootFilesystem: false
- runAsGroup: -7106791338981314910
+ procMount: WKw(
+ readOnlyRootFilesystem: true
+ runAsGroup: -8648209499645539653
runAsNonRoot: true
- runAsUser: 3850139838566476547
+ runAsUser: -11671145270681448
seLinuxOptions:
- level: "291"
- role: "289"
- type: "290"
- user: "288"
+ level: "299"
+ role: "297"
+ type: "298"
+ user: "296"
seccompProfile:
- localhostProfile: "295"
- type: Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ
+ localhostProfile: "303"
+ type: 儴Ůĺ}潷ʒ胵輓Ɔȓ蹣ɐ
windowsOptions:
- gmsaCredentialSpec: "293"
- gmsaCredentialSpecName: "292"
- hostProcess: true
- runAsUserName: "294"
+ gmsaCredentialSpec: "301"
+ gmsaCredentialSpecName: "300"
+ hostProcess: false
+ runAsUserName: "302"
startupProbe:
exec:
command:
- - "265"
- failureThreshold: 105707873
+ - "272"
+ failureThreshold: 790462391
+ gRPC:
+ port: 1919527626
+ service: "278"
httpGet:
- host: "267"
+ host: "274"
httpHeaders:
- - name: "268"
- value: "269"
- path: "266"
- port: -122979840
- scheme: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
- initialDelaySeconds: 2045456786
- periodSeconds: -1537700150
- successThreshold: -1815868713
+ - name: "275"
+ value: "276"
+ path: "273"
+ port: 1599076900
+ scheme: ɰ
+ initialDelaySeconds: -389501466
+ periodSeconds: -1578746609
+ successThreshold: 1428207963
tcpSocket:
- host: "271"
- port: "270"
- terminationGracePeriodSeconds: -810905585400838367
- timeoutSeconds: 988932710
+ host: "277"
+ port: -1675041613
+ terminationGracePeriodSeconds: -3530853032778992089
+ timeoutSeconds: -161753937
stdin: true
- terminationMessagePath: "287"
- terminationMessagePolicy: ʤî萨zvt莭
- tty: true
+ terminationMessagePath: "295"
+ terminationMessagePolicy: N粕擓ƖHVe熼
volumeDevices:
- - devicePath: "251"
- name: "250"
+ - devicePath: "256"
+ name: "255"
volumeMounts:
- - mountPath: "247"
- mountPropagation: £軶ǃ*ʙ嫙&蒒5靇C'ɵK.Q貇
- name: "246"
- subPath: "248"
- subPathExpr: "249"
- workingDir: "230"
+ - mountPath: "252"
+ mountPropagation: 烀罁胾^拜Ȍzɟ踡肒A
+ name: "251"
+ readOnly: true
+ subPath: "253"
+ subPathExpr: "254"
+ workingDir: "235"
dnsConfig:
nameservers:
- - "454"
+ - "466"
options:
- - name: "456"
- value: "457"
+ - name: "468"
+ value: "469"
searches:
- - "455"
- dnsPolicy: Ȁĵ鴁
+ - "467"
+ dnsPolicy: x$1
enableServiceLinks: false
ephemeralContainers:
- args:
- - "299"
+ - "307"
command:
- - "298"
+ - "306"
env:
- - name: "306"
- value: "307"
+ - name: "314"
+ value: "315"
valueFrom:
configMapKeyRef:
- key: "313"
- name: "312"
- optional: true
+ key: "321"
+ name: "320"
+ optional: false
fieldRef:
- apiVersion: "308"
- fieldPath: "309"
+ apiVersion: "316"
+ fieldPath: "317"
resourceFieldRef:
- containerName: "310"
- divisor: "730"
- resource: "311"
+ containerName: "318"
+ divisor: "334"
+ resource: "319"
secretKeyRef:
- key: "315"
- name: "314"
+ key: "323"
+ name: "322"
optional: false
envFrom:
- configMapRef:
- name: "304"
- optional: true
- prefix: "303"
- secretRef:
- name: "305"
+ name: "312"
optional: false
- image: "297"
- imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮
+ prefix: "311"
+ secretRef:
+ name: "313"
+ optional: false
+ image: "305"
+ imagePullPolicy: 酊龨δ摖ȱğ_<
lifecycle:
postStart:
exec:
command:
- - "343"
+ - "354"
httpGet:
- host: "345"
+ host: "357"
httpHeaders:
- - name: "346"
- value: "347"
- path: "344"
- port: 50696420
- scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 淳4揻-$ɽ丟×x锏ɟ
tcpSocket:
- host: "348"
- port: 802134138
+ host: "360"
+ port: 1907998540
preStop:
exec:
command:
- - "349"
+ - "361"
httpGet:
- host: "351"
+ host: "364"
httpHeaders:
- - name: "352"
- value: "353"
- path: "350"
- port: -126958936
- scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻
+ - name: "365"
+ value: "366"
+ path: "362"
+ port: "363"
+ scheme: 澝qV訆Ǝżŧ
tcpSocket:
- host: "355"
- port: "354"
+ host: "367"
+ port: 204229950
livenessProbe:
exec:
command:
- - "322"
- failureThreshold: -787458357
+ - "330"
+ failureThreshold: 591440053
+ gRPC:
+ port: 582041100
+ service: "336"
httpGet:
- host: "324"
+ host: "332"
httpHeaders:
- - name: "325"
- value: "326"
- path: "323"
- port: 14304392
- scheme: 寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥贸碔
- initialDelaySeconds: -1296830577
- periodSeconds: 1174240097
- successThreshold: -1928016742
+ - name: "333"
+ value: "334"
+ path: "331"
+ port: -199753536
+ scheme: "y"
+ initialDelaySeconds: 509188266
+ periodSeconds: 1574967021
+ successThreshold: -244758593
tcpSocket:
- host: "328"
- port: "327"
- terminationGracePeriodSeconds: 342609112008782456
- timeoutSeconds: -1314967760
- name: "296"
+ host: "335"
+ port: -1620315711
+ terminationGracePeriodSeconds: 446975960103225489
+ timeoutSeconds: -940514142
+ name: "304"
ports:
- - containerPort: -805795167
- hostIP: "302"
- hostPort: -1643733106
- name: "301"
- protocol: 8Ƥ熪军g>郵[+
+ - containerPort: 193463975
+ hostIP: "310"
+ hostPort: 785984384
+ name: "309"
+ protocol: 军g>郵[+扴ȨŮ+朷Ǝ膯lj
readinessProbe:
exec:
command:
- - "329"
- failureThreshold: 1907998540
+ - "337"
+ failureThreshold: -1471289102
+ gRPC:
+ port: -125932767
+ service: "344"
httpGet:
- host: "331"
+ host: "340"
httpHeaders:
- - name: "332"
- value: "333"
- path: "330"
- port: -528664199
- scheme: 徥淳4揻-$ɽ丟
- initialDelaySeconds: 468369166
- periodSeconds: 1492642476
- successThreshold: -367153801
+ - name: "341"
+ value: "342"
+ path: "338"
+ port: "339"
+ scheme: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w'
+ initialDelaySeconds: -18758819
+ periodSeconds: -282193676
+ successThreshold: 1777326813
tcpSocket:
- host: "335"
- port: "334"
- terminationGracePeriodSeconds: 8959437085840841638
- timeoutSeconds: 1909548849
+ host: "343"
+ port: 432291364
+ terminationGracePeriodSeconds: 3024893073780181445
+ timeoutSeconds: -1666819085
resources:
limits:
- 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq: "431"
+ 碧闳ȩr: "648"
requests:
- ē鐭#嬀ơŸ8T 苧yñKJɐ: "894"
+ ʩȂ4ē鐭#: "954"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - 嘢4ʗN,丽饾| 鞤ɱďW賁
+ - J橈'琕鶫:顇ə娯
drop:
- - ɭɪǹ0衷,
- privileged: true
- procMount: w妕眵笭/9崍h趭(娕
- readOnlyRootFilesystem: true
- runAsGroup: -7146044409185304665
+ - 囌{屿oiɥ嵐sC
+ privileged: false
+ procMount: ih亏yƕ丆録²
+ readOnlyRootFilesystem: false
+ runAsGroup: 5404658974498114041
runAsNonRoot: false
- runAsUser: -1119183212148951030
+ runAsUser: -5175286970144973961
seLinuxOptions:
- level: "360"
- role: "358"
- type: "359"
- user: "357"
+ level: "372"
+ role: "370"
+ type: "371"
+ user: "369"
seccompProfile:
- localhostProfile: "364"
- type: E增猍
+ localhostProfile: "376"
+ type: )/灩聋3趐囨鏻
windowsOptions:
- gmsaCredentialSpec: "362"
- gmsaCredentialSpecName: "361"
- hostProcess: true
- runAsUserName: "363"
+ gmsaCredentialSpec: "374"
+ gmsaCredentialSpecName: "373"
+ hostProcess: false
+ runAsUserName: "375"
startupProbe:
exec:
command:
- - "336"
- failureThreshold: -385597677
+ - "345"
+ failureThreshold: 303592056
+ gRPC:
+ port: -2146674095
+ service: "353"
httpGet:
- host: "339"
+ host: "348"
httpHeaders:
- - name: "340"
- value: "341"
- path: "337"
- port: "338"
- scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
- initialDelaySeconds: -1971421078
- periodSeconds: -1730959016
- successThreshold: 1272940694
+ - name: "349"
+ value: "350"
+ path: "346"
+ port: "347"
+ scheme: 碔
+ initialDelaySeconds: -260262954
+ periodSeconds: 1625542084
+ successThreshold: -1554093462
tcpSocket:
- host: "342"
- port: 458427807
- terminationGracePeriodSeconds: 1813049096022212391
- timeoutSeconds: 1905181464
- targetContainerName: "365"
- terminationMessagePath: "356"
- terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS
+ host: "352"
+ port: "351"
+ terminationGracePeriodSeconds: -5636823324804561910
+ timeoutSeconds: 1980459939
+ targetContainerName: "377"
+ terminationMessagePath: "368"
+ terminationMessagePolicy: NƗ¸gĩ
+ tty: true
volumeDevices:
- - devicePath: "321"
- name: "320"
+ - devicePath: "329"
+ name: "328"
volumeMounts:
- - mountPath: "317"
- mountPropagation: û咡W<敄lu|榝$î.Ȏ蝪ʜ5
- name: "316"
- subPath: "318"
- subPathExpr: "319"
- workingDir: "300"
+ - mountPath: "325"
+ mountPropagation: ""
+ name: "324"
+ subPath: "326"
+ subPathExpr: "327"
+ workingDir: "308"
hostAliases:
- hostnames:
- - "452"
- ip: "451"
- hostPID: true
- hostname: "382"
+ - "464"
+ ip: "463"
+ hostIPC: true
+ hostname: "394"
imagePullSecrets:
- - name: "381"
+ - name: "393"
initContainers:
- args:
- "160"
@@ -547,42 +567,46 @@ spec:
name: "166"
optional: true
image: "158"
+ imagePullPolicy: ɉ鎷卩蝾H韹寬娬ï瓼猀2:ö
lifecycle:
postStart:
exec:
command:
- - "204"
+ - "208"
httpGet:
- host: "206"
+ host: "210"
httpHeaders:
- - name: "207"
- value: "208"
- path: "205"
- port: -1296140
- scheme: Y籎顒ǥŴ
+ - name: "211"
+ value: "212"
+ path: "209"
+ port: -199511133
+ scheme: ʪīT捘ɍi縱ù墴1Rƥ贫d飼$俊跾
tcpSocket:
- host: "209"
- port: 1061537
+ host: "213"
+ port: 173916181
preStop:
exec:
command:
- - "210"
+ - "214"
httpGet:
- host: "213"
+ host: "217"
httpHeaders:
- - name: "214"
- value: "215"
- path: "211"
- port: "212"
- scheme: 墴1Rƥ贫d
+ - name: "218"
+ value: "219"
+ path: "215"
+ port: "216"
+ scheme: ūPH炮掊°nʮ閼咎櫸eʔ
tcpSocket:
- host: "216"
- port: -33154680
+ host: "221"
+ port: "220"
livenessProbe:
exec:
command:
- "183"
- failureThreshold: 952979935
+ failureThreshold: 2110181803
+ gRPC:
+ port: 1843670786
+ service: "190"
httpGet:
host: "185"
httpHeaders:
@@ -591,14 +615,14 @@ spec:
path: "184"
port: -522879476
scheme: "N"
- initialDelaySeconds: -687313111
- periodSeconds: 1730325900
- successThreshold: -828368050
+ initialDelaySeconds: -2041475873
+ periodSeconds: 435655893
+ successThreshold: -683915391
tcpSocket:
host: "189"
port: "188"
- terminationGracePeriodSeconds: 3485267088372060587
- timeoutSeconds: -131161294
+ terminationGracePeriodSeconds: -8508077999296389100
+ timeoutSeconds: 2020789772
name: "157"
ports:
- containerPort: -1746427184
@@ -609,24 +633,27 @@ spec:
readinessProbe:
exec:
command:
- - "190"
- failureThreshold: 749147575
+ - "191"
+ failureThreshold: -288563359
+ gRPC:
+ port: -1996616480
+ service: "198"
httpGet:
- host: "192"
+ host: "194"
httpHeaders:
- - name: "193"
- value: "194"
- path: "191"
- port: -1893103047
- scheme: įXŋ朘瑥A徙ɶɊł/擇ɦĽ胚O醔ɍ
- initialDelaySeconds: 1836896522
- periodSeconds: 2064656704
- successThreshold: -1940723300
+ - name: "195"
+ value: "196"
+ path: "192"
+ port: "193"
+ scheme: ź贩j瀉
+ initialDelaySeconds: 981940178
+ periodSeconds: 312792977
+ successThreshold: 1597969994
tcpSocket:
- host: "196"
- port: "195"
- terminationGracePeriodSeconds: 2131277878630553496
- timeoutSeconds: -2101285839
+ host: "197"
+ port: 580681683
+ terminationGracePeriodSeconds: 8180448406065045988
+ timeoutSeconds: -1841227335
resources:
limits:
É/p: "144"
@@ -636,52 +663,55 @@ spec:
allowPrivilegeEscalation: false
capabilities:
add:
- - 閼咎櫸eʔŊ
+ - 5w垁鷌辪虽U珝Żwʮ馜üNșƶ
drop:
- - 究:hoĂɋ瀐<ɉ湨
+ - ĩĉş蝿ɖȃ賲鐅臬
privileged: false
- procMount: Ǯń
+ procMount: ʭd鲡:贅wE@Ȗs«öʮĀ<é瞾ʀN
readOnlyRootFilesystem: true
- runAsGroup: -879001843196053690
- runAsNonRoot: true
- runAsUser: 5069703513298030462
+ runAsGroup: 2404245025847758433
+ runAsNonRoot: false
+ runAsUser: -2242514391033939790
seLinuxOptions:
- level: "221"
- role: "219"
- type: "220"
- user: "218"
+ level: "226"
+ role: "224"
+ type: "225"
+ user: "223"
seccompProfile:
- localhostProfile: "225"
- type: ǰ溟ɴ扵閝ȝ鐵儣廡ɑ龫`劳
+ localhostProfile: "230"
+ type: ɨǙÄr蛏豈ɃH
windowsOptions:
- gmsaCredentialSpec: "223"
- gmsaCredentialSpecName: "222"
+ gmsaCredentialSpec: "228"
+ gmsaCredentialSpecName: "227"
hostProcess: true
- runAsUserName: "224"
+ runAsUserName: "229"
startupProbe:
exec:
command:
- - "197"
- failureThreshold: -1618937335
+ - "199"
+ failureThreshold: -1126738259
+ gRPC:
+ port: 1154560741
+ service: "207"
httpGet:
- host: "200"
+ host: "202"
httpHeaders:
- - name: "201"
- value: "202"
- path: "198"
- port: "199"
- initialDelaySeconds: 994527057
- periodSeconds: -1346458591
- successThreshold: 1234551517
+ - name: "203"
+ value: "204"
+ path: "200"
+ port: "201"
+ scheme: 厶耈 T衧ȇe媹Hǝ呮}臷
+ initialDelaySeconds: -1376537100
+ periodSeconds: -532628939
+ successThreshold: -748919010
tcpSocket:
- host: "203"
- port: 675406340
- terminationGracePeriodSeconds: -8171267464271993058
- timeoutSeconds: -1482763519
+ host: "206"
+ port: "205"
+ terminationGracePeriodSeconds: -8638776927777706944
+ timeoutSeconds: 1100645882
stdin: true
- terminationMessagePath: "217"
- terminationMessagePolicy: 跾|@?鷅bȻN+ņ榱*
- tty: true
+ terminationMessagePath: "222"
+ terminationMessagePolicy: 究:hoĂɋ瀐<ɉ湨
volumeDevices:
- devicePath: "182"
name: "181"
@@ -693,67 +723,69 @@ spec:
subPath: "179"
subPathExpr: "180"
workingDir: "161"
- nodeName: "370"
+ nodeName: "382"
nodeSelector:
- "366": "367"
+ "378": "379"
os:
- name: 値å镮
+ name: /ƻ假Ĵ
overhead:
- kƱ: "313"
- preemptionPolicy: ħ\
- priority: 780753434
- priorityClassName: "453"
+ "": "846"
+ preemptionPolicy: «ɒó<碡4鏽喡孨ʚé薘-ɞ逭ɋ¡
+ priority: -1623129882
+ priorityClassName: "465"
readinessGates:
- - conditionType: ¤趜磕绘翁揌p:oŇE
- restartPolicy: xǨŴ壶ƵfȽÃ
- runtimeClassName: "458"
- schedulerName: "448"
+ - conditionType: d楗鱶镖喗vȥ倉螆ȨX
+ restartPolicy: 爥
+ runtimeClassName: "470"
+ schedulerName: "460"
securityContext:
- fsGroup: 1362411221198469787
- fsGroupChangePolicy: 輔3璾ėȜv1b繐汚磉反-n覦
- runAsGroup: -2587337448078233130
- runAsNonRoot: false
- runAsUser: 8749429589533479764
+ fsGroup: 8403394374485358747
+ fsGroupChangePolicy: ì
+ runAsGroup: 2064297229886854304
+ runAsNonRoot: true
+ runAsUser: -3293876530290657822
seLinuxOptions:
- level: "374"
- role: "372"
- type: "373"
- user: "371"
+ level: "386"
+ role: "384"
+ type: "385"
+ user: "383"
seccompProfile:
- localhostProfile: "380"
- type: 閈誹ʅ蕉ɼ
+ localhostProfile: "392"
+ type: ""
supplementalGroups:
- - 8748656795747647539
+ - -2305748055620880754
sysctls:
- - name: "378"
- value: "379"
+ - name: "390"
+ value: "391"
windowsOptions:
- gmsaCredentialSpec: "376"
- gmsaCredentialSpecName: "375"
- hostProcess: false
- runAsUserName: "377"
- serviceAccount: "369"
- serviceAccountName: "368"
+ gmsaCredentialSpec: "388"
+ gmsaCredentialSpecName: "387"
+ hostProcess: true
+ runAsUserName: "389"
+ serviceAccount: "381"
+ serviceAccountName: "380"
setHostnameAsFQDN: false
shareProcessNamespace: false
- subdomain: "383"
- terminationGracePeriodSeconds: -6480965203152502098
+ subdomain: "395"
+ terminationGracePeriodSeconds: -6937733263836228614
tolerations:
- - effect: 甬Ʈ岢r臣鐐qwïźU痤ȵ
- key: "449"
- operator: 瘂S淫íŶƭ鬯富Nú顏*z犔kU
- tolerationSeconds: -4322909565451750640
- value: "450"
+ - effect: D?/nēɅĀ埰ʀł!U詨nj1ýǝ
+ key: "461"
+ operator: 5谠vÐ仆dždĄ跞肞=ɴC}怢
+ tolerationSeconds: -7090833765995091747
+ value: "462"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: h---dY7_M_-._M5..-N_H_55..--E3_2D1
- operator: DoesNotExist
+ - key: ai.D7-_9..8-8yw..__Yb_58.p-06jVZ-uP.t_.O937uh
+ operator: In
+ values:
+ - 7.W74-R_Z_Tz.a3_HWo4_6
matchLabels:
- Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i: Wq-...Oai.D7-_9..8-8yw..__Yb_8
- maxSkew: 1674267790
- topologyKey: "459"
- whenUnsatisfiable: G峣搒R谱ʜ篲&ZǘtnjʣǕV
+ t-nhc50-de2qh2-b-6--13lk5-e4-u-5kvp-----887j72qc/2-7_._qN__A_f_-B3_U__L.KHK: 35H__.B_6_-U..u8gwb.-R6_pQ_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4Po
+ maxSkew: 1688294622
+ topologyKey: "471"
+ whenUnsatisfiable: 矵&7Ʃɩ
volumes:
- awsElasticBlockStore:
fsType: "25"
@@ -1010,126 +1042,126 @@ spec:
volumePath: "79"
status:
conditions:
- - lastProbeTime: "2964-11-28T11:39:16Z"
- lastTransitionTime: "2684-04-17T20:01:15Z"
- message: "467"
- reason: "466"
- status: 鮫ʌ槧ą°Z拕獘:p
- type: 蝬KȴǃmŁȒ|'从LŸɬʥ
+ - lastProbeTime: "2799-10-17T21:43:53Z"
+ lastTransitionTime: "2007-08-17T02:42:37Z"
+ message: "479"
+ reason: "478"
+ status: Ȓ|'从LŸɬʥhA輞0ɹmŎO
+ type: 撡'降\4
containerStatuses:
- - containerID: "501"
- image: "499"
- imageID: "500"
+ - containerID: "513"
+ image: "511"
+ imageID: "512"
lastState:
running:
- startedAt: "2940-02-10T02:45:51Z"
+ startedAt: "2930-09-29T01:55:03Z"
terminated:
- containerID: "498"
- exitCode: 508776344
- finishedAt: "2716-06-10T12:34:06Z"
- message: "497"
- reason: "496"
- signal: -419737006
- startedAt: "2556-04-09T04:29:45Z"
- waiting:
- message: "495"
- reason: "494"
- name: "488"
- ready: false
- restartCount: 839330574
- started: true
- state:
- running:
- startedAt: "2514-10-23T19:30:50Z"
- terminated:
- containerID: "493"
- exitCode: -1915588568
- finishedAt: "2539-08-23T00:33:24Z"
- message: "492"
- reason: "491"
- signal: -748558554
- startedAt: "2669-01-03T02:05:34Z"
- waiting:
- message: "490"
- reason: "489"
- ephemeralContainerStatuses:
- - containerID: "515"
- image: "513"
- imageID: "514"
- lastState:
- running:
- startedAt: "2873-08-04T14:47:20Z"
- terminated:
- containerID: "512"
- exitCode: -1736264167
- finishedAt: "2162-04-09T16:36:03Z"
- message: "511"
- reason: "510"
- signal: -61756682
- startedAt: "2083-06-13T02:40:30Z"
- waiting:
+ containerID: "510"
+ exitCode: 1729335119
+ finishedAt: "2269-01-04T20:21:46Z"
message: "509"
reason: "508"
- name: "502"
- ready: true
- restartCount: -598136292
- started: true
- state:
- running:
- startedAt: "2307-01-05T17:43:36Z"
- terminated:
- containerID: "507"
- exitCode: 390203674
- finishedAt: "2475-06-22T13:38:30Z"
- message: "506"
- reason: "505"
- signal: -372320382
- startedAt: "2843-07-14T02:23:26Z"
+ signal: 1052076475
+ startedAt: "2845-04-10T17:32:22Z"
waiting:
- message: "504"
- reason: "503"
- hostIP: "471"
- initContainerStatuses:
- - containerID: "487"
- image: "485"
- imageID: "486"
- lastState:
- running:
- startedAt: "2405-08-10T09:51:44Z"
- terminated:
- containerID: "484"
- exitCode: 1690803571
- finishedAt: "2056-06-22T17:22:55Z"
- message: "483"
- reason: "482"
- signal: 1574959758
- startedAt: "2871-08-02T00:56:38Z"
- waiting:
- message: "481"
- reason: "480"
- name: "474"
- ready: true
- restartCount: -560956057
+ message: "507"
+ reason: "506"
+ name: "500"
+ ready: false
+ restartCount: -419737006
started: false
state:
running:
- startedAt: "2045-05-04T00:27:18Z"
+ startedAt: "2584-05-18T04:27:14Z"
terminated:
- containerID: "479"
- exitCode: 840157370
- finishedAt: "2115-03-23T22:33:35Z"
- message: "478"
- reason: "477"
- signal: 165747350
- startedAt: "2362-01-25T20:42:09Z"
+ containerID: "505"
+ exitCode: -362057173
+ finishedAt: "2676-03-28T17:20:22Z"
+ message: "504"
+ reason: "503"
+ signal: 1953662668
+ startedAt: "2914-12-02T03:21:31Z"
waiting:
- message: "476"
- reason: "475"
- message: "468"
- nominatedNodeName: "470"
- phase: ą¨?ɣ蔫椁
- podIP: "472"
+ message: "502"
+ reason: "501"
+ ephemeralContainerStatuses:
+ - containerID: "527"
+ image: "525"
+ imageID: "526"
+ lastState:
+ running:
+ startedAt: "2337-02-28T18:34:34Z"
+ terminated:
+ containerID: "524"
+ exitCode: -1497066738
+ finishedAt: "2010-12-07T07:18:59Z"
+ message: "523"
+ reason: "522"
+ signal: -1575088377
+ startedAt: "2245-04-18T03:12:10Z"
+ waiting:
+ message: "521"
+ reason: "520"
+ name: "514"
+ ready: false
+ restartCount: -985855709
+ started: true
+ state:
+ running:
+ startedAt: "2758-10-26T12:02:16Z"
+ terminated:
+ containerID: "519"
+ exitCode: -746177818
+ finishedAt: "2206-03-08T16:25:10Z"
+ message: "518"
+ reason: "517"
+ signal: 878153992
+ startedAt: "2373-04-09T07:28:39Z"
+ waiting:
+ message: "516"
+ reason: "515"
+ hostIP: "483"
+ initContainerStatuses:
+ - containerID: "499"
+ image: "497"
+ imageID: "498"
+ lastState:
+ running:
+ startedAt: "2574-10-15T01:48:10Z"
+ terminated:
+ containerID: "496"
+ exitCode: -773770291
+ finishedAt: "2127-06-24T09:29:52Z"
+ message: "495"
+ reason: "494"
+ signal: 2124926228
+ startedAt: "2902-10-04T13:01:15Z"
+ waiting:
+ message: "493"
+ reason: "492"
+ name: "486"
+ ready: false
+ restartCount: 1574959758
+ started: true
+ state:
+ running:
+ startedAt: "2684-04-17T20:01:15Z"
+ terminated:
+ containerID: "491"
+ exitCode: -933017112
+ finishedAt: "2760-10-14T11:51:24Z"
+ message: "490"
+ reason: "489"
+ signal: -182902213
+ startedAt: "2221-08-06T21:21:19Z"
+ waiting:
+ message: "488"
+ reason: "487"
+ message: "480"
+ nominatedNodeName: "482"
+ phase: 诹ɼ#趶毎卸値å镮ó"壽ȱǒ鉚#
+ podIP: "484"
podIPs:
- - ip: "473"
- qosClass: '!ɝ茀ǨĪ弊ʥ汹ȡWU=ȑ-A敲'
- reason: "469"
+ - ip: "485"
+ qosClass: nET¬%Ȏ
+ reason: "481"
diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json
index 071cb725b63..70bcd9b92bc 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.json
@@ -544,152 +544,165 @@
"port": 1094670193,
"host": "207"
},
- "initialDelaySeconds": 905846572,
- "timeoutSeconds": -396185898,
- "periodSeconds": 166278802,
- "successThreshold": -2005424724,
- "failureThreshold": 462729263,
- "terminationGracePeriodSeconds": -2545119488724336295
+ "gRPC": {
+ "port": 393169267,
+ "service": "208"
+ },
+ "initialDelaySeconds": 1381010768,
+ "timeoutSeconds": -722355061,
+ "periodSeconds": 1487374718,
+ "successThreshold": -1312504040,
+ "failureThreshold": 1135182169,
+ "terminationGracePeriodSeconds": 7918880607952936030
},
"readinessProbe": {
"exec": {
"command": [
- "208"
+ "209"
]
},
"httpGet": {
- "path": "209",
- "port": 1054302708,
- "host": "210",
+ "path": "210",
+ "port": "211",
+ "host": "212",
+ "scheme": "Ŭ",
"httpHeaders": [
{
- "name": "211",
- "value": "212"
+ "name": "213",
+ "value": "214"
}
]
},
"tcpSocket": {
- "port": "213",
- "host": "214"
+ "port": "215",
+ "host": "216"
},
- "initialDelaySeconds": -2093767566,
- "timeoutSeconds": -1718681455,
- "periodSeconds": 386652373,
- "successThreshold": -1157800046,
- "failureThreshold": 1577445629,
- "terminationGracePeriodSeconds": 562397907094900922
+ "gRPC": {
+ "port": 386652373,
+ "service": "217"
+ },
+ "initialDelaySeconds": -1157800046,
+ "timeoutSeconds": 1577445629,
+ "periodSeconds": 130943466,
+ "successThreshold": -41112329,
+ "failureThreshold": -503369169,
+ "terminationGracePeriodSeconds": -3447077152667955293
},
"startupProbe": {
"exec": {
"command": [
- "215"
+ "218"
]
},
"httpGet": {
- "path": "216",
- "port": "217",
- "host": "218",
- "scheme": "C'ɵK.Q貇£ȹ嫰ƹǔw÷nI粛",
+ "path": "219",
+ "port": -1167888910,
+ "host": "220",
+ "scheme": ".Q貇£ȹ嫰ƹǔw÷nI",
"httpHeaders": [
{
- "name": "219",
- "value": "220"
+ "name": "221",
+ "value": "222"
}
]
},
"tcpSocket": {
- "port": "221",
- "host": "222"
+ "port": "223",
+ "host": "224"
},
- "initialDelaySeconds": 800220849,
- "timeoutSeconds": -1429994426,
- "periodSeconds": 135036402,
- "successThreshold": -1650568978,
- "failureThreshold": 304141309,
- "terminationGracePeriodSeconds": -378701183370790036
+ "gRPC": {
+ "port": 2026784878,
+ "service": "225"
+ },
+ "initialDelaySeconds": -730174220,
+ "timeoutSeconds": 433084615,
+ "periodSeconds": 208045354,
+ "successThreshold": -270045321,
+ "failureThreshold": -1366875038,
+ "terminationGracePeriodSeconds": -5104272258468425858
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "223"
+ "226"
]
},
"httpGet": {
- "path": "224",
- "port": 1791729314,
- "host": "225",
- "scheme": "漘Z剚敍0)",
+ "path": "227",
+ "port": "228",
+ "host": "229",
+ "scheme": "@ɀ羭,铻OŤǢʭ嵔棂p儼Ƿ裚瓶釆",
"httpHeaders": [
{
- "name": "226",
- "value": "227"
+ "name": "230",
+ "value": "231"
}
]
},
"tcpSocket": {
- "port": 424236719,
- "host": "228"
+ "port": -1275947865,
+ "host": "232"
}
},
"preStop": {
"exec": {
"command": [
- "229"
+ "233"
]
},
"httpGet": {
- "path": "230",
- "port": -1131820775,
- "host": "231",
- "scheme": "Ƿ裚瓶釆Ɗ+j忊",
+ "path": "234",
+ "port": "235",
+ "host": "236",
+ "scheme": "嫭塓烀罁胾",
"httpHeaders": [
{
- "name": "232",
- "value": "233"
+ "name": "237",
+ "value": "238"
}
]
},
"tcpSocket": {
- "port": "234",
- "host": "235"
+ "port": -233378149,
+ "host": "239"
}
}
},
- "terminationMessagePath": "236",
- "terminationMessagePolicy": "焗捏",
- "imagePullPolicy": "罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩",
+ "terminationMessagePath": "240",
+ "terminationMessagePolicy": "zɟ踡肒Ao/樝fw[Řż丩ŽoǠ",
+ "imagePullPolicy": "ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ",
"securityContext": {
"capabilities": {
"add": [
- ""
+ "萭旿@掇lNdǂ\u003e5姣"
],
"drop": [
- "ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ"
+ "懔%熷谟"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "237",
- "role": "238",
- "type": "239",
- "level": "240"
+ "user": "241",
+ "role": "242",
+ "type": "243",
+ "level": "244"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "241",
- "gmsaCredentialSpec": "242",
- "runAsUserName": "243",
- "hostProcess": true
+ "gmsaCredentialSpecName": "245",
+ "gmsaCredentialSpec": "246",
+ "runAsUserName": "247",
+ "hostProcess": false
},
- "runAsUser": 301534795599983361,
- "runAsGroup": -505892685699484816,
+ "runAsUser": 7026715191981514507,
+ "runAsGroup": -7194248947259215076,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "",
+ "procMount": "嚏吐Ġ",
"seccompProfile": {
- "type": "Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄",
- "localhostProfile": "244"
+ "type": "ƐȤ藠3.v-鿧悮坮",
+ "localhostProfile": "248"
}
},
"stdin": true,
@@ -698,59 +711,59 @@
],
"containers": [
{
- "name": "245",
- "image": "246",
+ "name": "249",
+ "image": "250",
"command": [
- "247"
+ "251"
],
"args": [
- "248"
+ "252"
],
- "workingDir": "249",
+ "workingDir": "253",
"ports": [
{
- "name": "250",
- "hostPort": -421846800,
- "containerPort": 62799871,
- "protocol": "vt莭琽§ć\\ ïì«",
- "hostIP": "251"
+ "name": "254",
+ "hostPort": -1561418761,
+ "containerPort": -1452676801,
+ "protocol": "ȿ0矀Kʝ",
+ "hostIP": "255"
}
],
"envFrom": [
{
- "prefix": "252",
+ "prefix": "256",
"configMapRef": {
- "name": "253",
- "optional": false
+ "name": "257",
+ "optional": true
},
"secretRef": {
- "name": "254",
+ "name": "258",
"optional": true
}
}
],
"env": [
{
- "name": "255",
- "value": "256",
+ "name": "259",
+ "value": "260",
"valueFrom": {
"fieldRef": {
- "apiVersion": "257",
- "fieldPath": "258"
+ "apiVersion": "261",
+ "fieldPath": "262"
},
"resourceFieldRef": {
- "containerName": "259",
- "resource": "260",
- "divisor": "804"
+ "containerName": "263",
+ "resource": "264",
+ "divisor": "876"
},
"configMapKeyRef": {
- "name": "261",
- "key": "262",
- "optional": true
+ "name": "265",
+ "key": "266",
+ "optional": false
},
"secretKeyRef": {
- "name": "263",
- "key": "264",
+ "name": "267",
+ "key": "268",
"optional": true
}
}
@@ -758,149 +771,139 @@
],
"resources": {
"limits": {
- "粕擓ƖHVe熼'FD": "235"
+ "ĺɗŹ倗S晒嶗UÐ_ƮA攤": "797"
},
"requests": {
- "嶗U": "647"
+ "À*f\u003c鴒翁杙Ŧ癃8": "873"
}
},
"volumeMounts": [
{
- "name": "265",
- "mountPath": "266",
- "subPath": "267",
- "mountPropagation": "i酛3ƁÀ*f\u003c鴒翁杙Ŧ癃",
- "subPathExpr": "268"
+ "name": "269",
+ "readOnly": true,
+ "mountPath": "270",
+ "subPath": "271",
+ "mountPropagation": "Zɾģ毋Ó6dz娝嘚庎D}埽uʎ",
+ "subPathExpr": "272"
}
],
"volumeDevices": [
{
- "name": "269",
- "devicePath": "270"
+ "name": "273",
+ "devicePath": "274"
}
],
"livenessProbe": {
"exec": {
"command": [
- "271"
+ "275"
]
},
"httpGet": {
- "path": "272",
- "port": 630004123,
- "host": "273",
- "scheme": "ɾģ毋Ó6dz娝嘚",
+ "path": "276",
+ "port": "277",
+ "host": "278",
+ "scheme": "9Ì",
"httpHeaders": [
{
- "name": "274",
- "value": "275"
+ "name": "279",
+ "value": "280"
}
]
},
"tcpSocket": {
- "port": -1213051101,
- "host": "276"
+ "port": -1364571630,
+ "host": "281"
},
- "initialDelaySeconds": 1451056156,
- "timeoutSeconds": 267768240,
- "periodSeconds": -127849333,
- "successThreshold": -1455098755,
- "failureThreshold": -1140531048,
- "terminationGracePeriodSeconds": -8648209499645539653
+ "gRPC": {
+ "port": 1226391571,
+ "service": "282"
+ },
+ "initialDelaySeconds": 1477910551,
+ "timeoutSeconds": -534498506,
+ "periodSeconds": -1981710234,
+ "successThreshold": -1109619518,
+ "failureThreshold": -406384705,
+ "terminationGracePeriodSeconds": 4148670765068635051
},
"readinessProbe": {
"exec": {
"command": [
- "277"
+ "283"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ",
+ "path": "284",
+ "port": -1244623134,
+ "host": "285",
+ "scheme": "Ɔȓ蹣ɐǛv+8Ƥ熪",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "286",
+ "value": "287"
}
]
},
"tcpSocket": {
- "port": -36782737,
- "host": "283"
+ "port": "288",
+ "host": "289"
},
- "initialDelaySeconds": -1738069460,
- "timeoutSeconds": -1643733106,
- "periodSeconds": -805795167,
- "successThreshold": 1791615594,
- "failureThreshold": 785984384,
- "terminationGracePeriodSeconds": 830921445879518469
+ "gRPC": {
+ "port": -241238495,
+ "service": "290"
+ },
+ "initialDelaySeconds": -1556231754,
+ "timeoutSeconds": 461585849,
+ "periodSeconds": -321709789,
+ "successThreshold": -1463645123,
+ "failureThreshold": -1011390276,
+ "terminationGracePeriodSeconds": 6598159495737058266
},
"startupProbe": {
"exec": {
"command": [
- "284"
+ "291"
]
},
"httpGet": {
- "path": "285",
- "port": 622267234,
- "host": "286",
- "scheme": "[+扴ȨŮ+朷Ǝ膯ljV",
+ "path": "292",
+ "port": "293",
+ "host": "294",
+ "scheme": "佱¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ",
"httpHeaders": [
{
- "name": "287",
- "value": "288"
+ "name": "295",
+ "value": "296"
}
]
},
"tcpSocket": {
- "port": "289",
- "host": "290"
+ "port": -379385405,
+ "host": "297"
},
- "initialDelaySeconds": -171684192,
- "timeoutSeconds": -602419938,
- "periodSeconds": 1040396664,
- "successThreshold": -979584143,
- "failureThreshold": -1748648882,
- "terminationGracePeriodSeconds": -1030117900836778816
+ "gRPC": {
+ "port": 1043311000,
+ "service": "298"
+ },
+ "initialDelaySeconds": 102402611,
+ "timeoutSeconds": -1554559634,
+ "periodSeconds": 1718241831,
+ "successThreshold": 550615941,
+ "failureThreshold": 1180971695,
+ "terminationGracePeriodSeconds": -8469438885278515008
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "291"
+ "299"
]
},
"httpGet": {
- "path": "292",
- "port": 415947324,
- "host": "293",
- "scheme": "v铿ʩȂ4ē鐭#嬀ơŸ8T 苧yñ",
- "httpHeaders": [
- {
- "name": "294",
- "value": "295"
- }
- ]
- },
- "tcpSocket": {
- "port": "296",
- "host": "297"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "298"
- ]
- },
- "httpGet": {
- "path": "299",
- "port": "300",
+ "path": "300",
+ "port": -1620315711,
"host": "301",
- "scheme": "鐫û咡W\u003c敄lu|榝",
+ "scheme": "ɐ扵",
"httpHeaders": [
{
"name": "302",
@@ -909,13 +912,36 @@
]
},
"tcpSocket": {
- "port": 102215089,
- "host": "304"
+ "port": "304",
+ "host": "305"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "306"
+ ]
+ },
+ "httpGet": {
+ "path": "307",
+ "port": "308",
+ "host": "309",
+ "scheme": "\u003c敄lu|榝$î.Ȏ蝪ʜ5遰=E埄",
+ "httpHeaders": [
+ {
+ "name": "310",
+ "value": "311"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "312",
+ "host": "313"
}
}
},
- "terminationMessagePath": "305",
- "terminationMessagePolicy": "Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ",
+ "terminationMessagePath": "314",
+ "terminationMessagePolicy": " wƯ貾坢'跩aŕ",
"imagePullPolicy": "Ļǟi\u0026",
"securityContext": {
"capabilities": {
@@ -928,15 +954,15 @@
},
"privileged": false,
"seLinuxOptions": {
- "user": "306",
- "role": "307",
- "type": "308",
- "level": "309"
+ "user": "315",
+ "role": "316",
+ "type": "317",
+ "level": "318"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "310",
- "gmsaCredentialSpec": "311",
- "runAsUserName": "312",
+ "gmsaCredentialSpecName": "319",
+ "gmsaCredentialSpec": "320",
+ "runAsUserName": "321",
"hostProcess": false
},
"runAsUser": 8025933883888025358,
@@ -947,7 +973,7 @@
"procMount": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
"seccompProfile": {
"type": ")酊龨δ摖ȱğ_\u003cǬëJ橈'琕鶫:",
- "localhostProfile": "313"
+ "localhostProfile": "322"
}
},
"stdin": true,
@@ -956,59 +982,59 @@
],
"ephemeralContainers": [
{
- "name": "314",
- "image": "315",
+ "name": "323",
+ "image": "324",
"command": [
- "316"
+ "325"
],
"args": [
- "317"
+ "326"
],
- "workingDir": "318",
+ "workingDir": "327",
"ports": [
{
- "name": "319",
+ "name": "328",
"hostPort": -116224247,
"containerPort": -2097329452,
"protocol": "屿oiɥ嵐sC8?",
- "hostIP": "320"
+ "hostIP": "329"
}
],
"envFrom": [
{
- "prefix": "321",
+ "prefix": "330",
"configMapRef": {
- "name": "322",
+ "name": "331",
"optional": false
},
"secretRef": {
- "name": "323",
+ "name": "332",
"optional": true
}
}
],
"env": [
{
- "name": "324",
- "value": "325",
+ "name": "333",
+ "value": "334",
"valueFrom": {
"fieldRef": {
- "apiVersion": "326",
- "fieldPath": "327"
+ "apiVersion": "335",
+ "fieldPath": "336"
},
"resourceFieldRef": {
- "containerName": "328",
- "resource": "329",
+ "containerName": "337",
+ "resource": "338",
"divisor": "974"
},
"configMapKeyRef": {
- "name": "330",
- "key": "331",
+ "name": "339",
+ "key": "340",
"optional": true
},
"secretKeyRef": {
- "name": "332",
- "key": "333",
+ "name": "341",
+ "key": "342",
"optional": true
}
}
@@ -1024,248 +1050,259 @@
},
"volumeMounts": [
{
- "name": "334",
+ "name": "343",
"readOnly": true,
- "mountPath": "335",
- "subPath": "336",
+ "mountPath": "344",
+ "subPath": "345",
"mountPropagation": "vEȤƏ埮p",
- "subPathExpr": "337"
+ "subPathExpr": "346"
}
],
"volumeDevices": [
{
- "name": "338",
- "devicePath": "339"
+ "name": "347",
+ "devicePath": "348"
}
],
"livenessProbe": {
"exec": {
"command": [
- "340"
+ "349"
]
},
"httpGet": {
- "path": "341",
+ "path": "350",
"port": 1473407401,
- "host": "342",
+ "host": "351",
"scheme": "ʐşƧ",
"httpHeaders": [
{
- "name": "343",
- "value": "344"
+ "name": "352",
+ "value": "353"
}
]
},
"tcpSocket": {
"port": 199049889,
- "host": "345"
+ "host": "354"
},
- "initialDelaySeconds": 1947032456,
- "timeoutSeconds": 1233904535,
- "periodSeconds": -969533986,
- "successThreshold": 299741709,
- "failureThreshold": -488127393,
- "terminationGracePeriodSeconds": 4883846315878203110
+ "gRPC": {
+ "port": -667808868,
+ "service": "355"
+ },
+ "initialDelaySeconds": -1411971593,
+ "timeoutSeconds": -1952582931,
+ "periodSeconds": -74827262,
+ "successThreshold": 467105019,
+ "failureThreshold": 998588134,
+ "terminationGracePeriodSeconds": -7936947433725476327
},
"readinessProbe": {
"exec": {
"command": [
- "346"
+ "356"
]
},
"httpGet": {
- "path": "347",
- "port": "348",
- "host": "349",
- "scheme": " 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎",
+ "path": "357",
+ "port": "358",
+ "host": "359",
+ "scheme": "¼蠾8餑噭Dµņ",
"httpHeaders": [
{
- "name": "350",
- "value": "351"
+ "name": "360",
+ "value": "361"
}
]
},
"tcpSocket": {
- "port": "352",
- "host": "353"
+ "port": "362",
+ "host": "363"
},
- "initialDelaySeconds": -200074798,
- "timeoutSeconds": 556036216,
- "periodSeconds": -1838917931,
- "successThreshold": -1563928252,
- "failureThreshold": -302933400,
- "terminationGracePeriodSeconds": 7094149050088640176
+ "gRPC": {
+ "port": -543432015,
+ "service": "364"
+ },
+ "initialDelaySeconds": -515370067,
+ "timeoutSeconds": 2073046460,
+ "periodSeconds": 1692740191,
+ "successThreshold": -278396828,
+ "failureThreshold": 1497888778,
+ "terminationGracePeriodSeconds": -7146044409185304665
},
"startupProbe": {
"exec": {
"command": [
- "354"
+ "365"
]
},
"httpGet": {
- "path": "355",
- "port": -832681001,
- "host": "356",
- "scheme": "h趭",
+ "path": "366",
+ "port": "367",
+ "host": "368",
+ "scheme": "鑳w妕眵笭/9崍h趭",
"httpHeaders": [
{
- "name": "357",
- "value": "358"
+ "name": "369",
+ "value": "370"
}
]
},
"tcpSocket": {
- "port": "359",
- "host": "360"
+ "port": "371",
+ "host": "372"
},
- "initialDelaySeconds": -1969828011,
- "timeoutSeconds": -1186720090,
- "periodSeconds": -748525373,
- "successThreshold": 805162379,
- "failureThreshold": 1486914884,
- "terminationGracePeriodSeconds": -2753079965660681160
+ "gRPC": {
+ "port": 1454160406,
+ "service": "373"
+ },
+ "initialDelaySeconds": 597943993,
+ "timeoutSeconds": -1237718434,
+ "periodSeconds": -1379762675,
+ "successThreshold": -869776221,
+ "failureThreshold": -1869812680,
+ "terminationGracePeriodSeconds": -4480129203693517072
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "361"
+ "374"
]
},
"httpGet": {
- "path": "362",
- "port": -819013491,
- "host": "363",
- "scheme": "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎",
+ "path": "375",
+ "port": 2112112129,
+ "host": "376",
+ "scheme": "ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗",
"httpHeaders": [
{
- "name": "364",
- "value": "365"
+ "name": "377",
+ "value": "378"
}
]
},
"tcpSocket": {
- "port": "366",
- "host": "367"
+ "port": "379",
+ "host": "380"
}
},
"preStop": {
"exec": {
"command": [
- "368"
+ "381"
]
},
"httpGet": {
- "path": "369",
- "port": "370",
- "host": "371",
- "scheme": "(ť1ùfŭƽ",
+ "path": "382",
+ "port": -1920304485,
+ "host": "383",
"httpHeaders": [
{
- "name": "372",
- "value": "373"
+ "name": "384",
+ "value": "385"
}
]
},
"tcpSocket": {
- "port": "374",
- "host": "375"
+ "port": -531787516,
+ "host": "386"
}
}
},
- "terminationMessagePath": "376",
- "terminationMessagePolicy": "æ盪泙若`l}Ñ蠂Ü",
- "imagePullPolicy": "覦灲閈誹ʅ蕉",
+ "terminationMessagePath": "387",
+ "terminationMessagePolicy": "璾ėȜv",
+ "imagePullPolicy": "若`l}",
"securityContext": {
"capabilities": {
"add": [
- "ǭ濑箨ʨIk"
+ "Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ"
],
"drop": [
- "dŊiɢ"
+ "Ix糂腂ǂǚŜEuEy"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "377",
- "role": "378",
- "type": "379",
- "level": "380"
+ "user": "388",
+ "role": "389",
+ "type": "390",
+ "level": "391"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "381",
- "gmsaCredentialSpec": "382",
- "runAsUserName": "383",
- "hostProcess": true
+ "gmsaCredentialSpecName": "392",
+ "gmsaCredentialSpec": "393",
+ "runAsUserName": "394",
+ "hostProcess": false
},
- "runAsUser": 3835909844513980271,
- "runAsGroup": -4911894469676245979,
+ "runAsUser": -8712539912912040623,
+ "runAsGroup": 1444191387770239457,
"runAsNonRoot": false,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": false,
- "procMount": "Qm坊柩劄",
+ "allowPrivilegeEscalation": true,
+ "procMount": "Ǖc8ǣƘƵŧ1ƟƓ宆!",
"seccompProfile": {
- "type": "[ƕƑĝ®EĨǔvÄÚ",
- "localhostProfile": "384"
+ "type": "ɋȑoG鄧蜢暳ǽżLj捲",
+ "localhostProfile": "395"
}
},
"stdin": true,
- "stdinOnce": true,
- "tty": true,
- "targetContainerName": "385"
+ "targetContainerName": "396"
}
],
- "restartPolicy": "鬷m罂",
- "terminationGracePeriodSeconds": 6757106584708307313,
- "activeDeadlineSeconds": -8137450023376708507,
- "dnsPolicy": "żLj捲攻xƂ9阠$嬏wy¶熀",
+ "restartPolicy": "Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů\u003cy鯶",
+ "terminationGracePeriodSeconds": -2391833818948531474,
+ "activeDeadlineSeconds": 4961684277572791542,
+ "dnsPolicy": "G",
"nodeSelector": {
- "386": "387"
+ "397": "398"
},
- "serviceAccountName": "388",
- "serviceAccount": "389",
- "automountServiceAccountToken": true,
- "nodeName": "390",
- "shareProcessNamespace": false,
+ "serviceAccountName": "399",
+ "serviceAccount": "400",
+ "automountServiceAccountToken": false,
+ "nodeName": "401",
+ "hostNetwork": true,
+ "hostIPC": true,
+ "shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "391",
- "role": "392",
- "type": "393",
- "level": "394"
+ "user": "402",
+ "role": "403",
+ "type": "404",
+ "level": "405"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "395",
- "gmsaCredentialSpec": "396",
- "runAsUserName": "397",
- "hostProcess": false
+ "gmsaCredentialSpecName": "406",
+ "gmsaCredentialSpec": "407",
+ "runAsUserName": "408",
+ "hostProcess": true
},
- "runAsUser": 8790792169692841191,
- "runAsGroup": 5680561050872693436,
+ "runAsUser": 296399212346260204,
+ "runAsGroup": 1571605531283019612,
"runAsNonRoot": true,
"supplementalGroups": [
- 7768299165267384830
+ -7623856058716507834
],
- "fsGroup": -838253411893392910,
+ "fsGroup": -2208341819971075364,
"sysctls": [
{
- "name": "398",
- "value": "399"
+ "name": "409",
+ "value": "410"
}
],
- "fsGroupChangePolicy": "槃JŵǤ桒ɴ鉂WJ",
+ "fsGroupChangePolicy": "`ǭ躌ñ?卶滿筇ȟP:/a殆诵",
"seccompProfile": {
- "type": "抉泅ą\u0026疀ȼN翾ȾD虓氙磂tńČȷǻ",
- "localhostProfile": "400"
+ "type": "玲鑠ĭ$#卛8ð仁Q橱9ij",
+ "localhostProfile": "411"
}
},
"imagePullSecrets": [
{
- "name": "401"
+ "name": "412"
}
],
- "hostname": "402",
- "subdomain": "403",
+ "hostname": "413",
+ "subdomain": "414",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1273,19 +1310,19 @@
{
"matchExpressions": [
{
- "key": "404",
- "operator": "鑠ĭ$#卛8ð仁Q橱9",
+ "key": "415",
+ "operator": "鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃",
"values": [
- "405"
+ "416"
]
}
],
"matchFields": [
{
- "key": "406",
- "operator": "斢杧ż鯀1'鸔",
+ "key": "417",
+ "operator": "鬬$矐_敕ű嵞嬯t{Eɾ",
"values": [
- "407"
+ "418"
]
}
]
@@ -1294,23 +1331,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -585628051,
+ "weight": 1471419756,
"preference": {
"matchExpressions": [
{
- "key": "408",
- "operator": "炙B餸硷张q櫞繡旹翃ɾ氒ĺʈʫ羶剹",
+ "key": "419",
+ "operator": "湷D谹気Ƀ秮òƬɸĻo:{",
"values": [
- "409"
+ "420"
]
}
],
"matchFields": [
{
- "key": "410",
- "operator": "嬯t{",
+ "key": "421",
+ "operator": "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»",
"values": [
- "411"
+ "422"
]
}
]
@@ -1323,29 +1360,26 @@
{
"labelSelector": {
"matchLabels": {
- "4_-y.8_38xm-.nx.sEK4.B.__6m": "J1-1.9_.-.Ms7_tP"
+ "129-9d8-s7-t7--336-11k9-8609a-e1/R.--4Q3": "5-.DG7r-3.----._4__XOnf_ZN.-_--r.E__-.8_e_l23"
},
"matchExpressions": [
{
- "key": "37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v",
- "operator": "NotIn",
- "values": [
- "0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc"
- ]
+ "key": "w80-4-6849--w-0-24u7-9pq66cs3--6/97..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_m",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "418"
+ "429"
],
- "topologyKey": "419",
+ "topologyKey": "430",
"namespaceSelector": {
"matchLabels": {
- "3QC1--L--v_Z--ZgC": "Q__-v_t_u_.__O"
+ "p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d": "69oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..Ki"
},
"matchExpressions": [
{
- "key": "w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a",
+ "key": "7p--3zm-lx300w-tj-5.a-50/O--5-yp8q_s-1__gw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4",
"operator": "Exists"
}
]
@@ -1354,34 +1388,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 957174721,
+ "weight": -561220979,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66": "11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C"
+ "g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-br75gp-c-o/AX.gUqV22-4-ye52yQh7.6.y": "w0_i"
},
"matchExpressions": [
{
- "key": "4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p",
- "operator": "NotIn",
- "values": [
- "N7_B_r"
- ]
+ "key": "i---rgvf3q-z-5z80n--t5p/0KkQ-R_R.-.--4_IT_O__3.5h_XC0_7",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "432"
+ "443"
],
- "topologyKey": "433",
+ "topologyKey": "444",
"namespaceSelector": {
"matchLabels": {
- "O_._e_3_.4_W_-q": "Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr"
+ "i_P..wW": "inE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b"
},
"matchExpressions": [
{
- "key": "XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T",
- "operator": "Exists"
+ "key": "C-PfNx__-U7",
+ "operator": "In",
+ "values": [
+ "IuGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlR__87"
+ ]
}
]
}
@@ -1394,33 +1428,30 @@
{
"labelSelector": {
"matchLabels": {
- "ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q": "h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV"
+ "T..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l6Q": "a_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.BO"
},
"matchExpressions": [
{
- "key": "xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W",
- "operator": "In",
+ "key": "0ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C",
+ "operator": "NotIn",
"values": [
- "U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx"
+ "dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.x"
]
}
]
},
"namespaces": [
- "446"
+ "457"
],
- "topologyKey": "447",
+ "topologyKey": "458",
"namespaceSelector": {
"matchLabels": {
- "2-_.4dwFbuvf": "5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J"
+ "B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j": "Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1"
},
"matchExpressions": [
{
- "key": "61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo",
- "operator": "NotIn",
- "values": [
- "0--_qv4--_.6_N_9X-B.s8.B"
- ]
+ "key": "8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J",
+ "operator": "DoesNotExist"
}
]
}
@@ -1428,34 +1459,34 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -1832836223,
+ "weight": 1131487788,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "BQ.9-_.m7-Q____vSW_4-__h": "w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj"
+ "2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D": "Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p"
},
"matchExpressions": [
{
- "key": "dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A",
- "operator": "Exists"
+ "key": "h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b",
+ "operator": "NotIn",
+ "values": [
+ "u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m"
+ ]
}
]
},
"namespaces": [
- "460"
+ "471"
],
- "topologyKey": "461",
+ "topologyKey": "472",
"namespaceSelector": {
"matchLabels": {
- "8.7-72qz.W.d.._1-3968": "G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO"
+ "7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5": "Y-__-Zvt.LT60v.WxPc--K"
},
"matchExpressions": [
{
- "key": "006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W",
- "operator": "NotIn",
- "values": [
- "z87_2---2.E.p9-.-3.__a.bl_--..-A"
- ]
+ "key": "wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T",
+ "operator": "DoesNotExist"
}
]
}
@@ -1464,64 +1495,67 @@
]
}
},
- "schedulerName": "468",
+ "schedulerName": "479",
"tolerations": [
{
- "key": "469",
- "operator": "Ü",
- "value": "470",
- "effect": "貛香\"砻B鷋RȽXv*!ɝ茀Ǩ",
- "tolerationSeconds": 8594241010639209901
+ "key": "480",
+ "operator": "E色kx-餌勀奷ŎC菡ƴ勋;*靯įƊ",
+ "value": "481",
+ "effect": "ŕ蘴濼DZj鎒ũW|ȶdžH0ƾ瘿¸",
+ "tolerationSeconds": -3147305732428645642
}
],
"hostAliases": [
{
- "ip": "471",
+ "ip": "482",
"hostnames": [
- "472"
+ "483"
]
}
],
- "priorityClassName": "473",
- "priority": 878153992,
+ "priorityClassName": "484",
+ "priority": -1756088332,
"dnsConfig": {
"nameservers": [
- "474"
+ "485"
],
"searches": [
- "475"
+ "486"
],
"options": [
{
- "name": "476",
- "value": "477"
+ "name": "487",
+ "value": "488"
}
]
},
"readinessGates": [
{
- "conditionType": "=ȑ-A敲ʉ"
+ "conditionType": "#sM網"
}
],
- "runtimeClassName": "478",
- "enableServiceLinks": false,
- "preemptionPolicy": "梊蝴.Ĉ马āƭw鰕ǰ\"șa",
+ "runtimeClassName": "489",
+ "enableServiceLinks": true,
+ "preemptionPolicy": "ûŠl倳ţü¿Sʟ鍡",
"overhead": {
- "\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ": "283"
+ "炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉": "452"
},
"topologySpreadConstraints": [
{
- "maxSkew": -702578810,
- "topologyKey": "479",
- "whenUnsatisfiable": "Ž氮怉ƥ;\"薑Ȣ#闬輙怀¹bCũw",
+ "maxSkew": -447559705,
+ "topologyKey": "490",
+ "whenUnsatisfiable": "TaI楅©Ǫ壿/š^劶äɲ泒",
"labelSelector": {
"matchLabels": {
- "N-_.F": "09z2"
+ "47--9k-e4ora9.t7bm9-4m04qn-n7--c3k7--fei-br7310gl-xwm5-85a/r8-L__C_60-__.19_-gYY._..fP--hQ7be__-.-g-5.-59...7q___nT": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
},
"matchExpressions": [
{
- "key": "z-g--v8-c58kh44k-b13--2.7a-h0-4d-z-23---49tw-a/G5-_-_Llmft6.5H905IBI-._g_0",
- "operator": "DoesNotExist"
+ "key": "KTlO.__0PX",
+ "operator": "In",
+ "values": [
+ "V6K_.3_583-6.f-.9-.V..Q-K_6_3"
+ ]
}
]
}
@@ -1529,7 +1563,7 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "脡ǯ?b砸ƻ舁Ȁ贠ȇö匉"
+ "name": "sʅ朁遐»`癸ƥf豯烠砖#囹J,R"
}
}
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb
index 9860de7d67f..1024cf18d4c 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml
index 5af82da48e9..3f7cc8c74d4 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.PodTemplate.yaml
@@ -62,234 +62,236 @@ template:
selfLink: "23"
uid: SǡƏ
spec:
- activeDeadlineSeconds: -8137450023376708507
+ activeDeadlineSeconds: 4961684277572791542
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "408"
- operator: 炙B餸硷张q櫞繡旹翃ɾ氒ĺʈʫ羶剹
+ - key: "419"
+ operator: 湷D谹気Ƀ秮òƬɸĻo:{
values:
- - "409"
+ - "420"
matchFields:
- - key: "410"
- operator: 嬯t{
+ - key: "421"
+ operator: 赮ǒđ>*劶?jĎĭ¥#ƱÁR»
values:
- - "411"
- weight: -585628051
+ - "422"
+ weight: 1471419756
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "404"
- operator: 鑠ĭ$#卛8ð仁Q橱9
+ - key: "415"
+ operator: 鯀1'鸔ɧWǘ炙B餸硷张q櫞繡旹翃
values:
- - "405"
+ - "416"
matchFields:
- - key: "406"
- operator: 斢杧ż鯀1'鸔
+ - key: "417"
+ operator: 鬬$矐_敕ű嵞嬯t{Eɾ
values:
- - "407"
+ - "418"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 4exr-1-o--g--1l-8---3snw0-3i--a7-2--o--u0038mp9c10-k-r--l.06-4g-z46--f2t-m839q/2_--XZ-x.__.Y_p
- operator: NotIn
- values:
- - N7_B_r
+ - key: i---rgvf3q-z-5z80n--t5p/0KkQ-R_R.-.--4_IT_O__3.5h_XC0_7
+ operator: DoesNotExist
matchLabels:
- o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.Hz_V_.r_v_._e_-78o_66: 11_7pX_.-mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2C
+ g-2wt-g-ve55m-2-dm--ux3--0--2pn-5023-lt3-w-br75gp-c-o/AX.gUqV22-4-ye52yQh7.6.y: w0_i
namespaceSelector:
matchExpressions:
- - key: XN_h_4Hl-X0_2--__4K..-68-7AlR__8-7_-YD-Q9_-T
- operator: Exists
+ - key: C-PfNx__-U7
+ operator: In
+ values:
+ - IuGGP..-_N_h_4Hl-X0_2--__4K..-68-7AlR__87
matchLabels:
- O_._e_3_.4_W_-q: Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emV__1-wv3UDf.-4D-rr
+ i_P..wW: inE...-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b
namespaces:
- - "432"
- topologyKey: "433"
- weight: 957174721
+ - "443"
+ topologyKey: "444"
+ weight: -561220979
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 37zzgy3-4----nf---3a-cgr6---r58-e-l203-8sln7-3x-b--550397801/1.k9M86.9a_-0R_.Z__v
- operator: NotIn
- values:
- - 0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_AmD-.0AP.-.Cc
- matchLabels:
- 4_-y.8_38xm-.nx.sEK4.B.__6m: J1-1.9_.-.Ms7_tP
- namespaceSelector:
- matchExpressions:
- - key: w3--5X1rh-K5y_AzOBW.9oE9_6.--v17r__.2bIZ___._6..tf-_u-a
+ - key: w80-4-6849--w-0-24u7-9pq66cs3--6/97..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_.7F3p2_-_m
operator: Exists
matchLabels:
- 3QC1--L--v_Z--ZgC: Q__-v_t_u_.__O
+ 129-9d8-s7-t7--336-11k9-8609a-e1/R.--4Q3: 5-.DG7r-3.----._4__XOnf_ZN.-_--r.E__-.8_e_l23
+ namespaceSelector:
+ matchExpressions:
+ - key: 7p--3zm-lx300w-tj-5.a-50/O--5-yp8q_s-1__gw_-z_659GE.l_.23--_6l.-5_BZk5v3aUK_--_o_2.-4
+ operator: Exists
+ matchLabels:
+ p-61-2we16h-v/Y-v_t_u_.__I_-_-3-d: 69oE9_6.--v17r__.2bIZ___._6..tf-_u-3-_n0..Ki
namespaces:
- - "418"
- topologyKey: "419"
+ - "429"
+ topologyKey: "430"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: dy-4-03ls-86-u2i7-6-q-----f-b-3-----73.6b---nhc50-de2qh2-b-6s/J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9-A
- operator: Exists
- matchLabels:
- BQ.9-_.m7-Q____vSW_4-__h: w-ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yj
- namespaceSelector:
- matchExpressions:
- - key: 006j--tu-0t-8-937uqhtjrd-7---u6--522p----5506rh-3-2-h10.ale-to9e--a-7j9/lks7dG-9S-O62o.8._.---UK_-.j21---W
+ - key: h-i-60a---9--n8i64t1-4----c-----35---1--6-u-68u8w.3-6b77-f8--tf---7r88-1--p61cd--6/e-Avi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_M--c.0Q--2qh.b
operator: NotIn
values:
- - z87_2---2.E.p9-.-3.__a.bl_--..-A
+ - u.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-m
matchLabels:
- 8.7-72qz.W.d.._1-3968: G__B.3R6-.7Bf8GA--__A7r.8U.V_p61-dO
+ 2fk3x-j9133e--2-t--k-fmt4272r--49u-0m7u-----v8.0--063-qm-j-3wc89k-0-57z4063---kb/v_5_D7RufiV-7u0--_qv4-D: Y_o.-0-yE-R5W5_2n...78aou_j-3.J-.-r_-oPd-.2_Z__.-_U-.6p
+ namespaceSelector:
+ matchExpressions:
+ - key: wr3qtm-8vuo17qre-33-5-u8f0f1qv--i72-x3---v25f1.2-84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--18/iguFGT._.Y4-0.67hP-lX-_-..5-.._r6T
+ operator: DoesNotExist
+ matchLabels:
+ 7u-h---dY7_M_-._M5..-N_H_55..--E3_2D-1DW__o_-._kzB7U_.Q.45cy5: Y-__-Zvt.LT60v.WxPc--K
namespaces:
- - "460"
- topologyKey: "461"
- weight: -1832836223
+ - "471"
+ topologyKey: "472"
+ weight: 1131487788
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1---.-o7.pJ-4-W
- operator: In
- values:
- - U7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidFx
- matchLabels:
- ue--s-1--t-4m7a-41-6j4m--4-r4p--w1k8--u87lyqq-o-3-7/07-ht-E6_Q: h--m._fN._k8__._ep2P.B._A_090ERG2nV.__p_Y-.2__a_dWUV
- namespaceSelector:
- matchExpressions:
- - key: 61-cm---ch-g0t-q--qr95ws-v-5--7-ufi-7/E5-6h_Kyo
+ - key: 0ERG2nV.__p_Y-.2__a_dWU_V-_Q_Ap._C
operator: NotIn
values:
- - 0--_qv4--_.6_N_9X-B.s8.B
+ - dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.e.x
matchLabels:
- 2-_.4dwFbuvf: 5Y2k.F-F..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7J
+ T..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l6Q: a_t--O.3L.z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.BO
+ namespaceSelector:
+ matchExpressions:
+ - key: 8u2-__3uM77U7._pT-___-_5-6h_Ky7-_0Vw-Nzfdw.3-._J
+ operator: DoesNotExist
+ matchLabels:
+ B_05._Lsu-H_.f82-8_.UdWNn_U-...1P_.D8_t..-Ww2q.zK-p-...Z-O.-j: Vv.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
namespaces:
- - "446"
- topologyKey: "447"
- automountServiceAccountToken: true
+ - "457"
+ topologyKey: "458"
+ automountServiceAccountToken: false
containers:
- args:
- - "248"
+ - "252"
command:
- - "247"
+ - "251"
env:
- - name: "255"
- value: "256"
+ - name: "259"
+ value: "260"
valueFrom:
configMapKeyRef:
- key: "262"
- name: "261"
- optional: true
+ key: "266"
+ name: "265"
+ optional: false
fieldRef:
- apiVersion: "257"
- fieldPath: "258"
+ apiVersion: "261"
+ fieldPath: "262"
resourceFieldRef:
- containerName: "259"
- divisor: "804"
- resource: "260"
+ containerName: "263"
+ divisor: "876"
+ resource: "264"
secretKeyRef:
- key: "264"
- name: "263"
+ key: "268"
+ name: "267"
optional: true
envFrom:
- configMapRef:
- name: "253"
- optional: false
- prefix: "252"
- secretRef:
- name: "254"
+ name: "257"
optional: true
- image: "246"
+ prefix: "256"
+ secretRef:
+ name: "258"
+ optional: true
+ image: "250"
imagePullPolicy: Ļǟi&
lifecycle:
postStart:
exec:
command:
- - "291"
- httpGet:
- host: "293"
- httpHeaders:
- - name: "294"
- value: "295"
- path: "292"
- port: 415947324
- scheme: v铿ʩȂ4ē鐭#嬀ơŸ8T 苧yñ
- tcpSocket:
- host: "297"
- port: "296"
- preStop:
- exec:
- command:
- - "298"
+ - "299"
httpGet:
host: "301"
httpHeaders:
- name: "302"
value: "303"
- path: "299"
- port: "300"
- scheme: 鐫û咡W<敄lu|榝
+ path: "300"
+ port: -1620315711
+ scheme: ɐ扵
tcpSocket:
- host: "304"
- port: 102215089
+ host: "305"
+ port: "304"
+ preStop:
+ exec:
+ command:
+ - "306"
+ httpGet:
+ host: "309"
+ httpHeaders:
+ - name: "310"
+ value: "311"
+ path: "307"
+ port: "308"
+ scheme: <敄lu|榝$î.Ȏ蝪ʜ5遰=E埄
+ tcpSocket:
+ host: "313"
+ port: "312"
livenessProbe:
exec:
command:
- - "271"
- failureThreshold: -1140531048
+ - "275"
+ failureThreshold: -406384705
+ gRPC:
+ port: 1226391571
+ service: "282"
httpGet:
- host: "273"
+ host: "278"
httpHeaders:
- - name: "274"
- value: "275"
- path: "272"
- port: 630004123
- scheme: ɾģ毋Ó6dz娝嘚
- initialDelaySeconds: 1451056156
- periodSeconds: -127849333
- successThreshold: -1455098755
+ - name: "279"
+ value: "280"
+ path: "276"
+ port: "277"
+ scheme: 9Ì
+ initialDelaySeconds: 1477910551
+ periodSeconds: -1981710234
+ successThreshold: -1109619518
tcpSocket:
- host: "276"
- port: -1213051101
- terminationGracePeriodSeconds: -8648209499645539653
- timeoutSeconds: 267768240
- name: "245"
+ host: "281"
+ port: -1364571630
+ terminationGracePeriodSeconds: 4148670765068635051
+ timeoutSeconds: -534498506
+ name: "249"
ports:
- - containerPort: 62799871
- hostIP: "251"
- hostPort: -421846800
- name: "250"
- protocol: vt莭琽§ć\ ïì«
+ - containerPort: -1452676801
+ hostIP: "255"
+ hostPort: -1561418761
+ name: "254"
+ protocol: ȿ0矀Kʝ
readinessProbe:
exec:
command:
- - "277"
- failureThreshold: 785984384
+ - "283"
+ failureThreshold: -1011390276
+ gRPC:
+ port: -241238495
+ service: "290"
httpGet:
- host: "280"
+ host: "285"
httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
- initialDelaySeconds: -1738069460
- periodSeconds: -805795167
- successThreshold: 1791615594
+ - name: "286"
+ value: "287"
+ path: "284"
+ port: -1244623134
+ scheme: Ɔȓ蹣ɐǛv+8Ƥ熪
+ initialDelaySeconds: -1556231754
+ periodSeconds: -321709789
+ successThreshold: -1463645123
tcpSocket:
- host: "283"
- port: -36782737
- terminationGracePeriodSeconds: 830921445879518469
- timeoutSeconds: -1643733106
+ host: "289"
+ port: "288"
+ terminationGracePeriodSeconds: 6598159495737058266
+ timeoutSeconds: 461585849
resources:
limits:
- 粕擓ƖHVe熼'FD: "235"
+ ĺɗŹ倗S晒嶗UÐ_ƮA攤: "797"
requests:
- 嶗U: "647"
+ À*f<鴒翁杙Ŧ癃8: "873"
securityContext:
allowPrivilegeEscalation: true
capabilities:
@@ -304,253 +306,265 @@ template:
runAsNonRoot: false
runAsUser: 8025933883888025358
seLinuxOptions:
- level: "309"
- role: "307"
- type: "308"
- user: "306"
+ level: "318"
+ role: "316"
+ type: "317"
+ user: "315"
seccompProfile:
- localhostProfile: "313"
+ localhostProfile: "322"
type: ')酊龨δ摖ȱğ_<ǬëJ橈''琕鶫:'
windowsOptions:
- gmsaCredentialSpec: "311"
- gmsaCredentialSpecName: "310"
+ gmsaCredentialSpec: "320"
+ gmsaCredentialSpecName: "319"
hostProcess: false
- runAsUserName: "312"
+ runAsUserName: "321"
startupProbe:
exec:
command:
- - "284"
- failureThreshold: -1748648882
+ - "291"
+ failureThreshold: 1180971695
+ gRPC:
+ port: 1043311000
+ service: "298"
httpGet:
- host: "286"
+ host: "294"
httpHeaders:
- - name: "287"
- value: "288"
- path: "285"
- port: 622267234
- scheme: '[+扴ȨŮ+朷Ǝ膯ljV'
- initialDelaySeconds: -171684192
- periodSeconds: 1040396664
- successThreshold: -979584143
+ - name: "295"
+ value: "296"
+ path: "292"
+ port: "293"
+ scheme: 佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩȂ
+ initialDelaySeconds: 102402611
+ periodSeconds: 1718241831
+ successThreshold: 550615941
tcpSocket:
- host: "290"
- port: "289"
- terminationGracePeriodSeconds: -1030117900836778816
- timeoutSeconds: -602419938
+ host: "297"
+ port: -379385405
+ terminationGracePeriodSeconds: -8469438885278515008
+ timeoutSeconds: -1554559634
stdin: true
- terminationMessagePath: "305"
- terminationMessagePolicy: Ȏ蝪ʜ5遰=E埄Ȁ朦 wƯ貾坢'跩aŕ
+ terminationMessagePath: "314"
+ terminationMessagePolicy: ' wƯ貾坢''跩aŕ'
tty: true
volumeDevices:
- - devicePath: "270"
- name: "269"
+ - devicePath: "274"
+ name: "273"
volumeMounts:
- - mountPath: "266"
- mountPropagation: i酛3ƁÀ*f<鴒翁杙Ŧ癃
- name: "265"
- subPath: "267"
- subPathExpr: "268"
- workingDir: "249"
+ - mountPath: "270"
+ mountPropagation: Zɾģ毋Ó6dz娝嘚庎D}埽uʎ
+ name: "269"
+ readOnly: true
+ subPath: "271"
+ subPathExpr: "272"
+ workingDir: "253"
dnsConfig:
nameservers:
- - "474"
+ - "485"
options:
- - name: "476"
- value: "477"
+ - name: "487"
+ value: "488"
searches:
- - "475"
- dnsPolicy: żLj捲攻xƂ9阠$嬏wy¶熀
- enableServiceLinks: false
+ - "486"
+ dnsPolicy: G
+ enableServiceLinks: true
ephemeralContainers:
- args:
- - "317"
+ - "326"
command:
- - "316"
+ - "325"
env:
- - name: "324"
- value: "325"
+ - name: "333"
+ value: "334"
valueFrom:
configMapKeyRef:
- key: "331"
- name: "330"
+ key: "340"
+ name: "339"
optional: true
fieldRef:
- apiVersion: "326"
- fieldPath: "327"
+ apiVersion: "335"
+ fieldPath: "336"
resourceFieldRef:
- containerName: "328"
+ containerName: "337"
divisor: "974"
- resource: "329"
+ resource: "338"
secretKeyRef:
- key: "333"
- name: "332"
+ key: "342"
+ name: "341"
optional: true
envFrom:
- configMapRef:
- name: "322"
+ name: "331"
optional: false
- prefix: "321"
+ prefix: "330"
secretRef:
- name: "323"
+ name: "332"
optional: true
- image: "315"
- imagePullPolicy: 覦灲閈誹ʅ蕉
+ image: "324"
+ imagePullPolicy: 若`l}
lifecycle:
postStart:
exec:
command:
- - "361"
+ - "374"
httpGet:
- host: "363"
+ host: "376"
httpHeaders:
- - name: "364"
- value: "365"
- path: "362"
- port: -819013491
- scheme: Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
+ - name: "377"
+ value: "378"
+ path: "375"
+ port: 2112112129
+ scheme: ȽÃ茓pȓɻ挴ʠɜ瞍阎lğ Ņ#耗
tcpSocket:
- host: "367"
- port: "366"
+ host: "380"
+ port: "379"
preStop:
exec:
command:
- - "368"
+ - "381"
httpGet:
- host: "371"
+ host: "383"
httpHeaders:
- - name: "372"
- value: "373"
- path: "369"
- port: "370"
- scheme: (ť1ùfŭƽ
+ - name: "384"
+ value: "385"
+ path: "382"
+ port: -1920304485
tcpSocket:
- host: "375"
- port: "374"
+ host: "386"
+ port: -531787516
livenessProbe:
exec:
command:
- - "340"
- failureThreshold: -488127393
+ - "349"
+ failureThreshold: 998588134
+ gRPC:
+ port: -667808868
+ service: "355"
httpGet:
- host: "342"
+ host: "351"
httpHeaders:
- - name: "343"
- value: "344"
- path: "341"
+ - name: "352"
+ value: "353"
+ path: "350"
port: 1473407401
scheme: ʐşƧ
- initialDelaySeconds: 1947032456
- periodSeconds: -969533986
- successThreshold: 299741709
+ initialDelaySeconds: -1411971593
+ periodSeconds: -74827262
+ successThreshold: 467105019
tcpSocket:
- host: "345"
+ host: "354"
port: 199049889
- terminationGracePeriodSeconds: 4883846315878203110
- timeoutSeconds: 1233904535
- name: "314"
+ terminationGracePeriodSeconds: -7936947433725476327
+ timeoutSeconds: -1952582931
+ name: "323"
ports:
- containerPort: -2097329452
- hostIP: "320"
+ hostIP: "329"
hostPort: -116224247
- name: "319"
+ name: "328"
protocol: 屿oiɥ嵐sC8?
readinessProbe:
exec:
command:
- - "346"
- failureThreshold: -302933400
+ - "356"
+ failureThreshold: 1497888778
+ gRPC:
+ port: -543432015
+ service: "364"
httpGet:
- host: "349"
+ host: "359"
httpHeaders:
- - name: "350"
- value: "351"
- path: "347"
- port: "348"
- scheme: ' 鞤ɱďW賁Ěɭɪǹ0衷,ƷƣMț譎'
- initialDelaySeconds: -200074798
- periodSeconds: -1838917931
- successThreshold: -1563928252
+ - name: "360"
+ value: "361"
+ path: "357"
+ port: "358"
+ scheme: ¼蠾8餑噭Dµņ
+ initialDelaySeconds: -515370067
+ periodSeconds: 1692740191
+ successThreshold: -278396828
tcpSocket:
- host: "353"
- port: "352"
- terminationGracePeriodSeconds: 7094149050088640176
- timeoutSeconds: 556036216
+ host: "363"
+ port: "362"
+ terminationGracePeriodSeconds: -7146044409185304665
+ timeoutSeconds: 2073046460
resources:
limits:
亏yƕ丆録²Ŏ)/灩聋3趐囨鏻: "838"
requests:
i騎C"6x$1sȣ±p鋄5弢ȹ均: "582"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - ǭ濑箨ʨIk
+ - Ü[ƛ^輅9ɛ棕ƈ眽炊礫Ƽ
drop:
- - dŊiɢ
+ - Ix糂腂ǂǚŜEuEy
privileged: false
- procMount: Qm坊柩劄
+ procMount: Ǖc8ǣƘƵŧ1ƟƓ宆!
readOnlyRootFilesystem: false
- runAsGroup: -4911894469676245979
+ runAsGroup: 1444191387770239457
runAsNonRoot: false
- runAsUser: 3835909844513980271
+ runAsUser: -8712539912912040623
seLinuxOptions:
- level: "380"
- role: "378"
- type: "379"
- user: "377"
+ level: "391"
+ role: "389"
+ type: "390"
+ user: "388"
seccompProfile:
- localhostProfile: "384"
- type: '[ƕƑĝ®EĨǔvÄÚ'
+ localhostProfile: "395"
+ type: ɋȑoG鄧蜢暳ǽżLj捲
windowsOptions:
- gmsaCredentialSpec: "382"
- gmsaCredentialSpecName: "381"
- hostProcess: true
- runAsUserName: "383"
+ gmsaCredentialSpec: "393"
+ gmsaCredentialSpecName: "392"
+ hostProcess: false
+ runAsUserName: "394"
startupProbe:
exec:
command:
- - "354"
- failureThreshold: 1486914884
+ - "365"
+ failureThreshold: -1869812680
+ gRPC:
+ port: 1454160406
+ service: "373"
httpGet:
- host: "356"
+ host: "368"
httpHeaders:
- - name: "357"
- value: "358"
- path: "355"
- port: -832681001
- scheme: h趭
- initialDelaySeconds: -1969828011
- periodSeconds: -748525373
- successThreshold: 805162379
+ - name: "369"
+ value: "370"
+ path: "366"
+ port: "367"
+ scheme: 鑳w妕眵笭/9崍h趭
+ initialDelaySeconds: 597943993
+ periodSeconds: -1379762675
+ successThreshold: -869776221
tcpSocket:
- host: "360"
- port: "359"
- terminationGracePeriodSeconds: -2753079965660681160
- timeoutSeconds: -1186720090
+ host: "372"
+ port: "371"
+ terminationGracePeriodSeconds: -4480129203693517072
+ timeoutSeconds: -1237718434
stdin: true
- stdinOnce: true
- targetContainerName: "385"
- terminationMessagePath: "376"
- terminationMessagePolicy: æ盪泙若`l}Ñ蠂Ü
- tty: true
+ targetContainerName: "396"
+ terminationMessagePath: "387"
+ terminationMessagePolicy: 璾ėȜv
volumeDevices:
- - devicePath: "339"
- name: "338"
+ - devicePath: "348"
+ name: "347"
volumeMounts:
- - mountPath: "335"
+ - mountPath: "344"
mountPropagation: vEȤƏ埮p
- name: "334"
+ name: "343"
readOnly: true
- subPath: "336"
- subPathExpr: "337"
- workingDir: "318"
+ subPath: "345"
+ subPathExpr: "346"
+ workingDir: "327"
hostAliases:
- hostnames:
- - "472"
- ip: "471"
- hostname: "402"
+ - "483"
+ ip: "482"
+ hostIPC: true
+ hostNetwork: true
+ hostname: "413"
imagePullSecrets:
- - name: "401"
+ - name: "412"
initContainers:
- args:
- "178"
@@ -584,43 +598,46 @@ template:
name: "184"
optional: true
image: "176"
- imagePullPolicy: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
+ imagePullPolicy: ƋZ1Ůđ眊ľǎɳ,ǿ飏騀呣ǎ
lifecycle:
postStart:
exec:
command:
- - "223"
+ - "226"
httpGet:
- host: "225"
+ host: "229"
httpHeaders:
- - name: "226"
- value: "227"
- path: "224"
- port: 1791729314
- scheme: 漘Z剚敍0)
+ - name: "230"
+ value: "231"
+ path: "227"
+ port: "228"
+ scheme: '@ɀ羭,铻OŤǢʭ嵔棂p儼Ƿ裚瓶釆'
tcpSocket:
- host: "228"
- port: 424236719
+ host: "232"
+ port: -1275947865
preStop:
exec:
command:
- - "229"
+ - "233"
httpGet:
- host: "231"
+ host: "236"
httpHeaders:
- - name: "232"
- value: "233"
- path: "230"
- port: -1131820775
- scheme: Ƿ裚瓶釆Ɗ+j忊
+ - name: "237"
+ value: "238"
+ path: "234"
+ port: "235"
+ scheme: 嫭塓烀罁胾
tcpSocket:
- host: "235"
- port: "234"
+ host: "239"
+ port: -233378149
livenessProbe:
exec:
command:
- "201"
- failureThreshold: 462729263
+ failureThreshold: 1135182169
+ gRPC:
+ port: 393169267
+ service: "208"
httpGet:
host: "204"
httpHeaders:
@@ -629,14 +646,14 @@ template:
path: "202"
port: "203"
scheme: '|dk_瀹鞎sn芞QÄȻȊ+?'
- initialDelaySeconds: 905846572
- periodSeconds: 166278802
- successThreshold: -2005424724
+ initialDelaySeconds: 1381010768
+ periodSeconds: 1487374718
+ successThreshold: -1312504040
tcpSocket:
host: "207"
port: 1094670193
- terminationGracePeriodSeconds: -2545119488724336295
- timeoutSeconds: -396185898
+ terminationGracePeriodSeconds: 7918880607952936030
+ timeoutSeconds: -722355061
name: "175"
ports:
- containerPort: 173916181
@@ -647,23 +664,27 @@ template:
readinessProbe:
exec:
command:
- - "208"
- failureThreshold: 1577445629
+ - "209"
+ failureThreshold: -503369169
+ gRPC:
+ port: 386652373
+ service: "217"
httpGet:
- host: "210"
+ host: "212"
httpHeaders:
- - name: "211"
- value: "212"
- path: "209"
- port: 1054302708
- initialDelaySeconds: -2093767566
- periodSeconds: 386652373
- successThreshold: -1157800046
+ - name: "213"
+ value: "214"
+ path: "210"
+ port: "211"
+ scheme: Ŭ
+ initialDelaySeconds: -1157800046
+ periodSeconds: 130943466
+ successThreshold: -41112329
tcpSocket:
- host: "214"
- port: "213"
- terminationGracePeriodSeconds: 562397907094900922
- timeoutSeconds: -1718681455
+ host: "216"
+ port: "215"
+ terminationGracePeriodSeconds: -3447077152667955293
+ timeoutSeconds: 1577445629
resources:
limits:
瓷碑: "809"
@@ -673,53 +694,56 @@ template:
allowPrivilegeEscalation: false
capabilities:
add:
- - ""
+ - 萭旿@掇lNdǂ>5姣
drop:
- - ŻʘY賃ɪ鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ
- privileged: false
- procMount: ""
+ - 懔%熷谟
+ privileged: true
+ procMount: 嚏吐Ġ
readOnlyRootFilesystem: false
- runAsGroup: -505892685699484816
+ runAsGroup: -7194248947259215076
runAsNonRoot: true
- runAsUser: 301534795599983361
+ runAsUser: 7026715191981514507
seLinuxOptions:
- level: "240"
- role: "238"
- type: "239"
- user: "237"
+ level: "244"
+ role: "242"
+ type: "243"
+ user: "241"
seccompProfile:
- localhostProfile: "244"
- type: Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄
+ localhostProfile: "248"
+ type: ƐȤ藠3.v-鿧悮坮
windowsOptions:
- gmsaCredentialSpec: "242"
- gmsaCredentialSpecName: "241"
- hostProcess: true
- runAsUserName: "243"
+ gmsaCredentialSpec: "246"
+ gmsaCredentialSpecName: "245"
+ hostProcess: false
+ runAsUserName: "247"
startupProbe:
exec:
command:
- - "215"
- failureThreshold: 304141309
+ - "218"
+ failureThreshold: -1366875038
+ gRPC:
+ port: 2026784878
+ service: "225"
httpGet:
- host: "218"
+ host: "220"
httpHeaders:
- - name: "219"
- value: "220"
- path: "216"
- port: "217"
- scheme: C'ɵK.Q貇£ȹ嫰ƹǔw÷nI粛
- initialDelaySeconds: 800220849
- periodSeconds: 135036402
- successThreshold: -1650568978
+ - name: "221"
+ value: "222"
+ path: "219"
+ port: -1167888910
+ scheme: .Q貇£ȹ嫰ƹǔw÷nI
+ initialDelaySeconds: -730174220
+ periodSeconds: 208045354
+ successThreshold: -270045321
tcpSocket:
- host: "222"
- port: "221"
- terminationGracePeriodSeconds: -378701183370790036
- timeoutSeconds: -1429994426
+ host: "224"
+ port: "223"
+ terminationGracePeriodSeconds: -5104272258468425858
+ timeoutSeconds: 433084615
stdin: true
stdinOnce: true
- terminationMessagePath: "236"
- terminationMessagePolicy: 焗捏
+ terminationMessagePath: "240"
+ terminationMessagePolicy: zɟ踡肒Ao/樝fw[Řż丩ŽoǠ
volumeDevices:
- devicePath: "200"
name: "199"
@@ -730,67 +754,69 @@ template:
subPath: "197"
subPathExpr: "198"
workingDir: "179"
- nodeName: "390"
+ nodeName: "401"
nodeSelector:
- "386": "387"
+ "397": "398"
os:
- name: 脡ǯ?b砸ƻ舁Ȁ贠ȇö匉
+ name: sʅ朁遐»`癸ƥf豯烠砖#囹J,R
overhead:
- <ƋlɋN磋镮ȺPÈɥ偁髕ģƗ: "283"
- preemptionPolicy: 梊蝴.Ĉ马āƭw鰕ǰ"șa
- priority: 878153992
- priorityClassName: "473"
+ 炳薝鴠:X才à脡ǯ?b砸ƻ舁Ȁ贠ȇö匉: "452"
+ preemptionPolicy: ûŠl倳ţü¿Sʟ鍡
+ priority: -1756088332
+ priorityClassName: "484"
readinessGates:
- - conditionType: =ȑ-A敲ʉ
- restartPolicy: 鬷m罂
- runtimeClassName: "478"
- schedulerName: "468"
+ - conditionType: '#sM網'
+ restartPolicy: Ƃ9阠$嬏wy¶熀ďJZ漤ŗ坟Ů*劶?jĎ
values:
- - "410"
+ - "421"
matchFields:
- - key: "411"
- operator: ɴĶ烷Ľthp像-觗裓6Ř
+ - key: "422"
+ operator: 矕Ƈ
values:
- - "412"
- weight: 687140791
+ - "423"
+ weight: -299466656
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "405"
- operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3
+ - key: "416"
+ operator: ƺL肄$鬬$矐_敕ű嵞嬯
values:
- - "406"
+ - "417"
matchFields:
- - key: "407"
- operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿'
+ - key: "418"
+ operator: 姰l咑耖p^鏋蛹Ƚȿ
values:
- - "408"
+ - "419"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
- operator: In
- values:
- - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
+ - key: yps4483-o--3f1p7--43nw-l-x18mtb/mLlx...w_t-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpH
+ operator: DoesNotExist
matchLabels:
- z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
+ nn093-pi-9o-l4-vo5byp8q-sf1--gw-jz/F_06.eqk5L: 3zHw.H__V.Vz_6.Hz_V_.r_v_._e_7
namespaceSelector:
matchExpressions:
- - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
- operator: In
- values:
- - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
+ operator: Exists
matchLabels:
- vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
+ t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/VT3sn-0_.i__a.O2G_-_K-.03.mp.1: 47M7d
namespaces:
- - "433"
- topologyKey: "434"
- weight: 888976270
+ - "444"
+ topologyKey: "445"
+ weight: -2092358209
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o
- operator: In
+ - key: r..6WV
+ operator: NotIn
values:
- - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
+ - c-r.E__-.8_e_l2.._8s--7_3x_-J_....7
matchLabels:
- "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7
+ x1.99: 8Ms7_t.P_3..H..k9M86.9a_-0R_.D
namespaceSelector:
matchExpressions:
- - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
+ - key: pq..--3QC1--L--v_Z--Zg-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOW
operator: Exists
matchLabels:
- 4eq5: ""
+ lp9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_W: 0Q4_.84.K_-_02
namespaces:
- - "419"
- topologyKey: "420"
+ - "430"
+ topologyKey: "431"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 6W74-R_Z_Tz.a3_Ho
+ - key: nz4063---k1b6x91-0f-w8l--7c17--f9/9-_.m7-Q____vSW_4-___-_--ux_E4-.-Pe
operator: Exists
matchLabels:
- n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
+ T: H--.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkIm
namespaceSelector:
matchExpressions:
- - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
- operator: In
- values:
- - x3___-..f5-6x-_-o_6O_If-5_-_.F
+ - key: r.8U.V_p61-d_O-Ynu.7.._B-ksd
+ operator: Exists
matchLabels:
- h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
+ ? f81-ssml-3-b--x-8234jscfajzc476b---nhc50-de2qh2b.e1-i-60a---9--n8i64t1-4----c-----35---1--e/7B__.QiA6._3o_V-w._-0d__7.81_-._-_8_.._._a-.N.__-_._.l
+ : h8.G__B.36
namespaces:
- - "461"
- topologyKey: "462"
- weight: -1668452490
+ - "472"
+ topologyKey: "473"
+ weight: -2011137790
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
- operator: Exists
+ - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ operator: DoesNotExist
matchLabels:
- 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
+ 1.YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
namespaceSelector:
matchExpressions:
- - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
+ - key: 4dw-buv-f55-2k2-e-443m678-2v89-z8.ts-63z-v--8r-0-2--rad877gr62cg6/E-Z0_TM_6
operator: In
values:
- - V._qN__A_f_-B3_U__L.KH6K.RwsfI2
+ - bG-_-8Qi..9-4.2KF
matchLabels:
- u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
+ 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g: K..2bidF.-u
namespaces:
- - "447"
- topologyKey: "448"
+ - "458"
+ topologyKey: "459"
automountServiceAccountToken: true
containers:
- args:
- - "250"
+ - "253"
command:
- - "249"
+ - "252"
env:
- - name: "257"
- value: "258"
+ - name: "260"
+ value: "261"
valueFrom:
configMapKeyRef:
- key: "264"
- name: "263"
- optional: true
- fieldRef:
- apiVersion: "259"
- fieldPath: "260"
- resourceFieldRef:
- containerName: "261"
- divisor: "730"
- resource: "262"
- secretKeyRef:
- key: "266"
- name: "265"
+ key: "267"
+ name: "266"
optional: false
+ fieldRef:
+ apiVersion: "262"
+ fieldPath: "263"
+ resourceFieldRef:
+ containerName: "264"
+ divisor: "800"
+ resource: "265"
+ secretKeyRef:
+ key: "269"
+ name: "268"
+ optional: true
envFrom:
- configMapRef:
- name: "255"
- optional: true
- prefix: "254"
- secretRef:
- name: "256"
+ name: "258"
optional: false
- image: "248"
- imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮
+ prefix: "257"
+ secretRef:
+ name: "259"
+ optional: true
+ image: "251"
lifecycle:
postStart:
exec:
command:
- - "294"
- httpGet:
- host: "296"
- httpHeaders:
- - name: "297"
- value: "298"
- path: "295"
- port: 50696420
- scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ
- tcpSocket:
- host: "299"
- port: 802134138
- preStop:
- exec:
- command:
- - "300"
+ - "299"
httpGet:
host: "302"
httpHeaders:
- name: "303"
value: "304"
- path: "301"
- port: -126958936
- scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻
+ path: "300"
+ port: "301"
+ scheme: 皧V垾现葢ŵ橨鬶l獕;跣Hǝcw
tcpSocket:
- host: "306"
- port: "305"
+ host: "305"
+ port: -374766088
+ preStop:
+ exec:
+ command:
+ - "306"
+ httpGet:
+ host: "309"
+ httpHeaders:
+ - name: "310"
+ value: "311"
+ path: "307"
+ port: "308"
+ tcpSocket:
+ host: "312"
+ port: 1909548849
livenessProbe:
exec:
command:
- - "273"
- failureThreshold: -787458357
+ - "276"
+ failureThreshold: -1257509355
+ gRPC:
+ port: 319766081
+ service: "282"
httpGet:
- host: "275"
+ host: "278"
httpHeaders:
- - name: "276"
- value: "277"
- path: "274"
- port: 14304392
- scheme: 寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥贸碔
- initialDelaySeconds: -1296830577
- periodSeconds: 1174240097
- successThreshold: -1928016742
+ - name: "279"
+ value: "280"
+ path: "277"
+ port: 972978563
+ scheme: ȨŮ+朷Ǝ膯
+ initialDelaySeconds: -1355476687
+ periodSeconds: -1558851751
+ successThreshold: -940414829
tcpSocket:
- host: "279"
- port: "278"
- terminationGracePeriodSeconds: 342609112008782456
- timeoutSeconds: -1314967760
- name: "247"
+ host: "281"
+ port: -1506633471
+ terminationGracePeriodSeconds: 2007000972845989054
+ timeoutSeconds: 881490079
+ name: "250"
ports:
- - containerPort: -805795167
- hostIP: "253"
- hostPort: -1643733106
- name: "252"
- protocol: 8Ƥ熪军g>郵[+
+ - containerPort: -2717401
+ hostIP: "256"
+ hostPort: -1905643191
+ name: "255"
+ protocol: ɳɷ9Ì
readinessProbe:
exec:
command:
- - "280"
- failureThreshold: 1907998540
+ - "283"
+ failureThreshold: 591440053
+ gRPC:
+ port: 582041100
+ service: "290"
httpGet:
- host: "282"
+ host: "285"
httpHeaders:
- - name: "283"
- value: "284"
- path: "281"
- port: -528664199
- scheme: 徥淳4揻-$ɽ丟
- initialDelaySeconds: 468369166
- periodSeconds: 1492642476
- successThreshold: -367153801
+ - name: "286"
+ value: "287"
+ path: "284"
+ port: 415947324
+ scheme: v铿ʩȂ4ē鐭#嬀ơŸ8T 苧yñ
+ initialDelaySeconds: 509188266
+ periodSeconds: 1574967021
+ successThreshold: -244758593
tcpSocket:
- host: "286"
- port: "285"
- terminationGracePeriodSeconds: 8959437085840841638
- timeoutSeconds: 1909548849
+ host: "289"
+ port: "288"
+ terminationGracePeriodSeconds: 446975960103225489
+ timeoutSeconds: -940514142
resources:
limits:
- 1虊谇j爻ƙt叀碧闳ȩr嚧ʣq: "431"
+ pw: "934"
requests:
- ē鐭#嬀ơŸ8T 苧yñKJɐ: "894"
+ 輓Ɔȓ蹣ɐǛv+8: "375"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- - 嘢4ʗN,丽饾| 鞤ɱďW賁
+ - 訆ƎżŧL²sNƗ¸gĩ餠籲磣
drop:
- - ɭɪǹ0衷,
+ - 'ƿ頀"冓鍓贯澔 '
privileged: true
- procMount: w妕眵笭/9崍h趭(娕
- readOnlyRootFilesystem: true
- runAsGroup: -7146044409185304665
- runAsNonRoot: false
- runAsUser: -1119183212148951030
+ procMount: ǵɐ鰥Z
+ readOnlyRootFilesystem: false
+ runAsGroup: 217739466937954194
+ runAsNonRoot: true
+ runAsUser: -6078441689118311403
seLinuxOptions:
- level: "311"
- role: "309"
- type: "310"
- user: "308"
+ level: "317"
+ role: "315"
+ type: "316"
+ user: "314"
seccompProfile:
- localhostProfile: "315"
- type: E增猍
+ localhostProfile: "321"
+ type: ´DÒȗÔÂɘɢ鬍熖B芭花ª瘡
windowsOptions:
- gmsaCredentialSpec: "313"
- gmsaCredentialSpecName: "312"
- hostProcess: true
- runAsUserName: "314"
+ gmsaCredentialSpec: "319"
+ gmsaCredentialSpecName: "318"
+ hostProcess: false
+ runAsUserName: "320"
startupProbe:
exec:
command:
- - "287"
- failureThreshold: -385597677
+ - "291"
+ failureThreshold: -1471289102
+ gRPC:
+ port: -125932767
+ service: "298"
httpGet:
- host: "290"
+ host: "294"
httpHeaders:
- - name: "291"
- value: "292"
- path: "288"
- port: "289"
- scheme: M蘇KŅ/»頸+SÄ蚃ɣľ)酊龨δ
- initialDelaySeconds: -1971421078
- periodSeconds: -1730959016
- successThreshold: 1272940694
+ - name: "295"
+ value: "296"
+ path: "292"
+ port: "293"
+ scheme: '|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ朦 w'
+ initialDelaySeconds: -18758819
+ periodSeconds: -282193676
+ successThreshold: 1777326813
tcpSocket:
- host: "293"
- port: 458427807
- terminationGracePeriodSeconds: 1813049096022212391
- timeoutSeconds: 1905181464
- terminationMessagePath: "307"
- terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS
+ host: "297"
+ port: 432291364
+ terminationGracePeriodSeconds: 3024893073780181445
+ timeoutSeconds: -1666819085
+ terminationMessagePath: "313"
+ terminationMessagePolicy: 4Ǒ輂,ŕĪ
+ tty: true
volumeDevices:
- - devicePath: "272"
- name: "271"
+ - devicePath: "275"
+ name: "274"
volumeMounts:
- - mountPath: "268"
- mountPropagation: û咡W<敄lu|榝$î.Ȏ蝪ʜ5
- name: "267"
- subPath: "269"
- subPathExpr: "270"
- workingDir: "251"
+ - mountPath: "271"
+ mountPropagation: 颐o
+ name: "270"
+ subPath: "272"
+ subPathExpr: "273"
+ workingDir: "254"
dnsConfig:
nameservers:
- - "475"
+ - "486"
options:
- - name: "477"
- value: "478"
+ - name: "488"
+ value: "489"
searches:
- - "476"
- dnsPolicy: h`職铳s44矕Ƈ
- enableServiceLinks: false
+ - "487"
+ dnsPolicy: ą&疀ȼN翾ȾD虓氙磂tńČ
+ enableServiceLinks: true
ephemeralContainers:
- args:
- - "319"
+ - "325"
command:
- - "318"
+ - "324"
env:
- - name: "326"
- value: "327"
+ - name: "332"
+ value: "333"
valueFrom:
configMapKeyRef:
- key: "333"
- name: "332"
+ key: "339"
+ name: "338"
optional: false
fieldRef:
- apiVersion: "328"
- fieldPath: "329"
+ apiVersion: "334"
+ fieldPath: "335"
resourceFieldRef:
- containerName: "330"
- divisor: "179"
- resource: "331"
+ containerName: "336"
+ divisor: "372"
+ resource: "337"
secretKeyRef:
- key: "335"
- name: "334"
- optional: false
+ key: "341"
+ name: "340"
+ optional: true
envFrom:
- configMapRef:
- name: "324"
+ name: "330"
optional: true
- prefix: "323"
+ prefix: "329"
secretRef:
- name: "325"
+ name: "331"
optional: true
- image: "317"
- imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
+ image: "323"
+ imagePullPolicy: Ȝv1b繐汚磉反-n覦灲閈誹ʅ蕉ɼ搳ǭ
lifecycle:
postStart:
exec:
command:
- - "363"
+ - "374"
httpGet:
- host: "366"
+ host: "376"
httpHeaders:
- - name: "367"
- value: "368"
- path: "364"
- port: "365"
- scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj'
+ - name: "377"
+ value: "378"
+ path: "375"
+ port: 1031506256
tcpSocket:
- host: "369"
- port: 1333166203
+ host: "380"
+ port: "379"
preStop:
exec:
command:
- - "370"
+ - "381"
httpGet:
- host: "372"
+ host: "384"
httpHeaders:
- - name: "373"
- value: "374"
- path: "371"
- port: 758604605
- scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑
+ - name: "385"
+ value: "386"
+ path: "382"
+ port: "383"
+ scheme: ğ Ņ#耗Ǚ(
tcpSocket:
- host: "376"
- port: "375"
+ host: "387"
+ port: 317211081
livenessProbe:
exec:
command:
- - "342"
- failureThreshold: -313085430
- httpGet:
- host: "344"
- httpHeaders:
- - name: "345"
- value: "346"
- path: "343"
- port: -684167223
- scheme: 1b
- initialDelaySeconds: -47594442
- periodSeconds: 725624946
- successThreshold: -34803208
- tcpSocket:
- host: "348"
- port: "347"
- terminationGracePeriodSeconds: -7686796864837350582
- timeoutSeconds: -2064284357
- name: "316"
- ports:
- - containerPort: -1320027474
- hostIP: "322"
- hostPort: 601942575
- name: "321"
- protocol: Ƶf
- readinessProbe:
- exec:
- command:
- - "349"
- failureThreshold: -1844150067
+ - "348"
+ failureThreshold: 403603802
+ gRPC:
+ port: 2074529439
+ service: "356"
httpGet:
host: "351"
httpHeaders:
- name: "352"
value: "353"
- path: "350"
- port: 1611386356
- scheme: ɼ搳ǭ濑箨ʨIk(
- initialDelaySeconds: 1984241264
- periodSeconds: -487434422
- successThreshold: -370404018
+ path: "349"
+ port: "350"
+ scheme: CV擭銆jʒǚ鍰\縑ɀ
+ initialDelaySeconds: -572649441
+ periodSeconds: 2084371155
+ successThreshold: 935886668
tcpSocket:
- host: "354"
- port: 2115799218
- terminationGracePeriodSeconds: 1778358283914418699
- timeoutSeconds: -758033170
+ host: "355"
+ port: "354"
+ terminationGracePeriodSeconds: 6168528947821987417
+ timeoutSeconds: 829995028
+ name: "322"
+ ports:
+ - containerPort: -992558278
+ hostIP: "328"
+ hostPort: 657418949
+ name: "327"
+ protocol: 鯂²静
+ readinessProbe:
+ exec:
+ command:
+ - "357"
+ failureThreshold: -115381263
+ gRPC:
+ port: 129997413
+ service: "365"
+ httpGet:
+ host: "360"
+ httpHeaders:
+ - name: "361"
+ value: "362"
+ path: "358"
+ port: "359"
+ scheme: ƷƣMț
+ initialDelaySeconds: 257855378
+ periodSeconds: 872525702
+ successThreshold: 310594543
+ tcpSocket:
+ host: "364"
+ port: "363"
+ terminationGracePeriodSeconds: -9064252153757561512
+ timeoutSeconds: -1158164196
resources:
limits:
- 阎l: "464"
+ C"6x$1s: "463"
requests:
- '''佉': "633"
+ 涬P蜷ɔ幩šeSvE: "491"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á
+ - ʨIk(dŊiɢzĮ蛋I滞
drop:
- - tl敷斢杧ż鯀
- privileged: true
- procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰
- readOnlyRootFilesystem: false
- runAsGroup: -6950412587983829837
+ - 耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨǔ
+ privileged: false
+ procMount: ǰ廋i乳'ȘUɻ;襕ċ桉桃喕
+ readOnlyRootFilesystem: true
+ runAsGroup: 7188853363477864065
runAsNonRoot: true
- runAsUser: -3379825899840103887
+ runAsUser: 5238333428019385807
seLinuxOptions:
- level: "381"
- role: "379"
- type: "380"
- user: "378"
+ level: "392"
+ role: "390"
+ type: "391"
+ user: "389"
seccompProfile:
- localhostProfile: "385"
- type: 咑耖p^鏋蛹Ƚȿ醏g
+ localhostProfile: "396"
+ type: $ɛ溢臜裡×銵-紑浘牬
windowsOptions:
- gmsaCredentialSpec: "383"
- gmsaCredentialSpecName: "382"
+ gmsaCredentialSpec: "394"
+ gmsaCredentialSpecName: "393"
hostProcess: true
- runAsUserName: "384"
+ runAsUserName: "395"
startupProbe:
exec:
command:
- - "355"
- failureThreshold: -320410537
+ - "366"
+ failureThreshold: -342387625
+ gRPC:
+ port: 601942575
+ service: "373"
httpGet:
- host: "358"
+ host: "368"
httpHeaders:
- - name: "359"
- value: "360"
- path: "356"
- port: "357"
- scheme: 焬CQm坊柩
- initialDelaySeconds: -135823101
- periodSeconds: 1141812777
- successThreshold: -1830926023
+ - name: "369"
+ value: "370"
+ path: "367"
+ port: -1396197931
+ scheme: ʓ)ǂť嗆u8晲T
+ initialDelaySeconds: -1320027474
+ periodSeconds: 2112112129
+ successThreshold: 528603974
tcpSocket:
- host: "362"
- port: "361"
- terminationGracePeriodSeconds: 8766190045617353809
- timeoutSeconds: -1345219897
- targetContainerName: "386"
- terminationMessagePath: "377"
- terminationMessagePolicy: 釼aTGÒ鵌
- tty: true
+ host: "372"
+ port: "371"
+ terminationGracePeriodSeconds: 7999187157758442620
+ timeoutSeconds: -1750169306
+ stdin: true
+ targetContainerName: "397"
+ terminationMessagePath: "388"
+ terminationMessagePolicy: fŭƽ眝{
volumeDevices:
- - devicePath: "341"
- name: "340"
+ - devicePath: "347"
+ name: "346"
volumeMounts:
- - mountPath: "337"
- mountPropagation: (ť1ùfŭƽ
- name: "336"
- subPath: "338"
- subPathExpr: "339"
- workingDir: "320"
+ - mountPath: "343"
+ mountPropagation: h4ɊHȖ|ʐ
+ name: "342"
+ readOnly: true
+ subPath: "344"
+ subPathExpr: "345"
+ workingDir: "326"
hostAliases:
- hostnames:
- - "473"
- ip: "472"
- hostIPC: true
- hostname: "403"
+ - "484"
+ ip: "483"
+ hostNetwork: true
+ hostname: "414"
imagePullSecrets:
- - name: "402"
+ - name: "413"
initContainers:
- args:
- "180"
@@ -585,43 +597,46 @@ spec:
name: "186"
optional: true
image: "178"
- imagePullPolicy: 悮坮Ȣ幟ļ腻ŬƩȿ0矀Kʝ瘴I\p
+ imagePullPolicy: vt莭琽§ć\ ïì«
lifecycle:
postStart:
exec:
command:
- - "223"
+ - "227"
httpGet:
- host: "225"
- httpHeaders:
- - name: "226"
- value: "227"
- path: "224"
- port: 1422435836
- scheme: ',ǿ飏騀呣ǎfǣ萭旿@掇lNdǂ'
- tcpSocket:
host: "229"
- port: "228"
+ httpHeaders:
+ - name: "230"
+ value: "231"
+ path: "228"
+ port: -188803670
+ scheme: 鐊瀑Ź9ǕLLȊɞ-uƻ悖ȩ0Ƹ
+ tcpSocket:
+ host: "233"
+ port: "232"
preStop:
exec:
command:
- - "230"
+ - "234"
httpGet:
- host: "233"
- httpHeaders:
- - name: "234"
- value: "235"
- path: "231"
- port: "232"
- scheme: Vȟ@7飣奺Ȋ礶惇¸t颟.鵫ǚ灄
- tcpSocket:
host: "237"
+ httpHeaders:
+ - name: "238"
+ value: "239"
+ path: "235"
port: "236"
+ scheme: '>5姣>懔%熷谟'
+ tcpSocket:
+ host: "240"
+ port: -1920661051
livenessProbe:
exec:
command:
- "203"
- failureThreshold: 208045354
+ failureThreshold: 304141309
+ gRPC:
+ port: -162264011
+ service: "210"
httpGet:
host: "206"
httpHeaders:
@@ -630,14 +645,14 @@ spec:
path: "204"
port: "205"
scheme: '{Ⱦdz@'
- initialDelaySeconds: 632397602
- periodSeconds: -730174220
- successThreshold: 433084615
+ initialDelaySeconds: 800220849
+ periodSeconds: 135036402
+ successThreshold: -1650568978
tcpSocket:
host: "209"
port: 406308963
- terminationGracePeriodSeconds: -1159835821828680707
- timeoutSeconds: 2026784878
+ terminationGracePeriodSeconds: -378701183370790036
+ timeoutSeconds: -1429994426
name: "177"
ports:
- containerPort: -614785801
@@ -647,24 +662,27 @@ spec:
readinessProbe:
exec:
command:
- - "210"
- failureThreshold: -820458255
+ - "211"
+ failureThreshold: -172174631
+ gRPC:
+ port: 192146389
+ service: "218"
httpGet:
- host: "212"
+ host: "214"
httpHeaders:
- - name: "213"
- value: "214"
- path: "211"
- port: 576428641
- scheme: ƯĖ漘Z剚敍0)鈼¬麄p呝T
- initialDelaySeconds: -1710454086
- periodSeconds: 1285027515
- successThreshold: 111876618
+ - name: "215"
+ value: "216"
+ path: "212"
+ port: "213"
+ scheme: 豎@ɀ羭,铻OŤǢʭ嵔棂p儼
+ initialDelaySeconds: 1285027515
+ periodSeconds: -820458255
+ successThreshold: -1109164040
tcpSocket:
- host: "215"
- port: -1891134534
- terminationGracePeriodSeconds: -4763823273964408583
- timeoutSeconds: 192146389
+ host: "217"
+ port: 973648295
+ terminationGracePeriodSeconds: 3861209808960510792
+ timeoutSeconds: 111876618
resources:
limits:
_瀹鞎sn芞QÄȻȊ+?: "193"
@@ -674,52 +692,55 @@ spec:
allowPrivilegeEscalation: false
capabilities:
add:
- - sĨɆâĺɗŹ倗S晒嶗U
+ - 枛牐ɺ皚|懥ƖN粕擓ƖHVe熼'F
drop:
- - _ƮA攤/ɸɎ R§耶FfBl
- privileged: true
- procMount: 娝嘚庎D}埽uʎȺ眖R#yV'
- readOnlyRootFilesystem: false
- runAsGroup: -7106791338981314910
+ - 剂讼ɓȌʟni酛3Ɓ
+ privileged: false
+ procMount: 鸖ɱJȉ罴ņ螡źȰ
+ readOnlyRootFilesystem: true
+ runAsGroup: 708875421817317137
runAsNonRoot: true
- runAsUser: 3850139838566476547
+ runAsUser: 4530581071337252406
seLinuxOptions:
- level: "242"
- role: "240"
- type: "241"
- user: "239"
+ level: "245"
+ role: "243"
+ type: "244"
+ user: "242"
seccompProfile:
- localhostProfile: "246"
- type: Kw(ğ儴Ůĺ}潷ʒ胵輓Ɔ
+ localhostProfile: "249"
+ type: $矡ȶ
windowsOptions:
- gmsaCredentialSpec: "244"
- gmsaCredentialSpecName: "243"
- hostProcess: true
- runAsUserName: "245"
+ gmsaCredentialSpec: "247"
+ gmsaCredentialSpecName: "246"
+ hostProcess: false
+ runAsUserName: "248"
startupProbe:
exec:
command:
- - "216"
- failureThreshold: 105707873
+ - "219"
+ failureThreshold: 1972119760
+ gRPC:
+ port: 817152661
+ service: "226"
httpGet:
- host: "218"
- httpHeaders:
- - name: "219"
- value: "220"
- path: "217"
- port: -122979840
- scheme: 罁胾^拜Ȍzɟ踡肒Ao/樝fw[Řż丩
- initialDelaySeconds: 2045456786
- periodSeconds: -1537700150
- successThreshold: -1815868713
- tcpSocket:
host: "222"
+ httpHeaders:
+ - name: "223"
+ value: "224"
+ path: "220"
port: "221"
- terminationGracePeriodSeconds: -810905585400838367
- timeoutSeconds: 988932710
- stdin: true
- terminationMessagePath: "238"
- terminationMessagePolicy: ʤî萨zvt莭
+ scheme: 胾^拜Ȍzɟ踡肒Ao/
+ initialDelaySeconds: 872417348
+ periodSeconds: -716825709
+ successThreshold: -929354164
+ tcpSocket:
+ host: "225"
+ port: -245303037
+ terminationGracePeriodSeconds: 6797958612283157094
+ timeoutSeconds: -251118475
+ stdinOnce: true
+ terminationMessagePath: "241"
+ terminationMessagePolicy: 荶ljʁ揆ɘȌ脾嚏吐ĠLƐȤ藠3
tty: true
volumeDevices:
- devicePath: "202"
@@ -731,69 +752,67 @@ spec:
subPath: "199"
subPathExpr: "200"
workingDir: "181"
- nodeName: "391"
+ nodeName: "402"
nodeSelector:
- "387": "388"
+ "398": "399"
os:
- name: +&ɃB沅零șPî壣
+ name: 撄貶à圽榕ɹN
overhead:
- D傕Ɠ栊闔虝巒瀦ŕ: "124"
- preemptionPolicy: Iƭij韺ʧ>
- priority: 743241089
- priorityClassName: "474"
+ VPƻ涟雒驭堣Qw: "971"
+ preemptionPolicy: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
+ priority: -512304328
+ priorityClassName: "485"
readinessGates:
- - conditionType: 0yVA嬂刲;牆詒ĸąs
- restartPolicy: 飂廤Ƌʙcx
- runtimeClassName: "479"
- schedulerName: "469"
+ - conditionType: \紱A
+ restartPolicy: TGÒ鵌Ē3Nh×DJ
+ runtimeClassName: "490"
+ schedulerName: "480"
securityContext:
- fsGroup: 1712752437570220896
- fsGroupChangePolicy: ""
- runAsGroup: -4636770370363077377
+ fsGroup: 2097799378008387965
+ fsGroupChangePolicy: tl敷斢杧ż鯀
+ runAsGroup: 8150768530723749034
runAsNonRoot: false
- runAsUser: 5422399684456852309
+ runAsUser: 1443984735120029292
seLinuxOptions:
- level: "395"
- role: "393"
- type: "394"
- user: "392"
+ level: "406"
+ role: "404"
+ type: "405"
+ user: "403"
seccompProfile:
- localhostProfile: "401"
- type: '#'
+ localhostProfile: "412"
+ type: '''鸔ɧWǘ炙B餸硷'
supplementalGroups:
- - -5728960352366086876
+ - -4777827725116017226
sysctls:
- - name: "399"
- value: "400"
+ - name: "410"
+ value: "411"
windowsOptions:
- gmsaCredentialSpec: "397"
- gmsaCredentialSpecName: "396"
- hostProcess: false
- runAsUserName: "398"
- serviceAccount: "390"
- serviceAccountName: "389"
- setHostnameAsFQDN: true
+ gmsaCredentialSpec: "408"
+ gmsaCredentialSpecName: "407"
+ hostProcess: true
+ runAsUserName: "409"
+ serviceAccount: "401"
+ serviceAccountName: "400"
+ setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "404"
- terminationGracePeriodSeconds: -4767735291842597991
+ subdomain: "415"
+ terminationGracePeriodSeconds: -6534543348401656067
tolerations:
- - effect: '慰x:'
- key: "470"
- operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
- tolerationSeconds: 3362400521064014157
- value: "471"
+ - effect: f楯徰詞Ñ圅}R'ďį@PÞ姒
+ key: "481"
+ operator: /階ħ叟Vhæcr#猂=đÁŊ锱軈騱ț
+ tolerationSeconds: -8081161671131924492
+ value: "482"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- operator: In
- values:
- - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
+ - key: A.3V.Zu.f.-1q-I_i72Tx3___-..f5-6x-_-o_6O_If-5_-_._F-09z024
+ operator: DoesNotExist
matchLabels:
- 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
- maxSkew: -174245111
- topologyKey: "480"
- whenUnsatisfiable: ""
+ leR--9-_J-_.-e9fz87_2---2.E.p9-.-3.__a.bl_--..-._S-.-d: 6-...98m.p-kq.ByM1_..H1z..j_r
+ maxSkew: 1979727155
+ topologyKey: "491"
+ whenUnsatisfiable: 沨/
volumes:
- awsElasticBlockStore:
fsType: "45"
@@ -1050,14 +1069,14 @@ spec:
storagePolicyName: "101"
volumePath: "99"
status:
- availableReplicas: 1559072561
+ availableReplicas: -1969495731
conditions:
- - lastTransitionTime: "2124-10-20T09:17:54Z"
- message: "488"
- reason: "487"
- status: ŭ瘢颦z疵悡nȩ純z邜
- type: Y圻醆锛[M牍Ƃ氙吐ɝ鶼
- fullyLabeledReplicas: -1872689134
- observedGeneration: 5029735218517286947
- readyReplicas: 1791185938
- replicas: 157451826
+ - lastTransitionTime: "2440-09-08T19:27:20Z"
+ message: "499"
+ reason: "498"
+ status: 詒ĸąsƶńIƭij韺ʧ
+ type: 郫焮3ó緼Ŷ獃夕ƆIJª
+ fullyLabeledReplicas: -1972662645
+ observedGeneration: 7010637129919612247
+ readyReplicas: -1948613844
+ replicas: 1522257385
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json
index a61098b6444..b302211aa71 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.json
@@ -558,605 +558,645 @@
"port": 1714588921,
"host": "213"
},
- "initialDelaySeconds": -1246371817,
- "timeoutSeconds": 617318981,
- "periodSeconds": 432291364,
- "successThreshold": 676578360,
- "failureThreshold": -552281772,
- "terminationGracePeriodSeconds": -2910346974754087949
+ "gRPC": {
+ "port": -614161319,
+ "service": "214"
+ },
+ "initialDelaySeconds": 452673549,
+ "timeoutSeconds": 627670321,
+ "periodSeconds": -125932767,
+ "successThreshold": -18758819,
+ "failureThreshold": -1666819085,
+ "terminationGracePeriodSeconds": -1212012606981050727
},
"readinessProbe": {
"exec": {
"command": [
- "214"
+ "215"
]
},
"httpGet": {
- "path": "215",
- "port": 656200799,
- "host": "216",
+ "path": "216",
+ "port": "217",
+ "host": "218",
+ "scheme": "\u0026皥贸碔lNKƙ順\\E¦队偯",
"httpHeaders": [
{
- "name": "217",
- "value": "218"
+ "name": "219",
+ "value": "220"
}
]
},
"tcpSocket": {
- "port": "219",
- "host": "220"
+ "port": -316996074,
+ "host": "221"
},
- "initialDelaySeconds": -2165496,
- "timeoutSeconds": -1778952574,
- "periodSeconds": 1386255869,
- "successThreshold": -778272981,
- "failureThreshold": 2056774277,
- "terminationGracePeriodSeconds": -9219895030215397584
+ "gRPC": {
+ "port": -760292259,
+ "service": "222"
+ },
+ "initialDelaySeconds": -1164530482,
+ "timeoutSeconds": 1877574041,
+ "periodSeconds": 1430286749,
+ "successThreshold": -374766088,
+ "failureThreshold": -736151561,
+ "terminationGracePeriodSeconds": -6508463748290235837
},
"startupProbe": {
"exec": {
"command": [
- "221"
+ "223"
]
},
"httpGet": {
- "path": "222",
- "port": "223",
- "host": "224",
- "scheme": "鬶l獕;跣Hǝcw",
+ "path": "224",
+ "port": "225",
+ "host": "226",
+ "scheme": "颶妧Ö闊",
"httpHeaders": [
{
- "name": "225",
- "value": "226"
+ "name": "227",
+ "value": "228"
}
]
},
"tcpSocket": {
- "port": -374766088,
- "host": "227"
+ "port": "229",
+ "host": "230"
},
- "initialDelaySeconds": -736151561,
- "timeoutSeconds": -1515369804,
- "periodSeconds": -1856061695,
- "successThreshold": 1868683352,
- "failureThreshold": -1137436579,
- "terminationGracePeriodSeconds": 8876559635423161004
+ "gRPC": {
+ "port": -1984097455,
+ "service": "231"
+ },
+ "initialDelaySeconds": -253326525,
+ "timeoutSeconds": 567263590,
+ "periodSeconds": 887319241,
+ "successThreshold": 1559618829,
+ "failureThreshold": 1156888068,
+ "terminationGracePeriodSeconds": -5566612115749133989
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "228"
+ "232"
]
},
"httpGet": {
- "path": "229",
- "port": "230",
- "host": "231",
- "scheme": "ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ",
+ "path": "233",
+ "port": 1328165061,
+ "host": "234",
+ "scheme": "¸gĩ",
"httpHeaders": [
{
- "name": "232",
- "value": "233"
+ "name": "235",
+ "value": "236"
}
]
},
"tcpSocket": {
- "port": 1993268896,
- "host": "234"
+ "port": 1186392166,
+ "host": "237"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "238"
]
},
"httpGet": {
- "path": "236",
- "port": "237",
- "host": "238",
- "scheme": "ƿ頀\"冓鍓贯澔 ",
+ "path": "239",
+ "port": -1315487077,
+ "host": "240",
+ "scheme": "ğ_",
"httpHeaders": [
{
- "name": "239",
- "value": "240"
+ "name": "241",
+ "value": "242"
}
]
},
"tcpSocket": {
- "port": "241",
- "host": "242"
+ "port": "243",
+ "host": "244"
}
}
},
- "terminationMessagePath": "243",
- "terminationMessagePolicy": "6Ɖ飴ɎiǨź'",
- "imagePullPolicy": "{屿oiɥ嵐sC8?Ǻ",
+ "terminationMessagePath": "245",
+ "terminationMessagePolicy": "ëJ橈'琕鶫:顇ə娯Ȱ囌",
+ "imagePullPolicy": "ɐ鰥",
"securityContext": {
"capabilities": {
"add": [
- ";Nŕ璻Jih亏yƕ丆録²Ŏ"
+ "´DÒȗÔÂɘɢ鬍熖B芭花ª瘡"
],
"drop": [
- "/灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫"
+ "J"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "244",
- "role": "245",
- "type": "246",
- "level": "247"
+ "user": "246",
+ "role": "247",
+ "type": "248",
+ "level": "249"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "248",
- "gmsaCredentialSpec": "249",
- "runAsUserName": "250",
+ "gmsaCredentialSpecName": "250",
+ "gmsaCredentialSpec": "251",
+ "runAsUserName": "252",
"hostProcess": true
},
- "runAsUser": 4041264710404335706,
- "runAsGroup": 6453802934472477147,
+ "runAsUser": 8519266600558609398,
+ "runAsGroup": -8859267173741137425,
"runAsNonRoot": true,
"readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "šeSvEȤƏ埮pɵ{WOŭW灬pȭ",
+ "procMount": "nj汰8ŕİi騎C\"6x$1sȣ±p",
"seccompProfile": {
- "type": "V擭銆j",
- "localhostProfile": "251"
+ "type": "",
+ "localhostProfile": "253"
}
- }
+ },
+ "stdin": true,
+ "stdinOnce": true,
+ "tty": true
}
],
"containers": [
{
- "name": "252",
- "image": "253",
+ "name": "254",
+ "image": "255",
"command": [
- "254"
+ "256"
],
"args": [
- "255"
+ "257"
],
- "workingDir": "256",
+ "workingDir": "258",
"ports": [
{
- "name": "257",
- "hostPort": -1408385387,
- "containerPort": -1225881740,
- "protocol": "撑¼蠾8餑噭",
- "hostIP": "258"
+ "name": "259",
+ "hostPort": -1170565984,
+ "containerPort": -444561761,
+ "protocol": "5哇芆斩ìh4ɊHȖ|ʐş",
+ "hostIP": "260"
}
],
"envFrom": [
{
- "prefix": "259",
+ "prefix": "261",
"configMapRef": {
- "name": "260",
- "optional": true
+ "name": "262",
+ "optional": false
},
"secretRef": {
- "name": "261",
- "optional": false
+ "name": "263",
+ "optional": true
}
}
],
"env": [
{
- "name": "262",
- "value": "263",
+ "name": "264",
+ "value": "265",
"valueFrom": {
"fieldRef": {
- "apiVersion": "264",
- "fieldPath": "265"
+ "apiVersion": "266",
+ "fieldPath": "267"
},
"resourceFieldRef": {
- "containerName": "266",
- "resource": "267",
- "divisor": "834"
+ "containerName": "268",
+ "resource": "269",
+ "divisor": "219"
},
"configMapKeyRef": {
- "name": "268",
- "key": "269",
- "optional": true
- },
- "secretKeyRef": {
"name": "270",
"key": "271",
"optional": false
+ },
+ "secretKeyRef": {
+ "name": "272",
+ "key": "273",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "n(fǂǢ曣ŋayåe躒訙Ǫ": "12"
+ "丽饾| 鞤ɱď": "590"
},
"requests": {
- "(娕uE增猍": "264"
+ "噭DµņP)DŽ髐njʉBn(f": "584"
}
},
"volumeMounts": [
{
- "name": "272",
- "mountPath": "273",
- "subPath": "274",
- "mountPropagation": "irȎ3Ĕ\\ɢX鰨松",
- "subPathExpr": "275"
+ "name": "274",
+ "readOnly": true,
+ "mountPath": "275",
+ "subPath": "276",
+ "mountPropagation": "鑳w妕眵笭/9崍h趭",
+ "subPathExpr": "277"
}
],
"volumeDevices": [
{
- "name": "276",
- "devicePath": "277"
+ "name": "278",
+ "devicePath": "279"
}
],
"livenessProbe": {
"exec": {
"command": [
- "278"
+ "280"
]
},
"httpGet": {
- "path": "279",
- "port": "280",
- "host": "281",
- "scheme": "ɜ瞍阎lğ Ņ#耗Ǚ(",
+ "path": "281",
+ "port": 597943993,
+ "host": "282",
+ "scheme": "8",
"httpHeaders": [
{
- "name": "282",
- "value": "283"
+ "name": "283",
+ "value": "284"
}
]
},
"tcpSocket": {
- "port": 317211081,
- "host": "284"
+ "port": "285",
+ "host": "286"
},
- "initialDelaySeconds": -1934305215,
- "timeoutSeconds": -655359985,
- "periodSeconds": 875971520,
- "successThreshold": 161338049,
- "failureThreshold": 65094252,
- "terminationGracePeriodSeconds": -6831592407095063988
+ "gRPC": {
+ "port": -977348956,
+ "service": "287"
+ },
+ "initialDelaySeconds": -637630736,
+ "timeoutSeconds": 601942575,
+ "periodSeconds": -1320027474,
+ "successThreshold": -1750169306,
+ "failureThreshold": 2112112129,
+ "terminationGracePeriodSeconds": 2270336783402505634
},
"readinessProbe": {
"exec": {
"command": [
- "285"
+ "288"
]
},
"httpGet": {
- "path": "286",
- "port": -2126891601,
- "host": "287",
- "scheme": "l}Ñ蠂Ü[ƛ^輅9ɛ棕",
+ "path": "289",
+ "port": -239264629,
+ "host": "290",
+ "scheme": "ɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "291",
+ "value": "292"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": "293",
+ "host": "294"
},
- "initialDelaySeconds": 1660454722,
- "timeoutSeconds": -1317234078,
- "periodSeconds": -1347045470,
- "successThreshold": 1169580662,
- "failureThreshold": 404234347,
- "terminationGracePeriodSeconds": 8560122250231719622
+ "gRPC": {
+ "port": 626243488,
+ "service": "295"
+ },
+ "initialDelaySeconds": -1920304485,
+ "timeoutSeconds": -1842062977,
+ "periodSeconds": 1424401373,
+ "successThreshold": -531787516,
+ "failureThreshold": 2073630689,
+ "terminationGracePeriodSeconds": -3568583337361453338
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "296"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "ǚŜEuEy竬ʆɞ",
+ "path": "297",
+ "port": -894026356,
+ "host": "298",
+ "scheme": "繐汚磉反-n覦",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "299",
+ "value": "300"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "301",
+ "host": "302"
},
- "initialDelaySeconds": 336252010,
- "timeoutSeconds": 677650619,
- "periodSeconds": 930785927,
- "successThreshold": 1624098740,
- "failureThreshold": 1419787816,
- "terminationGracePeriodSeconds": -506227444233847191
+ "gRPC": {
+ "port": 413903479,
+ "service": "303"
+ },
+ "initialDelaySeconds": 1708236944,
+ "timeoutSeconds": -1192140557,
+ "periodSeconds": 1961354355,
+ "successThreshold": -1977635123,
+ "failureThreshold": 1660454722,
+ "terminationGracePeriodSeconds": -5657477284668711794
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "304"
]
},
"httpGet": {
- "path": "301",
- "port": "302",
- "host": "303",
- "scheme": "ĝ®EĨǔvÄÚ×p鬷",
+ "path": "305",
+ "port": 1190831814,
+ "host": "306",
+ "scheme": "dŊiɢ",
"httpHeaders": [
{
- "name": "304",
- "value": "305"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 1673908530,
- "host": "306"
+ "port": -370404018,
+ "host": "309"
}
},
"preStop": {
"exec": {
"command": [
- "307"
+ "310"
]
},
"httpGet": {
- "path": "308",
- "port": "309",
- "host": "310",
- "scheme": "żLj捲攻xƂ9阠$嬏wy¶熀",
+ "path": "311",
+ "port": 280878117,
+ "host": "312",
+ "scheme": "ɞȥ}礤铟怖ý萜Ǖ",
"httpHeaders": [
{
- "name": "311",
- "value": "312"
+ "name": "313",
+ "value": "314"
}
]
},
"tcpSocket": {
- "port": -1912967242,
- "host": "313"
+ "port": -1088996269,
+ "host": "315"
}
}
},
- "terminationMessagePath": "314",
- "terminationMessagePolicy": "漤ŗ坟",
- "imagePullPolicy": "-紑浘牬釼aTGÒ鵌",
+ "terminationMessagePath": "316",
+ "terminationMessagePolicy": "ƘƵŧ1ƟƓ宆!",
+ "imagePullPolicy": "×p鬷m罂o3ǰ廋i乳'ȘUɻ;",
"securityContext": {
"capabilities": {
"add": [
- "Nh×DJɶ羹ƞʓ%ʝ`ǭ"
+ "桉桃喕蠲$ɛ溢臜裡×"
],
"drop": [
- "ñ?卶滿筇ȟP:/a"
+ "-紑浘牬釼aTGÒ鵌"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "315",
- "role": "316",
- "type": "317",
- "level": "318"
+ "user": "317",
+ "role": "318",
+ "type": "319",
+ "level": "320"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "319",
- "gmsaCredentialSpec": "320",
- "runAsUserName": "321",
+ "gmsaCredentialSpecName": "321",
+ "gmsaCredentialSpec": "322",
+ "runAsUserName": "323",
"hostProcess": false
},
- "runAsUser": 308757565294839546,
- "runAsGroup": 5797412715505520759,
+ "runAsUser": -3539084410583519556,
+ "runAsGroup": 296399212346260204,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
- "allowPrivilegeEscalation": false,
- "procMount": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "ʓ%ʝ`ǭ躌ñ?卶滿筇ȟP:/",
"seccompProfile": {
- "type": "繽敮ǰ詀ǿ忀oɎƺ",
- "localhostProfile": "322"
+ "type": "殆诵H玲鑠ĭ$#卛8ð仁Q",
+ "localhostProfile": "324"
}
},
- "tty": true
+ "stdinOnce": true
}
],
"ephemeralContainers": [
{
- "name": "323",
- "image": "324",
+ "name": "325",
+ "image": "326",
"command": [
- "325"
+ "327"
],
"args": [
- "326"
+ "328"
],
- "workingDir": "327",
+ "workingDir": "329",
"ports": [
{
- "name": "328",
- "hostPort": 788093377,
- "containerPort": -557687916,
- "protocol": "_敕",
- "hostIP": "329"
+ "name": "330",
+ "hostPort": -846940406,
+ "containerPort": 2004993767,
+ "protocol": "Ű藛b磾sYȠ繽敮ǰ",
+ "hostIP": "331"
}
],
"envFrom": [
{
- "prefix": "330",
+ "prefix": "332",
"configMapRef": {
- "name": "331",
- "optional": true
+ "name": "333",
+ "optional": false
},
"secretRef": {
- "name": "332",
- "optional": false
+ "name": "334",
+ "optional": true
}
}
],
"env": [
{
- "name": "333",
- "value": "334",
+ "name": "335",
+ "value": "336",
"valueFrom": {
"fieldRef": {
- "apiVersion": "335",
- "fieldPath": "336"
+ "apiVersion": "337",
+ "fieldPath": "338"
},
"resourceFieldRef": {
- "containerName": "337",
- "resource": "338",
- "divisor": "971"
+ "containerName": "339",
+ "resource": "340",
+ "divisor": "121"
},
"configMapKeyRef": {
- "name": "339",
- "key": "340",
- "optional": true
- },
- "secretKeyRef": {
"name": "341",
"key": "342",
"optional": true
+ },
+ "secretKeyRef": {
+ "name": "343",
+ "key": "344",
+ "optional": false
}
}
}
],
"resources": {
"limits": {
- "湷D谹気Ƀ秮òƬɸĻo:{": "523"
+ "$矐_敕ű嵞嬯t{Eɾ敹Ȯ-": "642"
},
"requests": {
- "赮ǒđ\u003e*劶?jĎĭ¥#ƱÁR»": "929"
+ "蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx": "77"
}
},
"volumeMounts": [
{
- "name": "343",
- "readOnly": true,
- "mountPath": "344",
- "subPath": "345",
- "mountPropagation": "|ǓÓ敆OɈÏ 瞍髃",
- "subPathExpr": "346"
+ "name": "345",
+ "mountPath": "346",
+ "subPath": "347",
+ "mountPropagation": "¬h`職铳s44矕Ƈè*鑏='ʨ|",
+ "subPathExpr": "348"
}
],
"volumeDevices": [
{
- "name": "347",
- "devicePath": "348"
+ "name": "349",
+ "devicePath": "350"
}
],
"livenessProbe": {
"exec": {
"command": [
- "349"
+ "351"
]
},
"httpGet": {
- "path": "350",
- "port": "351",
- "host": "352",
- "scheme": "07曳wœj堑ūM鈱ɖ'蠨",
+ "path": "352",
+ "port": -592535081,
+ "host": "353",
+ "scheme": "fsǕT",
"httpHeaders": [
{
- "name": "353",
- "value": "354"
+ "name": "354",
+ "value": "355"
}
]
},
"tcpSocket": {
- "port": "355",
+ "port": -394464008,
"host": "356"
},
- "initialDelaySeconds": -242798806,
- "timeoutSeconds": -1940800545,
- "periodSeconds": 681004793,
- "successThreshold": 2002666266,
- "failureThreshold": -2033879721,
- "terminationGracePeriodSeconds": -4409241678312226730
+ "gRPC": {
+ "port": -839925309,
+ "service": "357"
+ },
+ "initialDelaySeconds": -526099499,
+ "timeoutSeconds": -1014296961,
+ "periodSeconds": 1708011112,
+ "successThreshold": -603097910,
+ "failureThreshold": 1776174141,
+ "terminationGracePeriodSeconds": -5794598592563963676
},
"readinessProbe": {
"exec": {
"command": [
- "357"
+ "358"
]
},
"httpGet": {
- "path": "358",
- "port": 279062028,
- "host": "359",
- "scheme": "Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p",
+ "path": "359",
+ "port": 134832144,
+ "host": "360",
+ "scheme": "Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍",
"httpHeaders": [
{
- "name": "360",
- "value": "361"
+ "name": "361",
+ "value": "362"
}
]
},
"tcpSocket": {
- "port": -943058206,
- "host": "362"
+ "port": -1289510276,
+ "host": "363"
},
- "initialDelaySeconds": 725557531,
- "timeoutSeconds": -703127031,
- "periodSeconds": 741667779,
- "successThreshold": -381344241,
- "failureThreshold": -2122876628,
- "terminationGracePeriodSeconds": 2700145646260085226
+ "gRPC": {
+ "port": 701103233,
+ "service": "364"
+ },
+ "initialDelaySeconds": 1995848794,
+ "timeoutSeconds": -281926929,
+ "periodSeconds": -372626292,
+ "successThreshold": 2018111855,
+ "failureThreshold": 1019901190,
+ "terminationGracePeriodSeconds": -6980960365540477247
},
"startupProbe": {
"exec": {
"command": [
- "363"
+ "365"
]
},
"httpGet": {
- "path": "364",
- "port": "365",
- "host": "366",
- "scheme": "thp像-",
+ "path": "366",
+ "port": "367",
+ "host": "368",
+ "scheme": "p蓋沥7uPƒw©ɴ",
"httpHeaders": [
{
- "name": "367",
- "value": "368"
+ "name": "369",
+ "value": "370"
}
]
},
"tcpSocket": {
- "port": "369",
- "host": "370"
+ "port": -671265235,
+ "host": "371"
},
- "initialDelaySeconds": 1589417286,
- "timeoutSeconds": 445878206,
- "periodSeconds": 1874051321,
- "successThreshold": -500012714,
- "failureThreshold": 1762917570,
- "terminationGracePeriodSeconds": 4794571970514469019
+ "gRPC": {
+ "port": 1782790310,
+ "service": "372"
+ },
+ "initialDelaySeconds": 1587036035,
+ "timeoutSeconds": 1760208172,
+ "periodSeconds": -59501664,
+ "successThreshold": 1261462387,
+ "failureThreshold": -1289875111,
+ "terminationGracePeriodSeconds": -7492770647593151162
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "371"
+ "373"
]
},
"httpGet": {
- "path": "372",
- "port": "373",
- "host": "374",
- "scheme": "b轫ʓ滨ĖRh}颉hȱɷȰW",
+ "path": "374",
+ "port": 1762917570,
+ "host": "375",
+ "scheme": "Ų買霎ȃň[\u003eą",
"httpHeaders": [
{
- "name": "375",
- "value": "376"
+ "name": "376",
+ "value": "377"
}
]
},
"tcpSocket": {
- "port": "377",
+ "port": 1414336865,
"host": "378"
}
},
@@ -1168,8 +1208,9 @@
},
"httpGet": {
"path": "380",
- "port": -1743587482,
+ "port": 1129006716,
"host": "381",
+ "scheme": "ȱɷȰW瀤oɢ嫎¸殚篎3",
"httpHeaders": [
{
"name": "382",
@@ -1178,104 +1219,101 @@
]
},
"tcpSocket": {
- "port": 858034123,
- "host": "384"
+ "port": "384",
+ "host": "385"
}
}
},
- "terminationMessagePath": "385",
- "terminationMessagePolicy": "喾@潷",
- "imagePullPolicy": "#t(ȗŜŲ\u0026洪y儕l",
+ "terminationMessagePath": "386",
+ "terminationMessagePolicy": "[y#t(",
"securityContext": {
"capabilities": {
"add": [
- "ɻŶJ詢"
+ "rƈa餖Ľ"
],
"drop": [
- "ǾɁ鍻G鯇ɀ魒Ð扬=惍E"
+ "淴ɑ?¶Ȳ"
]
},
- "privileged": false,
+ "privileged": true,
"seLinuxOptions": {
- "user": "386",
- "role": "387",
- "type": "388",
- "level": "389"
+ "user": "387",
+ "role": "388",
+ "type": "389",
+ "level": "390"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "390",
- "gmsaCredentialSpec": "391",
- "runAsUserName": "392",
- "hostProcess": false
+ "gmsaCredentialSpecName": "391",
+ "gmsaCredentialSpec": "392",
+ "runAsUserName": "393",
+ "hostProcess": true
},
- "runAsUser": -5071790362153704411,
- "runAsGroup": -2841141127223294729,
- "runAsNonRoot": false,
- "readOnlyRootFilesystem": false,
+ "runAsUser": 5200080507234099655,
+ "runAsGroup": 8544841476815986834,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": false,
- "procMount": ";Ƭ婦d%蹶/ʗp壥Ƥ",
+ "procMount": "œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ",
"seccompProfile": {
- "type": "郡ɑ鮽ǍJB膾扉A1襏櫯³",
- "localhostProfile": "393"
+ "type": "ʫį淓¯Ą0ƛ忀z委\u003e,趐V曡88 ",
+ "localhostProfile": "394"
}
},
"stdinOnce": true,
- "targetContainerName": "394"
+ "targetContainerName": "395"
}
],
- "restartPolicy": "刪q塨Ý-扚聧扈4ƫZɀȩ愉",
- "terminationGracePeriodSeconds": -1390311149947249535,
- "activeDeadlineSeconds": 2684251781701131156,
- "dnsPolicy": "厶s",
+ "restartPolicy": "荊ù灹8緔Tj§E蓋",
+ "terminationGracePeriodSeconds": -2019276087967685705,
+ "activeDeadlineSeconds": 9106348347596466980,
+ "dnsPolicy": "ȩ愉B",
"nodeSelector": {
- "395": "396"
+ "396": "397"
},
- "serviceAccountName": "397",
- "serviceAccount": "398",
+ "serviceAccountName": "398",
+ "serviceAccount": "399",
"automountServiceAccountToken": true,
- "nodeName": "399",
- "hostPID": true,
- "hostIPC": true,
- "shareProcessNamespace": true,
+ "nodeName": "400",
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "400",
- "role": "401",
- "type": "402",
- "level": "403"
+ "user": "401",
+ "role": "402",
+ "type": "403",
+ "level": "404"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "404",
- "gmsaCredentialSpec": "405",
- "runAsUserName": "406",
- "hostProcess": true
+ "gmsaCredentialSpecName": "405",
+ "gmsaCredentialSpec": "406",
+ "runAsUserName": "407",
+ "hostProcess": false
},
- "runAsUser": -3184085461588437523,
- "runAsGroup": -2037509302018919599,
+ "runAsUser": 231646691853926712,
+ "runAsGroup": 3044211288080348140,
"runAsNonRoot": true,
"supplementalGroups": [
- -885564056413671854
+ 7168071284072373028
],
- "fsGroup": 4301352137345790658,
+ "fsGroup": -640858663485353963,
"sysctls": [
{
- "name": "407",
- "value": "408"
+ "name": "408",
+ "value": "409"
}
],
- "fsGroupChangePolicy": "柱栦阫Ƈʥ椹",
+ "fsGroupChangePolicy": "氙'[\u003eĵ'o儿",
"seccompProfile": {
- "type": "飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i",
- "localhostProfile": "409"
+ "type": "銭u裡_Ơ9o",
+ "localhostProfile": "410"
}
},
"imagePullSecrets": [
{
- "name": "410"
+ "name": "411"
}
],
- "hostname": "411",
- "subdomain": "412",
+ "hostname": "412",
+ "subdomain": "413",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1283,19 +1321,19 @@
{
"matchExpressions": [
{
- "key": "413",
- "operator": "șƷK*ƌ驔瓊'",
+ "key": "414",
+ "operator": "ʛ饊ɣKIJWĶʗ{裦i÷ɷȤ砘",
"values": [
- "414"
+ "415"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "Mĕ霉}閜LIȜŚɇA%ɀ蓧",
+ "key": "416",
+ "operator": "K*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗ",
"values": [
- "416"
+ "417"
]
}
]
@@ -1304,23 +1342,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 836045166,
+ "weight": -1084193035,
"preference": {
"matchExpressions": [
{
- "key": "417",
- "operator": "ȋ灋槊盘",
+ "key": "418",
+ "operator": "",
"values": [
- "418"
+ "419"
]
}
],
"matchFields": [
{
- "key": "419",
- "operator": "牬庘颮6(",
+ "key": "420",
+ "operator": "",
"values": [
- "420"
+ "421"
]
}
]
@@ -1333,29 +1371,26 @@
{
"labelSelector": {
"matchLabels": {
- "8o1-x-1wl--7/S.ol": "Fgw_-z_659GE.l_.23--_6l.-5B"
+ "p8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/V.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8oJ": "46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e"
},
"matchExpressions": [
{
- "key": "z_o_2.--4Z7__i1T.miw_a",
- "operator": "NotIn",
- "values": [
- "At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t"
- ]
+ "key": "f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "427"
+ "428"
],
- "topologyKey": "428",
+ "topologyKey": "429",
"namespaceSelector": {
"matchLabels": {
- "5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL": "GIT_B"
+ "54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b": "E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa"
},
"matchExpressions": [
{
- "key": "8-b6E_--Y_Dp8O_._e_3_.4_Wh",
+ "key": "34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p",
"operator": "DoesNotExist"
}
]
@@ -1364,36 +1399,36 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -585767440,
+ "weight": -37906634,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "I_--.k47M7y-Dy__3wc.q.8_00.0_._f": "L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0"
+ "4.7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.eD": "5_.W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g"
},
"matchExpressions": [
{
- "key": "n",
+ "key": "cx-64dw-buvf.1g--1035ad1o-d-6-bk81-34s-s-63z-v--8r-0-2--rad877gr2/w_tdt_-Z0T",
"operator": "NotIn",
"values": [
- "a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP"
+ "g.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-U"
]
}
]
},
"namespaces": [
- "441"
+ "442"
],
- "topologyKey": "442",
+ "topologyKey": "443",
"namespaceSelector": {
"matchLabels": {
- "tO4-7-P41_.-.-AQ._r.-_R1": "8KLu..ly--J-_.ZCRT.0z-e"
+ "T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI": "I-mt4...rQ"
},
"matchExpressions": [
{
- "key": "34G._--u.._.105-4_ed-0-H",
- "operator": "NotIn",
+ "key": "vSW_4-__h",
+ "operator": "In",
"values": [
- "a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q"
+ "m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1"
]
}
]
@@ -1407,27 +1442,33 @@
{
"labelSelector": {
"matchLabels": {
- "3_Lsu-H_.f82-82": "dWNn_U-...1P_.D8_t..-Ww27"
+ "4-vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476b---nhc50-2/7_3o_V-w._-0d__7.81_-._-_8_.._.a": "L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.R"
},
"matchExpressions": [
{
- "key": "v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1",
- "operator": "DoesNotExist"
+ "key": "Q-.-.g-_Z_-nSLq",
+ "operator": "In",
+ "values": [
+ "lks7dG-9S-O62o.8._.---UK_-.j2z"
+ ]
}
]
},
"namespaces": [
- "455"
+ "456"
],
- "topologyKey": "456",
+ "topologyKey": "457",
"namespaceSelector": {
"matchLabels": {
- "8": "7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR"
+ "1p-06jVZ-uP.t_.O937uh": "j-dY7_M_-._M5..-N_H_55..--EO"
},
"matchExpressions": [
{
- "key": "y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7",
- "operator": "DoesNotExist"
+ "key": "F_o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.WxPc---K__-iguFGT._Y",
+ "operator": "NotIn",
+ "values": [
+ ""
+ ]
}
]
}
@@ -1435,31 +1476,37 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 339079271,
+ "weight": -1205967741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
+ "38vuo17qre-33-5-u8f0f1qv--i72-x3e.z-8-tcd2-84s-n-i-711s4--9s8--o-8dm---b----036/6M__4-Pg": "EI_4G"
},
"matchExpressions": [
{
- "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
- "operator": "Exists"
+ "key": "g--v8-c58kh44k-b13--522555-11jla8-phs1a--y.m4j1-10-p-4zk-63m-z235-af-3z6-ql----v-r8th/o._g_..o",
+ "operator": "NotIn",
+ "values": [
+ "C_60-__.19_-gYY._..fP--hQ7e"
+ ]
}
]
},
"namespaces": [
- "469"
+ "470"
],
- "topologyKey": "470",
+ "topologyKey": "471",
"namespaceSelector": {
"matchLabels": {
- "E35H__.B_E": "U..u8gwbk"
+ "3c9_4._U.kT-.---c---cO1_x.Pi.---l.---9._-__X2_w_bn..--_qD-J_.4": "u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D"
},
"matchExpressions": [
{
- "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
- "operator": "Exists"
+ "key": "KTlO.__0PX",
+ "operator": "In",
+ "values": [
+ "V6K_.3_583-6.f-.9-.V..Q-K_6_3"
+ ]
}
]
}
@@ -1468,66 +1515,64 @@
]
}
},
- "schedulerName": "477",
+ "schedulerName": "478",
"tolerations": [
{
- "key": "478",
- "operator": "ŭʔb'?舍ȃʥx臥]å摞",
- "value": "479",
- "tolerationSeconds": 3053978290188957517
+ "key": "479",
+ "operator": "Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏",
+ "value": "480",
+ "effect": "r埁摢噓涫祲ŗȨĽ堐mpƮ搌",
+ "tolerationSeconds": 6217170132371410053
}
],
"hostAliases": [
{
- "ip": "480",
+ "ip": "481",
"hostnames": [
- "481"
+ "482"
]
}
],
- "priorityClassName": "482",
- "priority": -340583156,
+ "priorityClassName": "483",
+ "priority": -1371816595,
"dnsConfig": {
"nameservers": [
- "483"
+ "484"
],
"searches": [
- "484"
+ "485"
],
"options": [
{
- "name": "485",
- "value": "486"
+ "name": "486",
+ "value": "487"
}
]
},
"readinessGates": [
{
- "conditionType": "țc£PAÎǨȨ栋"
+ "conditionType": "?ȣ4c"
}
],
- "runtimeClassName": "487",
+ "runtimeClassName": "488",
"enableServiceLinks": false,
- "preemptionPolicy": "n{鳻",
+ "preemptionPolicy": "%ǁšjƾ$ʛ螳%65c3盧Ŷb",
"overhead": {
- "隅DžbİEMǶɼ`|褞": "229"
+ "ʬÇ[輚趞ț@": "597"
},
"topologySpreadConstraints": [
{
- "maxSkew": 1486667065,
- "topologyKey": "488",
- "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
+ "maxSkew": 1762898358,
+ "topologyKey": "489",
+ "whenUnsatisfiable": "ʚʛ\u0026]ŶɄğɒơ舎",
"labelSelector": {
"matchLabels": {
- "H_55..--E3_2D-1DW__o_-.k": "7"
+ "5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w": "j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7"
},
"matchExpressions": [
{
- "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
- "operator": "NotIn",
- "values": [
- "H1z..j_.r3--T"
- ]
+ "key": "kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V",
+ "operator": "Exists"
}
]
}
@@ -1535,38 +1580,38 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "Ê"
+ "name": "%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ"
}
}
},
"updateStrategy": {
- "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
+ "type": "ʟ]mʦ獪霛圦Ƶ胐N砽§",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -463159422,
- "templateGeneration": 6610342178136989005,
- "revisionHistoryLimit": -1556190810
+ "minReadySeconds": 529770835,
+ "templateGeneration": -1750353206406420579,
+ "revisionHistoryLimit": -1039302739
},
"status": {
- "currentNumberScheduled": -487001726,
- "numberMisscheduled": 929611261,
- "desiredNumberScheduled": -1728725476,
- "numberReady": -36544080,
- "observedGeneration": 3978304359289858739,
- "updatedNumberScheduled": 1731921624,
- "numberAvailable": 826023875,
- "numberUnavailable": -780958866,
- "collisionCount": -1460952461,
+ "currentNumberScheduled": -89689385,
+ "numberMisscheduled": -1429991698,
+ "desiredNumberScheduled": 428205654,
+ "numberReady": 241736257,
+ "observedGeneration": 1604016029658400107,
+ "updatedNumberScheduled": -1402277158,
+ "numberAvailable": -1513836046,
+ "numberUnavailable": -1472909941,
+ "collisionCount": -755983292,
"conditions": [
{
- "type": "bCũw¼ ǫđ槴Ċį軠\u003e桼劑",
- "status": "Y9=ȳB鼲糰Eè6苁嗀ĕ佣8ç",
- "lastTransitionTime": "2885-07-28T14:08:43Z",
- "reason": "495",
- "message": "496"
+ "type": "ȑ",
+ "status": "ɘʘ?s檣ŝƚʤ\u003cƟʚ`÷",
+ "lastTransitionTime": "2825-03-21T02:40:56Z",
+ "reason": "496",
+ "message": "497"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb
index 4e419c95e86..6f3029db717 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml
index 22b314f98c8..3c6c1b9ba23 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.DaemonSet.yaml
@@ -31,8 +31,8 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -463159422
- revisionHistoryLimit: -1556190810
+ minReadySeconds: 529770835
+ revisionHistoryLimit: -1039302739
selector:
matchExpressions:
- key: p503---477-49p---o61---4fy--9---7--9-9s-0-u5lj2--10pq-0-7-9-2-0/fP81.-.9Vdx.TB_M-H_5_.t..bG0
@@ -73,350 +73,366 @@ spec:
selfLink: "29"
uid: TʡȂŏ{sǡƟ
spec:
- activeDeadlineSeconds: 2684251781701131156
+ activeDeadlineSeconds: 9106348347596466980
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "417"
- operator: ȋ灋槊盘
+ - key: "418"
+ operator: ""
values:
- - "418"
+ - "419"
matchFields:
- - key: "419"
- operator: 牬庘颮6(
+ - key: "420"
+ operator: ""
values:
- - "420"
- weight: 836045166
+ - "421"
+ weight: -1084193035
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "413"
- operator: șƷK*ƌ驔瓊'
+ - key: "414"
+ operator: ʛ饊ɣKIJWĶʗ{裦i÷ɷȤ砘
values:
- - "414"
+ - "415"
matchFields:
- - key: "415"
- operator: Mĕ霉}閜LIȜŚɇA%ɀ蓧
+ - key: "416"
+ operator: K*ƌ驔瓊'轁ʦ婷ɂ挃ŪǗ
values:
- - "416"
+ - "417"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: "n"
+ - key: cx-64dw-buvf.1g--1035ad1o-d-6-bk81-34s-s-63z-v--8r-0-2--rad877gr2/w_tdt_-Z0T
operator: NotIn
values:
- - a68-7AlR__8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-EP
+ - g.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-U
matchLabels:
- I_--.k47M7y-Dy__3wc.q.8_00.0_._f: L-__bf_9_-C-PfNx__-U_.Pn-W23-_.z_.._s--_F-BR0
+ 4.7CY-_dc__G6N-_-0o.0C_gV.9_G-.-z1Y_HEb.9x98MM7-.eD: 5_.W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
namespaceSelector:
matchExpressions:
- - key: 34G._--u.._.105-4_ed-0-H
- operator: NotIn
+ - key: vSW_4-__h
+ operator: In
values:
- - a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9n.p.2-.-Qw__YT.1q
+ - m_-Z.wc..k_0_5.z.0..__D-1b.-9.Y0-_-.l__.c17__f_-336-.B_1
matchLabels:
- tO4-7-P41_.-.-AQ._r.-_R1: 8KLu..ly--J-_.ZCRT.0z-e
+ T-4CwMqp..__._-J_-fk3-_j.133eT_2_tI: I-mt4...rQ
namespaces:
- - "441"
- topologyKey: "442"
- weight: -585767440
+ - "442"
+ topologyKey: "443"
+ weight: -37906634
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: z_o_2.--4Z7__i1T.miw_a
- operator: NotIn
- values:
- - At-_.5.40Rw4gD.._.-x6db-L7.-__-G_2kCpS__.39g_.t
- matchLabels:
- 8o1-x-1wl--7/S.ol: Fgw_-z_659GE.l_.23--_6l.-5B
- namespaceSelector:
- matchExpressions:
- - key: 8-b6E_--Y_Dp8O_._e_3_.4_Wh
+ - key: f2t-m839-qr-7----rgvf3q-z-5z80n--t5--9-4-d2-w/w0_.i__a.O2G_-_K-.03.mp.-10KkQ-R_R.-.--4_ITO
operator: DoesNotExist
matchLabels:
- 5gp-c-coa--y--4-1204wrb---1024g-5-3v9-9jcz9f-64/M-_x18mtxb__-ex-_1_-ODgL: GIT_B
+ ? p8q-sf1--gw-jz-659--0l-023bm-6l2e5---k5v3a---ez-o-u.s11-7p--3zm-lx300w-tj-35840-w4g-27-5sx6dbp-72q--m--28/V.V1-rU.___06.eqk5E_-4-.XH-.k.7.l_-W8oJ
+ : 46.-y-s4483Po_L3f1-7_O4.nw_-_x18mtxb__e
+ namespaceSelector:
+ matchExpressions:
+ - key: 34-5-yqu20-9105g4-edj0fh/8C4_-_2G0.-c_C.G.h--m._fN._k8__._p
+ operator: DoesNotExist
+ matchLabels:
+ 54-br5r---r8oh782-u---76g---h-4-lx-0-2qg-4.94s-6-k57/8..-__--.k47M7y-Dy__3wc.q.8_00.0_._.-_L-_b: E_8-7_-YD-Q9_-__..YNFu7Pg-.814e-_07-ht-E6___-X__H.-39-A_-_l67Qa
namespaces:
- - "427"
- topologyKey: "428"
+ - "428"
+ topologyKey: "429"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
- operator: Exists
+ - key: g--v8-c58kh44k-b13--522555-11jla8-phs1a--y.m4j1-10-p-4zk-63m-z235-af-3z6-ql----v-r8th/o._g_..o
+ operator: NotIn
+ values:
+ - C_60-__.19_-gYY._..fP--hQ7e
matchLabels:
- ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
+ 38vuo17qre-33-5-u8f0f1qv--i72-x3e.z-8-tcd2-84s-n-i-711s4--9s8--o-8dm---b----036/6M__4-Pg: EI_4G
namespaceSelector:
matchExpressions:
- - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
- operator: Exists
+ - key: KTlO.__0PX
+ operator: In
+ values:
+ - V6K_.3_583-6.f-.9-.V..Q-K_6_3
matchLabels:
- E35H__.B_E: U..u8gwbk
+ 3c9_4._U.kT-.---c---cO1_x.Pi.---l.---9._-__X2_w_bn..--_qD-J_.4: u0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.o_e-d92e8S_-0D
namespaces:
- - "469"
- topologyKey: "470"
- weight: 339079271
+ - "470"
+ topologyKey: "471"
+ weight: -1205967741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: v.-_.4dwFbuvEf55Y2k.F-F..3m6.._2v89U--8.3N_.1
- operator: DoesNotExist
+ - key: Q-.-.g-_Z_-nSLq
+ operator: In
+ values:
+ - lks7dG-9S-O62o.8._.---UK_-.j2z
matchLabels:
- 3_Lsu-H_.f82-82: dWNn_U-...1P_.D8_t..-Ww27
+ 4-vi9g-dn---6-81-ssml-3-b--x-8234jscfajzc476b---nhc50-2/7_3o_V-w._-0d__7.81_-._-_8_.._.a: L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.R
namespaceSelector:
matchExpressions:
- - key: y72r--49u-0m7uu/x_qv4--_.6_N_9X-B.s8.N_rM-k5.C.7
- operator: DoesNotExist
+ - key: F_o_-._kzB7U_.Q.45cy-.._-__-Zvt.LT60v.WxPc---K__-iguFGT._Y
+ operator: NotIn
+ values:
+ - ""
matchLabels:
- "8": 7--.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lq-.5-s_-_5_DR
+ 1p-06jVZ-uP.t_.O937uh: j-dY7_M_-._M5..-N_H_55..--EO
namespaces:
- - "455"
- topologyKey: "456"
+ - "456"
+ topologyKey: "457"
automountServiceAccountToken: true
containers:
- args:
- - "255"
+ - "257"
command:
- - "254"
+ - "256"
env:
- - name: "262"
- value: "263"
+ - name: "264"
+ value: "265"
valueFrom:
configMapKeyRef:
- key: "269"
- name: "268"
- optional: true
- fieldRef:
- apiVersion: "264"
- fieldPath: "265"
- resourceFieldRef:
- containerName: "266"
- divisor: "834"
- resource: "267"
- secretKeyRef:
key: "271"
name: "270"
optional: false
+ fieldRef:
+ apiVersion: "266"
+ fieldPath: "267"
+ resourceFieldRef:
+ containerName: "268"
+ divisor: "219"
+ resource: "269"
+ secretKeyRef:
+ key: "273"
+ name: "272"
+ optional: false
envFrom:
- configMapRef:
- name: "260"
- optional: true
- prefix: "259"
- secretRef:
- name: "261"
+ name: "262"
optional: false
- image: "253"
- imagePullPolicy: -紑浘牬釼aTGÒ鵌
+ prefix: "261"
+ secretRef:
+ name: "263"
+ optional: true
+ image: "255"
+ imagePullPolicy: ×p鬷m罂o3ǰ廋i乳'ȘUɻ;
lifecycle:
postStart:
exec:
command:
- - "300"
+ - "304"
httpGet:
- host: "303"
- httpHeaders:
- - name: "304"
- value: "305"
- path: "301"
- port: "302"
- scheme: ĝ®EĨǔvÄÚ×p鬷
- tcpSocket:
host: "306"
- port: 1673908530
+ httpHeaders:
+ - name: "307"
+ value: "308"
+ path: "305"
+ port: 1190831814
+ scheme: dŊiɢ
+ tcpSocket:
+ host: "309"
+ port: -370404018
preStop:
exec:
command:
- - "307"
+ - "310"
httpGet:
- host: "310"
+ host: "312"
httpHeaders:
- - name: "311"
- value: "312"
- path: "308"
- port: "309"
- scheme: żLj捲攻xƂ9阠$嬏wy¶熀
+ - name: "313"
+ value: "314"
+ path: "311"
+ port: 280878117
+ scheme: ɞȥ}礤铟怖ý萜Ǖ
tcpSocket:
- host: "313"
- port: -1912967242
+ host: "315"
+ port: -1088996269
livenessProbe:
exec:
command:
- - "278"
- failureThreshold: 65094252
+ - "280"
+ failureThreshold: 2112112129
+ gRPC:
+ port: -977348956
+ service: "287"
httpGet:
- host: "281"
+ host: "282"
httpHeaders:
- - name: "282"
- value: "283"
- path: "279"
- port: "280"
- scheme: ɜ瞍阎lğ Ņ#耗Ǚ(
- initialDelaySeconds: -1934305215
- periodSeconds: 875971520
- successThreshold: 161338049
+ - name: "283"
+ value: "284"
+ path: "281"
+ port: 597943993
+ scheme: "8"
+ initialDelaySeconds: -637630736
+ periodSeconds: -1320027474
+ successThreshold: -1750169306
tcpSocket:
- host: "284"
- port: 317211081
- terminationGracePeriodSeconds: -6831592407095063988
- timeoutSeconds: -655359985
- name: "252"
+ host: "286"
+ port: "285"
+ terminationGracePeriodSeconds: 2270336783402505634
+ timeoutSeconds: 601942575
+ name: "254"
ports:
- - containerPort: -1225881740
- hostIP: "258"
- hostPort: -1408385387
- name: "257"
- protocol: 撑¼蠾8餑噭
+ - containerPort: -444561761
+ hostIP: "260"
+ hostPort: -1170565984
+ name: "259"
+ protocol: 5哇芆斩ìh4ɊHȖ|ʐş
readinessProbe:
exec:
command:
- - "285"
- failureThreshold: 404234347
+ - "288"
+ failureThreshold: 2073630689
+ gRPC:
+ port: 626243488
+ service: "295"
httpGet:
- host: "287"
+ host: "290"
httpHeaders:
- - name: "288"
- value: "289"
- path: "286"
- port: -2126891601
- scheme: l}Ñ蠂Ü[ƛ^輅9ɛ棕
- initialDelaySeconds: 1660454722
- periodSeconds: -1347045470
- successThreshold: 1169580662
+ - name: "291"
+ value: "292"
+ path: "289"
+ port: -239264629
+ scheme: ɻ挴ʠɜ瞍阎lğ Ņ#耗Ǚ
+ initialDelaySeconds: -1920304485
+ periodSeconds: 1424401373
+ successThreshold: -531787516
tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: 8560122250231719622
- timeoutSeconds: -1317234078
+ host: "294"
+ port: "293"
+ terminationGracePeriodSeconds: -3568583337361453338
+ timeoutSeconds: -1842062977
resources:
limits:
- n(fǂǢ曣ŋayåe躒訙Ǫ: "12"
+ 丽饾| 鞤ɱď: "590"
requests:
- (娕uE增猍: "264"
+ 噭DµņP)DŽ髐njʉBn(f: "584"
securityContext:
- allowPrivilegeEscalation: false
+ allowPrivilegeEscalation: true
capabilities:
add:
- - Nh×DJɶ羹ƞʓ%ʝ`ǭ
+ - 桉桃喕蠲$ɛ溢臜裡×
drop:
- - ñ?卶滿筇ȟP:/a
- privileged: false
- procMount: ð仁Q橱9ij\Ď愝Ű藛b磾sY
- readOnlyRootFilesystem: true
- runAsGroup: 5797412715505520759
+ - -紑浘牬釼aTGÒ鵌
+ privileged: true
+ procMount: ʓ%ʝ`ǭ躌ñ?卶滿筇ȟP:/
+ readOnlyRootFilesystem: false
+ runAsGroup: 296399212346260204
runAsNonRoot: false
- runAsUser: 308757565294839546
+ runAsUser: -3539084410583519556
seLinuxOptions:
- level: "318"
- role: "316"
- type: "317"
- user: "315"
+ level: "320"
+ role: "318"
+ type: "319"
+ user: "317"
seccompProfile:
- localhostProfile: "322"
- type: 繽敮ǰ詀ǿ忀oɎƺ
+ localhostProfile: "324"
+ type: 殆诵H玲鑠ĭ$#卛8ð仁Q
windowsOptions:
- gmsaCredentialSpec: "320"
- gmsaCredentialSpecName: "319"
+ gmsaCredentialSpec: "322"
+ gmsaCredentialSpecName: "321"
hostProcess: false
- runAsUserName: "321"
+ runAsUserName: "323"
startupProbe:
exec:
command:
- - "292"
- failureThreshold: 1419787816
+ - "296"
+ failureThreshold: 1660454722
+ gRPC:
+ port: 413903479
+ service: "303"
httpGet:
- host: "295"
+ host: "298"
httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: ǚŜEuEy竬ʆɞ
- initialDelaySeconds: 336252010
- periodSeconds: 930785927
- successThreshold: 1624098740
+ - name: "299"
+ value: "300"
+ path: "297"
+ port: -894026356
+ scheme: 繐汚磉反-n覦
+ initialDelaySeconds: 1708236944
+ periodSeconds: 1961354355
+ successThreshold: -1977635123
tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -506227444233847191
- timeoutSeconds: 677650619
- terminationMessagePath: "314"
- terminationMessagePolicy: 漤ŗ坟
- tty: true
+ host: "302"
+ port: "301"
+ terminationGracePeriodSeconds: -5657477284668711794
+ timeoutSeconds: -1192140557
+ stdinOnce: true
+ terminationMessagePath: "316"
+ terminationMessagePolicy: ƘƵŧ1ƟƓ宆!
volumeDevices:
- - devicePath: "277"
- name: "276"
+ - devicePath: "279"
+ name: "278"
volumeMounts:
- - mountPath: "273"
- mountPropagation: irȎ3Ĕ\ɢX鰨松
- name: "272"
- subPath: "274"
- subPathExpr: "275"
- workingDir: "256"
+ - mountPath: "275"
+ mountPropagation: 鑳w妕眵笭/9崍h趭
+ name: "274"
+ readOnly: true
+ subPath: "276"
+ subPathExpr: "277"
+ workingDir: "258"
dnsConfig:
nameservers:
- - "483"
- options:
- - name: "485"
- value: "486"
- searches:
- "484"
- dnsPolicy: 厶s
+ options:
+ - name: "486"
+ value: "487"
+ searches:
+ - "485"
+ dnsPolicy: ȩ愉B
enableServiceLinks: false
ephemeralContainers:
- args:
- - "326"
+ - "328"
command:
- - "325"
+ - "327"
env:
- - name: "333"
- value: "334"
+ - name: "335"
+ value: "336"
valueFrom:
configMapKeyRef:
- key: "340"
- name: "339"
- optional: true
- fieldRef:
- apiVersion: "335"
- fieldPath: "336"
- resourceFieldRef:
- containerName: "337"
- divisor: "971"
- resource: "338"
- secretKeyRef:
key: "342"
name: "341"
optional: true
+ fieldRef:
+ apiVersion: "337"
+ fieldPath: "338"
+ resourceFieldRef:
+ containerName: "339"
+ divisor: "121"
+ resource: "340"
+ secretKeyRef:
+ key: "344"
+ name: "343"
+ optional: false
envFrom:
- configMapRef:
- name: "331"
- optional: true
- prefix: "330"
- secretRef:
- name: "332"
+ name: "333"
optional: false
- image: "324"
- imagePullPolicy: '#t(ȗŜŲ&洪y儕l'
+ prefix: "332"
+ secretRef:
+ name: "334"
+ optional: true
+ image: "326"
lifecycle:
postStart:
exec:
command:
- - "371"
+ - "373"
httpGet:
- host: "374"
+ host: "375"
httpHeaders:
- - name: "375"
- value: "376"
- path: "372"
- port: "373"
- scheme: b轫ʓ滨ĖRh}颉hȱɷȰW
+ - name: "376"
+ value: "377"
+ path: "374"
+ port: 1762917570
+ scheme: Ų買霎ȃň[>ą
tcpSocket:
host: "378"
- port: "377"
+ port: 1414336865
preStop:
exec:
command:
@@ -427,135 +443,142 @@ spec:
- name: "382"
value: "383"
path: "380"
- port: -1743587482
+ port: 1129006716
+ scheme: ȱɷȰW瀤oɢ嫎¸殚篎3
tcpSocket:
- host: "384"
- port: 858034123
+ host: "385"
+ port: "384"
livenessProbe:
exec:
command:
- - "349"
- failureThreshold: -2033879721
+ - "351"
+ failureThreshold: 1776174141
+ gRPC:
+ port: -839925309
+ service: "357"
httpGet:
- host: "352"
+ host: "353"
httpHeaders:
- - name: "353"
- value: "354"
- path: "350"
- port: "351"
- scheme: 07曳wœj堑ūM鈱ɖ'蠨
- initialDelaySeconds: -242798806
- periodSeconds: 681004793
- successThreshold: 2002666266
+ - name: "354"
+ value: "355"
+ path: "352"
+ port: -592535081
+ scheme: fsǕT
+ initialDelaySeconds: -526099499
+ periodSeconds: 1708011112
+ successThreshold: -603097910
tcpSocket:
host: "356"
- port: "355"
- terminationGracePeriodSeconds: -4409241678312226730
- timeoutSeconds: -1940800545
- name: "323"
+ port: -394464008
+ terminationGracePeriodSeconds: -5794598592563963676
+ timeoutSeconds: -1014296961
+ name: "325"
ports:
- - containerPort: -557687916
- hostIP: "329"
- hostPort: 788093377
- name: "328"
- protocol: _敕
+ - containerPort: 2004993767
+ hostIP: "331"
+ hostPort: -846940406
+ name: "330"
+ protocol: Ű藛b磾sYȠ繽敮ǰ
readinessProbe:
exec:
command:
- - "357"
- failureThreshold: -2122876628
+ - "358"
+ failureThreshold: 1019901190
+ gRPC:
+ port: 701103233
+ service: "364"
httpGet:
- host: "359"
+ host: "360"
httpHeaders:
- - name: "360"
- value: "361"
- path: "358"
- port: 279062028
- scheme: Byß讪Ă2讅缔m葰賦迾娙ƴ4虵p
- initialDelaySeconds: 725557531
- periodSeconds: 741667779
- successThreshold: -381344241
+ - name: "361"
+ value: "362"
+ path: "359"
+ port: 134832144
+ scheme: Ș鹾KƂʼnçȶŮ嫠!@@)Zq=歍
+ initialDelaySeconds: 1995848794
+ periodSeconds: -372626292
+ successThreshold: 2018111855
tcpSocket:
- host: "362"
- port: -943058206
- terminationGracePeriodSeconds: 2700145646260085226
- timeoutSeconds: -703127031
+ host: "363"
+ port: -1289510276
+ terminationGracePeriodSeconds: -6980960365540477247
+ timeoutSeconds: -281926929
resources:
limits:
- 湷D谹気Ƀ秮òƬɸĻo:{: "523"
+ $矐_敕ű嵞嬯t{Eɾ敹Ȯ-: "642"
requests:
- 赮ǒđ>*劶?jĎĭ¥#ƱÁR»: "929"
+ 蛹Ƚȿ醏g遧Ȋ飂廤Ƌʙcx: "77"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - ɻŶJ詢
+ - rƈa餖Ľ
drop:
- - ǾɁ鍻G鯇ɀ魒Ð扬=惍E
- privileged: false
- procMount: ;Ƭ婦d%蹶/ʗp壥Ƥ
- readOnlyRootFilesystem: false
- runAsGroup: -2841141127223294729
- runAsNonRoot: false
- runAsUser: -5071790362153704411
+ - 淴ɑ?¶Ȳ
+ privileged: true
+ procMount: œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.b屏ɧ
+ readOnlyRootFilesystem: true
+ runAsGroup: 8544841476815986834
+ runAsNonRoot: true
+ runAsUser: 5200080507234099655
seLinuxOptions:
- level: "389"
- role: "387"
- type: "388"
- user: "386"
+ level: "390"
+ role: "388"
+ type: "389"
+ user: "387"
seccompProfile:
- localhostProfile: "393"
- type: 郡ɑ鮽ǍJB膾扉A1襏櫯³
+ localhostProfile: "394"
+ type: 'ʫį淓¯Ą0ƛ忀z委>,趐V曡88 '
windowsOptions:
- gmsaCredentialSpec: "391"
- gmsaCredentialSpecName: "390"
- hostProcess: false
- runAsUserName: "392"
+ gmsaCredentialSpec: "392"
+ gmsaCredentialSpecName: "391"
+ hostProcess: true
+ runAsUserName: "393"
startupProbe:
exec:
command:
- - "363"
- failureThreshold: 1762917570
+ - "365"
+ failureThreshold: -1289875111
+ gRPC:
+ port: 1782790310
+ service: "372"
httpGet:
- host: "366"
+ host: "368"
httpHeaders:
- - name: "367"
- value: "368"
- path: "364"
- port: "365"
- scheme: thp像-
- initialDelaySeconds: 1589417286
- periodSeconds: 1874051321
- successThreshold: -500012714
+ - name: "369"
+ value: "370"
+ path: "366"
+ port: "367"
+ scheme: p蓋沥7uPƒw©ɴ
+ initialDelaySeconds: 1587036035
+ periodSeconds: -59501664
+ successThreshold: 1261462387
tcpSocket:
- host: "370"
- port: "369"
- terminationGracePeriodSeconds: 4794571970514469019
- timeoutSeconds: 445878206
+ host: "371"
+ port: -671265235
+ terminationGracePeriodSeconds: -7492770647593151162
+ timeoutSeconds: 1760208172
stdinOnce: true
- targetContainerName: "394"
- terminationMessagePath: "385"
- terminationMessagePolicy: 喾@潷
+ targetContainerName: "395"
+ terminationMessagePath: "386"
+ terminationMessagePolicy: '[y#t('
volumeDevices:
- - devicePath: "348"
- name: "347"
+ - devicePath: "350"
+ name: "349"
volumeMounts:
- - mountPath: "344"
- mountPropagation: '|ǓÓ敆OɈÏ 瞍髃'
- name: "343"
- readOnly: true
- subPath: "345"
- subPathExpr: "346"
- workingDir: "327"
+ - mountPath: "346"
+ mountPropagation: ¬h`職铳s44矕Ƈè*鑏='ʨ|
+ name: "345"
+ subPath: "347"
+ subPathExpr: "348"
+ workingDir: "329"
hostAliases:
- hostnames:
- - "481"
- ip: "480"
- hostIPC: true
- hostPID: true
- hostname: "411"
+ - "482"
+ ip: "481"
+ hostname: "412"
imagePullSecrets:
- - name: "410"
+ - name: "411"
initContainers:
- args:
- "184"
@@ -589,43 +612,46 @@ spec:
name: "190"
optional: false
image: "182"
- imagePullPolicy: '{屿oiɥ嵐sC8?Ǻ'
+ imagePullPolicy: ɐ鰥
lifecycle:
postStart:
exec:
command:
- - "228"
+ - "232"
httpGet:
- host: "231"
- httpHeaders:
- - name: "232"
- value: "233"
- path: "229"
- port: "230"
- scheme: ŕĪĠM蘇KŅ/»頸+SÄ蚃ɣ
- tcpSocket:
host: "234"
- port: 1993268896
+ httpHeaders:
+ - name: "235"
+ value: "236"
+ path: "233"
+ port: 1328165061
+ scheme: ¸gĩ
+ tcpSocket:
+ host: "237"
+ port: 1186392166
preStop:
exec:
command:
- - "235"
+ - "238"
httpGet:
- host: "238"
+ host: "240"
httpHeaders:
- - name: "239"
- value: "240"
- path: "236"
- port: "237"
- scheme: 'ƿ頀"冓鍓贯澔 '
+ - name: "241"
+ value: "242"
+ path: "239"
+ port: -1315487077
+ scheme: ğ_
tcpSocket:
- host: "242"
- port: "241"
+ host: "244"
+ port: "243"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -552281772
+ failureThreshold: -1666819085
+ gRPC:
+ port: -614161319
+ service: "214"
httpGet:
host: "210"
httpHeaders:
@@ -634,14 +660,14 @@ spec:
path: "208"
port: "209"
scheme: u|榝$î.Ȏ蝪ʜ5遰=E埄Ȁ
- initialDelaySeconds: -1246371817
- periodSeconds: 432291364
- successThreshold: 676578360
+ initialDelaySeconds: 452673549
+ periodSeconds: -125932767
+ successThreshold: -18758819
tcpSocket:
host: "213"
port: 1714588921
- terminationGracePeriodSeconds: -2910346974754087949
- timeoutSeconds: 617318981
+ terminationGracePeriodSeconds: -1212012606981050727
+ timeoutSeconds: 627670321
name: "181"
ports:
- containerPort: -1252938503
@@ -652,23 +678,27 @@ spec:
readinessProbe:
exec:
command:
- - "214"
- failureThreshold: 2056774277
+ - "215"
+ failureThreshold: -736151561
+ gRPC:
+ port: -760292259
+ service: "222"
httpGet:
- host: "216"
+ host: "218"
httpHeaders:
- - name: "217"
- value: "218"
- path: "215"
- port: 656200799
- initialDelaySeconds: -2165496
- periodSeconds: 1386255869
- successThreshold: -778272981
+ - name: "219"
+ value: "220"
+ path: "216"
+ port: "217"
+ scheme: '&皥贸碔lNKƙ順\E¦队偯'
+ initialDelaySeconds: -1164530482
+ periodSeconds: 1430286749
+ successThreshold: -374766088
tcpSocket:
- host: "220"
- port: "219"
- terminationGracePeriodSeconds: -9219895030215397584
- timeoutSeconds: -1778952574
+ host: "221"
+ port: -316996074
+ terminationGracePeriodSeconds: -6508463748290235837
+ timeoutSeconds: 1877574041
resources:
limits:
LĹ]佱¿>犵殇ŕ-Ɂ圯W:ĸ輦唊: "807"
@@ -678,51 +708,57 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - ;Nŕ璻Jih亏yƕ丆録²Ŏ
+ - ´DÒȗÔÂɘɢ鬍熖B芭花ª瘡
drop:
- - /灩聋3趐囨鏻砅邻爥蹔ŧOǨ繫
- privileged: true
- procMount: šeSvEȤƏ埮pɵ{WOŭW灬pȭ
+ - J
+ privileged: false
+ procMount: nj汰8ŕİi騎C"6x$1sȣ±p
readOnlyRootFilesystem: true
- runAsGroup: 6453802934472477147
+ runAsGroup: -8859267173741137425
runAsNonRoot: true
- runAsUser: 4041264710404335706
+ runAsUser: 8519266600558609398
seLinuxOptions:
- level: "247"
- role: "245"
- type: "246"
- user: "244"
+ level: "249"
+ role: "247"
+ type: "248"
+ user: "246"
seccompProfile:
- localhostProfile: "251"
- type: V擭銆j
+ localhostProfile: "253"
+ type: ""
windowsOptions:
- gmsaCredentialSpec: "249"
- gmsaCredentialSpecName: "248"
+ gmsaCredentialSpec: "251"
+ gmsaCredentialSpecName: "250"
hostProcess: true
- runAsUserName: "250"
+ runAsUserName: "252"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: -1137436579
+ - "223"
+ failureThreshold: 1156888068
+ gRPC:
+ port: -1984097455
+ service: "231"
httpGet:
- host: "224"
+ host: "226"
httpHeaders:
- - name: "225"
- value: "226"
- path: "222"
- port: "223"
- scheme: 鬶l獕;跣Hǝcw
- initialDelaySeconds: -736151561
- periodSeconds: -1856061695
- successThreshold: 1868683352
+ - name: "227"
+ value: "228"
+ path: "224"
+ port: "225"
+ scheme: 颶妧Ö闊
+ initialDelaySeconds: -253326525
+ periodSeconds: 887319241
+ successThreshold: 1559618829
tcpSocket:
- host: "227"
- port: -374766088
- terminationGracePeriodSeconds: 8876559635423161004
- timeoutSeconds: -1515369804
- terminationMessagePath: "243"
- terminationMessagePolicy: 6Ɖ飴ɎiǨź'
+ host: "230"
+ port: "229"
+ terminationGracePeriodSeconds: -5566612115749133989
+ timeoutSeconds: 567263590
+ stdin: true
+ stdinOnce: true
+ terminationMessagePath: "245"
+ terminationMessagePolicy: ëJ橈'琕鶫:顇ə娯Ȱ囌
+ tty: true
volumeDevices:
- devicePath: "206"
name: "205"
@@ -733,68 +769,67 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "399"
+ nodeName: "400"
nodeSelector:
- "395": "396"
+ "396": "397"
os:
- name: Ê
+ name: '%ȅdzɬ牦[闤ŬNĻGƧĪɱ|åȧ$Ĥ'
overhead:
- 隅DžbİEMǶɼ`|褞: "229"
- preemptionPolicy: n{鳻
- priority: -340583156
- priorityClassName: "482"
+ ʬÇ[輚趞ț@: "597"
+ preemptionPolicy: '%ǁšjƾ$ʛ螳%65c3盧Ŷb'
+ priority: -1371816595
+ priorityClassName: "483"
readinessGates:
- - conditionType: țc£PAÎǨȨ栋
- restartPolicy: 刪q塨Ý-扚聧扈4ƫZɀȩ愉
- runtimeClassName: "487"
- schedulerName: "477"
+ - conditionType: ?ȣ4c
+ restartPolicy: 荊ù灹8緔Tj§E蓋
+ runtimeClassName: "488"
+ schedulerName: "478"
securityContext:
- fsGroup: 4301352137345790658
- fsGroupChangePolicy: 柱栦阫Ƈʥ椹
- runAsGroup: -2037509302018919599
+ fsGroup: -640858663485353963
+ fsGroupChangePolicy: 氙'[>ĵ'o儿
+ runAsGroup: 3044211288080348140
runAsNonRoot: true
- runAsUser: -3184085461588437523
+ runAsUser: 231646691853926712
seLinuxOptions:
- level: "403"
- role: "401"
- type: "402"
- user: "400"
+ level: "404"
+ role: "402"
+ type: "403"
+ user: "401"
seccompProfile:
- localhostProfile: "409"
- type: 飝ȕ笧L唞鹚蝉茲ʛ饊ɣKIJWĶʗ{裦i
+ localhostProfile: "410"
+ type: 銭u裡_Ơ9o
supplementalGroups:
- - -885564056413671854
+ - 7168071284072373028
sysctls:
- - name: "407"
- value: "408"
+ - name: "408"
+ value: "409"
windowsOptions:
- gmsaCredentialSpec: "405"
- gmsaCredentialSpecName: "404"
- hostProcess: true
- runAsUserName: "406"
- serviceAccount: "398"
- serviceAccountName: "397"
+ gmsaCredentialSpec: "406"
+ gmsaCredentialSpecName: "405"
+ hostProcess: false
+ runAsUserName: "407"
+ serviceAccount: "399"
+ serviceAccountName: "398"
setHostnameAsFQDN: false
- shareProcessNamespace: true
- subdomain: "412"
- terminationGracePeriodSeconds: -1390311149947249535
+ shareProcessNamespace: false
+ subdomain: "413"
+ terminationGracePeriodSeconds: -2019276087967685705
tolerations:
- - key: "478"
- operator: ŭʔb'?舍ȃʥx臥]å摞
- tolerationSeconds: 3053978290188957517
- value: "479"
+ - effect: r埁摢噓涫祲ŗȨĽ堐mpƮ搌
+ key: "479"
+ operator: Ŕsʅ朁遐»`癸ƥf豯烠砖#囹J,R譏
+ tolerationSeconds: 6217170132371410053
+ value: "480"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
- operator: NotIn
- values:
- - H1z..j_.r3--T
+ - key: kk-7zt89--9opnn-v00hioyoe9-r8y-u-dt--8-ra--t30q.f-4o-2--g---080j-4-h--qz-m-gpr6399/q.-2_9.9-..-JA-H-C5-8_--4V
+ operator: Exists
matchLabels:
- H_55..--E3_2D-1DW__o_-.k: "7"
- maxSkew: 1486667065
- topologyKey: "488"
- whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
+ 5-s14.6----3-893097-0zy976-0--q-90fo4grk4k-116-h8-7176-xr----7k68/i.._---6_.0.m.--.-dh.v._5.vB-w: j_.17.T-_.X_KS-J.9_j570n__.-7_I8.--4-___..7
+ maxSkew: 1762898358
+ topologyKey: "489"
+ whenUnsatisfiable: ʚʛ&]ŶɄğɒơ舎
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1051,25 +1086,25 @@ spec:
storagePolicyID: "106"
storagePolicyName: "105"
volumePath: "103"
- templateGeneration: 6610342178136989005
+ templateGeneration: -1750353206406420579
updateStrategy:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
+ type: ʟ]mʦ獪霛圦Ƶ胐N砽§
status:
- collisionCount: -1460952461
+ collisionCount: -755983292
conditions:
- - lastTransitionTime: "2885-07-28T14:08:43Z"
- message: "496"
- reason: "495"
- status: Y9=ȳB鼲糰Eè6苁嗀ĕ佣8ç
- type: bCũw¼ ǫđ槴Ċį軠>桼劑
- currentNumberScheduled: -487001726
- desiredNumberScheduled: -1728725476
- numberAvailable: 826023875
- numberMisscheduled: 929611261
- numberReady: -36544080
- numberUnavailable: -780958866
- observedGeneration: 3978304359289858739
- updatedNumberScheduled: 1731921624
+ - lastTransitionTime: "2825-03-21T02:40:56Z"
+ message: "497"
+ reason: "496"
+ status: ɘʘ?s檣ŝƚʤ<Ɵʚ`÷
+ type: ȑ
+ currentNumberScheduled: -89689385
+ desiredNumberScheduled: 428205654
+ numberAvailable: -1513836046
+ numberMisscheduled: -1429991698
+ numberReady: 241736257
+ numberUnavailable: -1472909941
+ observedGeneration: 1604016029658400107
+ updatedNumberScheduled: -1402277158
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json
index b5eb7c076f2..fecce895a74 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json
@@ -560,24 +560,28 @@
"port": -498930176,
"host": "212"
},
- "initialDelaySeconds": 1885897314,
- "timeoutSeconds": -465677631,
- "periodSeconds": 1054858106,
- "successThreshold": 232569106,
- "failureThreshold": -1150474479,
- "terminationGracePeriodSeconds": 3196828455642760911
+ "gRPC": {
+ "port": -670390306,
+ "service": "213"
+ },
+ "initialDelaySeconds": -2036074491,
+ "timeoutSeconds": -148216266,
+ "periodSeconds": 165047920,
+ "successThreshold": -393291312,
+ "failureThreshold": -93157681,
+ "terminationGracePeriodSeconds": -4856573944864548413
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": -331283026,
"host": "216",
- "scheme": "3!Zɾģ毋Ó6",
+ "scheme": "ȉ",
"httpHeaders": [
{
"name": "217",
@@ -586,27 +590,31 @@
]
},
"tcpSocket": {
- "port": -832805508,
+ "port": 714088955,
"host": "219"
},
- "initialDelaySeconds": -228822833,
- "timeoutSeconds": -970312425,
- "periodSeconds": -1213051101,
- "successThreshold": 1451056156,
- "failureThreshold": 267768240,
- "terminationGracePeriodSeconds": -549108701661089463
+ "gRPC": {
+ "port": -630252364,
+ "service": "220"
+ },
+ "initialDelaySeconds": 391562775,
+ "timeoutSeconds": -775511009,
+ "periodSeconds": -832805508,
+ "successThreshold": -228822833,
+ "failureThreshold": -970312425,
+ "terminationGracePeriodSeconds": -5210014804617784724
},
"startupProbe": {
"exec": {
"command": [
- "220"
+ "221"
]
},
"httpGet": {
- "path": "221",
- "port": "222",
+ "path": "222",
+ "port": -1455098755,
"host": "223",
- "scheme": "#yV'WKw(ğ儴Ůĺ}",
+ "scheme": "眖R#yV'W",
"httpHeaders": [
{
"name": "224",
@@ -615,97 +623,102 @@
]
},
"tcpSocket": {
- "port": -20130017,
- "host": "226"
+ "port": "226",
+ "host": "227"
},
- "initialDelaySeconds": -1244623134,
- "timeoutSeconds": -1334110502,
- "periodSeconds": -398297599,
- "successThreshold": 873056500,
- "failureThreshold": -36782737,
- "terminationGracePeriodSeconds": -7464951486382552895
+ "gRPC": {
+ "port": -1798849477,
+ "service": "228"
+ },
+ "initialDelaySeconds": -1017263912,
+ "timeoutSeconds": 852780575,
+ "periodSeconds": -1252938503,
+ "successThreshold": 893823156,
+ "failureThreshold": -1980314709,
+ "terminationGracePeriodSeconds": 2455602852175027275
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "227"
+ "229"
]
},
"httpGet": {
- "path": "228",
- "port": "229",
- "host": "230",
- "scheme": "鄠[颐o啛更偢ɇ卷荙JL",
+ "path": "230",
+ "port": "231",
+ "host": "232",
+ "scheme": "ȓ蹣ɐǛv+8Ƥ熪军",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "233",
+ "value": "234"
}
]
},
"tcpSocket": {
- "port": "233",
- "host": "234"
+ "port": 622267234,
+ "host": "235"
}
},
"preStop": {
"exec": {
"command": [
- "235"
+ "236"
]
},
"httpGet": {
- "path": "236",
- "port": -1506633471,
- "host": "237",
- "scheme": "1虊谇j爻ƙt叀碧闳ȩr嚧ʣq",
+ "path": "237",
+ "port": -1463645123,
+ "host": "238",
+ "scheme": "荙JLĹ]佱¿\u003e犵殇ŕ",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "239",
+ "value": "240"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": "241",
+ "host": "242"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "屡ʁ",
+ "terminationMessagePath": "243",
+ "terminationMessagePolicy": "圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀",
+ "imagePullPolicy": "ĬÇó藢xɮĵȑ6L*Z",
"securityContext": {
"capabilities": {
"add": [
- "Ÿ8T 苧yñKJɐ扵"
+ "咡W"
],
"drop": [
- "ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞"
+ "敄lu|"
]
},
"privileged": false,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "244",
+ "role": "245",
+ "type": "246",
+ "level": "247"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
- "hostProcess": true
+ "gmsaCredentialSpecName": "248",
+ "gmsaCredentialSpec": "249",
+ "runAsUserName": "250",
+ "hostProcess": false
},
- "runAsUser": 3582457287488712192,
- "runAsGroup": -7664873352063067579,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
+ "runAsUser": -226514069321683925,
+ "runAsGroup": -4333562938396485230,
+ "runAsNonRoot": false,
+ "readOnlyRootFilesystem": true,
"allowPrivilegeEscalation": true,
- "procMount": "\u003c6",
+ "procMount": "E埄Ȁ朦 wƯ貾坢'",
"seccompProfile": {
- "type": "簳°Ļǟi\u0026皥贸",
- "localhostProfile": "250"
+ "type": "aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l",
+ "localhostProfile": "251"
}
},
"stdin": true
@@ -713,59 +726,59 @@
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "252",
+ "image": "253",
"command": [
- "253"
- ],
- "args": [
"254"
],
- "workingDir": "255",
+ "args": [
+ "255"
+ ],
+ "workingDir": "256",
"ports": [
{
- "name": "256",
- "hostPort": -1314967760,
- "containerPort": 1174240097,
- "protocol": "\\E¦队偯J僳徥淳",
- "hostIP": "257"
+ "name": "257",
+ "hostPort": -560717833,
+ "containerPort": -760292259,
+ "protocol": "w媀瓄\u0026翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆",
+ "hostIP": "258"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "259",
"configMapRef": {
- "name": "259",
+ "name": "260",
"optional": false
},
"secretRef": {
- "name": "260",
+ "name": "261",
"optional": true
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "262",
+ "value": "263",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "264",
+ "fieldPath": "265"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "965"
+ "containerName": "266",
+ "resource": "267",
+ "divisor": "945"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
+ "name": "268",
+ "key": "269",
"optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
+ "name": "270",
+ "key": "271",
"optional": false
}
}
@@ -773,512 +786,540 @@
],
"resources": {
"limits": {
- "4Ǒ輂,ŕĪ": "398"
+ "ĩ餠籲磣Óƿ頀\"冓鍓贯澔 ƺ蛜6Ɖ飴": "86"
},
"requests": {
- "V訆Ǝżŧ": "915"
+ "ə娯Ȱ囌{": "853"
}
},
"volumeMounts": [
{
- "name": "271",
+ "name": "272",
"readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "SÄ蚃ɣľ)酊龨δ摖ȱğ_\u003c",
- "subPathExpr": "274"
+ "mountPath": "273",
+ "subPath": "274",
+ "mountPropagation": "龏´DÒȗÔÂɘɢ鬍",
+ "subPathExpr": "275"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "276",
+ "devicePath": "277"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "278"
]
},
"httpGet": {
- "path": "278",
- "port": "279",
- "host": "280",
- "scheme": "蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏",
+ "path": "279",
+ "port": "280",
+ "host": "281",
+ "scheme": "Jih亏yƕ丆録²",
"httpHeaders": [
{
- "name": "281",
- "value": "282"
+ "name": "282",
+ "value": "283"
}
]
},
"tcpSocket": {
- "port": -614098868,
- "host": "283"
+ "port": 2080874371,
+ "host": "284"
},
- "initialDelaySeconds": 234253676,
- "timeoutSeconds": 846286700,
- "periodSeconds": 1080545253,
- "successThreshold": 1843491416,
- "failureThreshold": -1204965397,
- "terminationGracePeriodSeconds": -2125560879532395341
+ "gRPC": {
+ "port": -1187301925,
+ "service": "285"
+ },
+ "initialDelaySeconds": -402384013,
+ "timeoutSeconds": -181601395,
+ "periodSeconds": -617381112,
+ "successThreshold": 1851229369,
+ "failureThreshold": -560238386,
+ "terminationGracePeriodSeconds": 7124276984274024394
},
"readinessProbe": {
"exec": {
"command": [
- "284"
+ "286"
]
},
"httpGet": {
- "path": "285",
- "port": "286",
- "host": "287",
- "scheme": "花ª瘡蟦JBʟ鍏",
+ "path": "287",
+ "port": "288",
+ "host": "289",
+ "scheme": "\"6x$1sȣ±p",
"httpHeaders": [
{
- "name": "288",
- "value": "289"
+ "name": "290",
+ "value": "291"
}
]
},
"tcpSocket": {
- "port": "290",
- "host": "291"
+ "port": 1900201288,
+ "host": "292"
},
- "initialDelaySeconds": -2062708879,
- "timeoutSeconds": 215186711,
- "periodSeconds": -141401239,
- "successThreshold": -1187301925,
- "failureThreshold": -402384013,
- "terminationGracePeriodSeconds": -779972051078659613
+ "gRPC": {
+ "port": 1443329506,
+ "service": "293"
+ },
+ "initialDelaySeconds": 480631652,
+ "timeoutSeconds": -1983435813,
+ "periodSeconds": 1167615307,
+ "successThreshold": 455833230,
+ "failureThreshold": 1956567721,
+ "terminationGracePeriodSeconds": 666108157153018873
},
"startupProbe": {
"exec": {
"command": [
- "292"
+ "294"
]
},
"httpGet": {
- "path": "293",
- "port": "294",
- "host": "295",
- "scheme": "İ",
+ "path": "295",
+ "port": "296",
+ "host": "297",
+ "scheme": "ɵ",
"httpHeaders": [
{
- "name": "296",
- "value": "297"
+ "name": "298",
+ "value": "299"
}
]
},
"tcpSocket": {
- "port": "298",
- "host": "299"
+ "port": "300",
+ "host": "301"
},
- "initialDelaySeconds": -1615316902,
- "timeoutSeconds": -793616601,
- "periodSeconds": -522215271,
- "successThreshold": 1374479082,
- "failureThreshold": 737722974,
- "terminationGracePeriodSeconds": -247950237984551522
+ "gRPC": {
+ "port": 1473407401,
+ "service": "302"
+ },
+ "initialDelaySeconds": 1575106083,
+ "timeoutSeconds": -1995371971,
+ "periodSeconds": -1700828941,
+ "successThreshold": 248533396,
+ "failureThreshold": -1835677314,
+ "terminationGracePeriodSeconds": 854912766214576273
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "300"
+ "303"
]
},
"httpGet": {
- "path": "301",
- "port": 1502643091,
- "host": "302",
- "scheme": "蜷ɔ幩š",
+ "path": "304",
+ "port": "305",
+ "host": "306",
+ "scheme": "ʒǚ鍰\\縑ɀ撑¼蠾8餑噭Dµ",
"httpHeaders": [
{
- "name": "303",
- "value": "304"
+ "name": "307",
+ "value": "308"
}
]
},
"tcpSocket": {
- "port": 455833230,
- "host": "305"
+ "port": "309",
+ "host": "310"
}
},
"preStop": {
"exec": {
"command": [
- "306"
+ "311"
]
},
"httpGet": {
- "path": "307",
- "port": 1076497581,
- "host": "308",
- "scheme": "h4ɊHȖ|ʐ",
+ "path": "312",
+ "port": "313",
+ "host": "314",
+ "scheme": "ƷƣMț",
"httpHeaders": [
{
- "name": "309",
- "value": "310"
+ "name": "315",
+ "value": "316"
}
]
},
"tcpSocket": {
- "port": 248533396,
- "host": "311"
+ "port": "317",
+ "host": "318"
}
}
},
- "terminationMessagePath": "312",
- "terminationMessagePolicy": "迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ",
- "imagePullPolicy": "ņ",
+ "terminationMessagePath": "319",
+ "terminationMessagePolicy": "XW疪鑳w妕眵",
+ "imagePullPolicy": "e躒訙Ǫʓ)ǂť嗆u8晲T[ir",
"securityContext": {
"capabilities": {
"add": [
- "DŽ髐njʉBn(fǂǢ曣"
+ "Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎"
],
"drop": [
- "ay"
- ]
- },
- "privileged": false,
- "seLinuxOptions": {
- "user": "313",
- "role": "314",
- "type": "315",
- "level": "316"
- },
- "windowsOptions": {
- "gmsaCredentialSpecName": "317",
- "gmsaCredentialSpec": "318",
- "runAsUserName": "319",
- "hostProcess": true
- },
- "runAsUser": -3576337664396773931,
- "runAsGroup": -4786249339103684082,
- "runAsNonRoot": true,
- "readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "u8晲",
- "seccompProfile": {
- "type": "[irȎ3Ĕ\\ɢX鰨松/Ȁĵ鴁ĩȲ",
- "localhostProfile": "320"
- }
- },
- "stdin": true
- }
- ],
- "ephemeralContainers": [
- {
- "name": "321",
- "image": "322",
- "command": [
- "323"
- ],
- "args": [
- "324"
- ],
- "workingDir": "325",
- "ports": [
- {
- "name": "326",
- "hostPort": 1453852685,
- "containerPort": 2037135322,
- "protocol": "ǧĒzŔ瘍N",
- "hostIP": "327"
- }
- ],
- "envFrom": [
- {
- "prefix": "328",
- "configMapRef": {
- "name": "329",
- "optional": true
- },
- "secretRef": {
- "name": "330",
- "optional": true
- }
- }
- ],
- "env": [
- {
- "name": "331",
- "value": "332",
- "valueFrom": {
- "fieldRef": {
- "apiVersion": "333",
- "fieldPath": "334"
- },
- "resourceFieldRef": {
- "containerName": "335",
- "resource": "336",
- "divisor": "464"
- },
- "configMapKeyRef": {
- "name": "337",
- "key": "338",
- "optional": true
- },
- "secretKeyRef": {
- "name": "339",
- "key": "340",
- "optional": false
- }
- }
- }
- ],
- "resources": {
- "limits": {
- "汚磉反-n": "653"
- },
- "requests": {
- "^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ": "999"
- }
- },
- "volumeMounts": [
- {
- "name": "341",
- "mountPath": "342",
- "subPath": "343",
- "mountPropagation": "蛋I滞廬耐鷞焬CQm坊柩",
- "subPathExpr": "344"
- }
- ],
- "volumeDevices": [
- {
- "name": "345",
- "devicePath": "346"
- }
- ],
- "livenessProbe": {
- "exec": {
- "command": [
- "347"
- ]
- },
- "httpGet": {
- "path": "348",
- "port": -1088996269,
- "host": "349",
- "scheme": "ƘƵŧ1ƟƓ宆!",
- "httpHeaders": [
- {
- "name": "350",
- "value": "351"
- }
- ]
- },
- "tcpSocket": {
- "port": -1836225650,
- "host": "352"
- },
- "initialDelaySeconds": -1065853311,
- "timeoutSeconds": 559999152,
- "periodSeconds": -843639240,
- "successThreshold": 1573261475,
- "failureThreshold": -1211577347,
- "terminationGracePeriodSeconds": 6567123901989213629
- },
- "readinessProbe": {
- "exec": {
- "command": [
- "353"
- ]
- },
- "httpGet": {
- "path": "354",
- "port": 705333281,
- "host": "355",
- "scheme": "xƂ9阠",
- "httpHeaders": [
- {
- "name": "356",
- "value": "357"
- }
- ]
- },
- "tcpSocket": {
- "port": -916583020,
- "host": "358"
- },
- "initialDelaySeconds": -606614374,
- "timeoutSeconds": -3478003,
- "periodSeconds": 498878902,
- "successThreshold": 652646450,
- "failureThreshold": 757223010,
- "terminationGracePeriodSeconds": -8216131738691912586
- },
- "startupProbe": {
- "exec": {
- "command": [
- "359"
- ]
- },
- "httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "Ů\u003cy鯶縆łƑ[澔",
- "httpHeaders": [
- {
- "name": "363",
- "value": "364"
- }
- ]
- },
- "tcpSocket": {
- "port": 1288391156,
- "host": "365"
- },
- "initialDelaySeconds": -952255430,
- "timeoutSeconds": 1568034275,
- "periodSeconds": -824007302,
- "successThreshold": -359713104,
- "failureThreshold": 1671084780,
- "terminationGracePeriodSeconds": 1571605531283019612
- },
- "lifecycle": {
- "postStart": {
- "exec": {
- "command": [
- "366"
- ]
- },
- "httpGet": {
- "path": "367",
- "port": "368",
- "host": "369",
- "scheme": "%ʝ`ǭ",
- "httpHeaders": [
- {
- "name": "370",
- "value": "371"
- }
- ]
- },
- "tcpSocket": {
- "port": -1467648837,
- "host": "372"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "373"
- ]
- },
- "httpGet": {
- "path": "374",
- "port": "375",
- "host": "376",
- "scheme": "磂tńČȷǻ.wȏâ磠Ƴ崖S",
- "httpHeaders": [
- {
- "name": "377",
- "value": "378"
- }
- ]
- },
- "tcpSocket": {
- "port": "379",
- "host": "380"
- }
- }
- },
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "¯ÁȦtl敷斢",
- "imagePullPolicy": "愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL",
- "securityContext": {
- "capabilities": {
- "add": [
- "鬬$矐_敕ű嵞嬯t{Eɾ"
- ],
- "drop": [
- "Ȯ-湷D谹気Ƀ秮òƬɸĻo:"
+ "佉賞ǧĒzŔ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "320",
+ "role": "321",
+ "type": "322",
+ "level": "323"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "324",
+ "gmsaCredentialSpec": "325",
+ "runAsUserName": "326",
+ "hostProcess": false
},
- "runAsUser": 4224635496843945227,
- "runAsGroup": 73764735411458498,
- "runAsNonRoot": false,
+ "runAsUser": 3762269034390589700,
+ "runAsGroup": 8906175993302041196,
+ "runAsNonRoot": true,
"readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": false,
- "procMount": "s44矕Ƈè",
+ "procMount": "b繐汚磉反-n覦灲閈誹",
"seccompProfile": {
- "type": "鑏='ʨ|ǓÓ敆OɈÏ 瞍",
- "localhostProfile": "389"
+ "type": "蕉ɼ搳ǭ濑箨ʨIk(dŊ",
+ "localhostProfile": "327"
}
},
- "tty": true,
- "targetContainerName": "390"
+ "stdinOnce": true,
+ "tty": true
}
],
- "restartPolicy": "ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn",
- "terminationGracePeriodSeconds": -8335674866227004872,
- "activeDeadlineSeconds": 3305070661619041050,
- "dnsPolicy": "+Œ9两",
+ "ephemeralContainers": [
+ {
+ "name": "328",
+ "image": "329",
+ "command": [
+ "330"
+ ],
+ "args": [
+ "331"
+ ],
+ "workingDir": "332",
+ "ports": [
+ {
+ "name": "333",
+ "hostPort": -370404018,
+ "containerPort": -1844150067,
+ "protocol": "滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ",
+ "hostIP": "334"
+ }
+ ],
+ "envFrom": [
+ {
+ "prefix": "335",
+ "configMapRef": {
+ "name": "336",
+ "optional": false
+ },
+ "secretRef": {
+ "name": "337",
+ "optional": true
+ }
+ }
+ ],
+ "env": [
+ {
+ "name": "338",
+ "value": "339",
+ "valueFrom": {
+ "fieldRef": {
+ "apiVersion": "340",
+ "fieldPath": "341"
+ },
+ "resourceFieldRef": {
+ "containerName": "342",
+ "resource": "343",
+ "divisor": "334"
+ },
+ "configMapKeyRef": {
+ "name": "344",
+ "key": "345",
+ "optional": true
+ },
+ "secretKeyRef": {
+ "name": "346",
+ "key": "347",
+ "optional": true
+ }
+ }
+ }
+ ],
+ "resources": {
+ "limits": {
+ "3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$": "160"
+ },
+ "requests": {
+ "Z漤ŗ坟Ů\u003cy鯶縆ł": "907"
+ }
+ },
+ "volumeMounts": [
+ {
+ "name": "348",
+ "mountPath": "349",
+ "subPath": "350",
+ "mountPropagation": "Ò鵌Ē",
+ "subPathExpr": "351"
+ }
+ ],
+ "volumeDevices": [
+ {
+ "name": "352",
+ "devicePath": "353"
+ }
+ ],
+ "livenessProbe": {
+ "exec": {
+ "command": [
+ "354"
+ ]
+ },
+ "httpGet": {
+ "path": "355",
+ "port": "356",
+ "host": "357",
+ "scheme": "鉂WJ1抉泅ą\u0026疀ȼN翾ȾD虓氙磂t",
+ "httpHeaders": [
+ {
+ "name": "358",
+ "value": "359"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "360",
+ "host": "361"
+ },
+ "gRPC": {
+ "port": 1445923603,
+ "service": "362"
+ },
+ "initialDelaySeconds": 2040952835,
+ "timeoutSeconds": -1101457109,
+ "periodSeconds": -513325570,
+ "successThreshold": 1491794693,
+ "failureThreshold": -1457715462,
+ "terminationGracePeriodSeconds": 5797412715505520759
+ },
+ "readinessProbe": {
+ "exec": {
+ "command": [
+ "363"
+ ]
+ },
+ "httpGet": {
+ "path": "364",
+ "port": 534591402,
+ "host": "365",
+ "scheme": "ð仁Q橱9ij\\Ď愝Ű藛b磾sY",
+ "httpHeaders": [
+ {
+ "name": "366",
+ "value": "367"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "368",
+ "host": "369"
+ },
+ "gRPC": {
+ "port": -1459316800,
+ "service": "370"
+ },
+ "initialDelaySeconds": 343200077,
+ "timeoutSeconds": -1500740922,
+ "periodSeconds": -217760519,
+ "successThreshold": 616165315,
+ "failureThreshold": 731136838,
+ "terminationGracePeriodSeconds": 7306468936162090894
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "371"
+ ]
+ },
+ "httpGet": {
+ "path": "372",
+ "port": "373",
+ "host": "374",
+ "scheme": "氒ĺʈʫ羶剹ƊF豎穜姰l咑耖p^鏋蛹",
+ "httpHeaders": [
+ {
+ "name": "375",
+ "value": "376"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -337985364,
+ "host": "377"
+ },
+ "gRPC": {
+ "port": -299466656,
+ "service": "378"
+ },
+ "initialDelaySeconds": -656703944,
+ "timeoutSeconds": -143604764,
+ "periodSeconds": -1649234654,
+ "successThreshold": -263708518,
+ "failureThreshold": 541943046,
+ "terminationGracePeriodSeconds": 6451878315918197645
+ },
+ "lifecycle": {
+ "postStart": {
+ "exec": {
+ "command": [
+ "379"
+ ]
+ },
+ "httpGet": {
+ "path": "380",
+ "port": "381",
+ "host": "382",
+ "scheme": "đ\u003e*劶?",
+ "httpHeaders": [
+ {
+ "name": "383",
+ "value": "384"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": -176877925,
+ "host": "385"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "386"
+ ]
+ },
+ "httpGet": {
+ "path": "387",
+ "port": -783700027,
+ "host": "388",
+ "scheme": "*鑏=",
+ "httpHeaders": [
+ {
+ "name": "389",
+ "value": "390"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "391",
+ "host": "392"
+ }
+ }
+ },
+ "terminationMessagePath": "393",
+ "terminationMessagePolicy": "|ǓÓ敆OɈÏ 瞍髃",
+ "imagePullPolicy": "kƒK07曳wœj堑ūM鈱ɖ'蠨磼",
+ "securityContext": {
+ "capabilities": {
+ "add": [
+ "h盌3+Œ"
+ ],
+ "drop": [
+ "两@8Byß讪Ă2讅缔m葰賦迾娙ƴ"
+ ]
+ },
+ "privileged": false,
+ "seLinuxOptions": {
+ "user": "394",
+ "role": "395",
+ "type": "396",
+ "level": "397"
+ },
+ "windowsOptions": {
+ "gmsaCredentialSpecName": "398",
+ "gmsaCredentialSpec": "399",
+ "runAsUserName": "400",
+ "hostProcess": false
+ },
+ "runAsUser": 2527646958598971462,
+ "runAsGroup": -4050404152969473199,
+ "runAsNonRoot": true,
+ "readOnlyRootFilesystem": false,
+ "allowPrivilegeEscalation": true,
+ "procMount": "",
+ "seccompProfile": {
+ "type": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "localhostProfile": "401"
+ }
+ },
+ "stdinOnce": true,
+ "tty": true,
+ "targetContainerName": "402"
+ }
+ ],
+ "restartPolicy": "5Ų買霎ȃň[\u003eą S",
+ "terminationGracePeriodSeconds": -22513568208595409,
+ "activeDeadlineSeconds": 5686960545941743295,
+ "dnsPolicy": "hȱɷȰW瀤oɢ嫎",
"nodeSelector": {
- "391": "392"
+ "403": "404"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "405",
+ "serviceAccount": "406",
"automountServiceAccountToken": false,
- "nodeName": "395",
+ "nodeName": "407",
+ "hostNetwork": true,
"hostPID": true,
+ "hostIPC": true,
"shareProcessNamespace": true,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "408",
+ "role": "409",
+ "type": "410",
+ "level": "411"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
+ "gmsaCredentialSpecName": "412",
+ "gmsaCredentialSpec": "413",
+ "runAsUserName": "414",
"hostProcess": false
},
- "runAsUser": 3438266910774132295,
- "runAsGroup": 3230705132538051674,
- "runAsNonRoot": true,
+ "runAsUser": -7967112147393038497,
+ "runAsGroup": 5464200670028420111,
+ "runAsNonRoot": false,
"supplementalGroups": [
- -1600417733583164525
+ -7991366882837904237
],
- "fsGroup": -3964669311891901178,
+ "fsGroup": -8312413102936832334,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "415",
+ "value": "416"
}
],
- "fsGroupChangePolicy": "ƴ4虵p",
+ "fsGroupChangePolicy": "洪",
"seccompProfile": {
- "type": "沥7uPƒw©ɴĶ烷Ľthp",
- "localhostProfile": "405"
+ "type": "儕lmòɻŶJ詢QǾɁ鍻G",
+ "localhostProfile": "417"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "418"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "419",
+ "subdomain": "420",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1286,19 +1327,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "濦ʓɻŊ0蚢鑸鶲Ãqb轫",
+ "key": "421",
+ "operator": "颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.",
"values": [
- "410"
+ "422"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": " ",
+ "key": "423",
+ "operator": "%蹶/ʗ",
"values": [
- "412"
+ "424"
]
}
]
@@ -1307,23 +1348,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -5241849,
+ "weight": -1759815583,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "'呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG",
+ "key": "425",
+ "operator": "揤郡ɑ鮽ǍJB膾扉",
"values": [
- "414"
+ "426"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "[y#t(",
+ "key": "427",
+ "operator": "88 u怞荊ù灹8緔Tj§E蓋C",
"values": [
- "416"
+ "428"
]
}
]
@@ -1336,30 +1377,27 @@
{
"labelSelector": {
"matchLabels": {
- "rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68": "Q4_.84.K_-_0_..u.F.pq..--Q"
+ "t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b": "L_gw_-z6"
},
"matchExpressions": [
{
- "key": "8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q",
- "operator": "NotIn",
- "values": [
- "0..KpiS.oK-.O--5-yp8q_s-L"
- ]
+ "key": "0l_.23--_6l.-5_BZk5v3U",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "423"
+ "435"
],
- "topologyKey": "424",
+ "topologyKey": "436",
"namespaceSelector": {
"matchLabels": {
- "0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D": "Y_2-n_5023Xl-3Pw_-r7g"
+ "6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7": "5-x6db-L7.-__-G_2kCpS__3"
},
"matchExpressions": [
{
- "key": "3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr",
- "operator": "DoesNotExist"
+ "key": "w-_-_ve5.m_2_--Z",
+ "operator": "Exists"
}
]
}
@@ -1367,30 +1405,30 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -234140,
+ "weight": -1257588741,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1_.-_L-__bf_9_-C-PfNx__-U_P": "tW23-_.z_.._s--_F-BR-.h_2"
+ "t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1": "47M7d"
},
"matchExpressions": [
{
- "key": "s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s",
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L",
"operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "449"
],
- "topologyKey": "438",
+ "topologyKey": "450",
"namespaceSelector": {
"matchLabels": {
- "Q.-_t--O3": "7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np",
+ "key": "RT.0zo",
"operator": "DoesNotExist"
}
]
@@ -1404,32 +1442,29 @@
{
"labelSelector": {
"matchLabels": {
- "n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e": "8"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2",
- "operator": "In",
- "values": [
- "u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0"
- ]
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "463"
],
- "topologyKey": "452",
+ "topologyKey": "464",
"namespaceSelector": {
"matchLabels": {
- "m_-Z.wc..k_0_5.z.0..__k": "b.-9.Y0-_-.l__.c17__f_-336-.BT"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "N7.81_-._-_8_.._._a9",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1438,31 +1473,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 1276377114,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6": "M9..8-8yw..__Yb_58.p-06jVZ-u0"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h",
- "operator": "DoesNotExist"
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "477"
],
- "topologyKey": "466",
+ "topologyKey": "478",
"namespaceSelector": {
"matchLabels": {
- "o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6": "I-._g_.._-hKc.OB_F_--.._m_-9"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1",
- "operator": "DoesNotExist"
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1471,66 +1506,65 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "485",
"tolerations": [
{
- "key": "474",
- "operator": "r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸",
- "value": "475",
- "effect": "U烈 źfjǰɪ嘞ȏ}杻扞Ğ",
- "tolerationSeconds": 3252034671163905138
+ "key": "486",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "487",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "488",
"hostnames": [
- "477"
+ "489"
]
}
],
- "priorityClassName": "478",
- "priority": 347613368,
+ "priorityClassName": "490",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "491"
],
"searches": [
- "480"
+ "492"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "493",
+ "value": "494"
}
]
},
"readinessGates": [
{
- "conditionType": "ř岈ǎǏ]S5:œƌ嵃ǁ"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "495",
"enableServiceLinks": false,
- "preemptionPolicy": "m珢\\%傢z¦Ā竚ĐȌƨǴ叆",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D輷": "792"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -484382570,
- "topologyKey": "484",
- "whenUnsatisfiable": "nn坾\u0026Pɫ(ʙÆʨɺC`",
+ "maxSkew": 1486667065,
+ "topologyKey": "496",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T": "O.__0PPX-.-d4Badb"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
"operator": "NotIn",
"values": [
- "h.v._5.vB-.-7-.6Jv-86___3"
+ "H1z..j_.r3--T"
]
}
]
@@ -1539,42 +1573,41 @@
],
"setHostnameAsFQDN": false,
"os": {
- "name": "c'V{E犓`ɜɅc"
+ "name": "Ê"
}
}
},
"strategy": {
- "type": "Ýɹ橽ƴåj}c殶ėŔ裑烴\u003c暉Ŝ!",
+ "type": "汸\u003cƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫",
"rollingUpdate": {
"maxUnavailable": 2,
"maxSurge": 3
}
},
- "minReadySeconds": -779806398,
- "revisionHistoryLimit": 440570496,
- "paused": true,
+ "minReadySeconds": -463159422,
+ "revisionHistoryLimit": -855944448,
"rollbackTo": {
- "revision": -7008927308432218140
+ "revision": 8396665783362056578
},
- "progressDeadlineSeconds": -43713883
+ "progressDeadlineSeconds": -2081947001
},
"status": {
- "observedGeneration": 6595930309397245706,
- "replicas": -98839735,
- "updatedReplicas": -691251015,
- "readyReplicas": -408821490,
- "availableReplicas": 376262938,
- "unavailableReplicas": 632292328,
+ "observedGeneration": -7424819380422523827,
+ "replicas": 926271164,
+ "updatedReplicas": 1447614235,
+ "readyReplicas": -1113487741,
+ "availableReplicas": -1232724924,
+ "unavailableReplicas": 619959999,
"conditions": [
{
- "type": "ĈȖ董缞濪葷cŲ",
- "status": "5Ë",
- "lastUpdateTime": "2909-01-09T22:03:18Z",
- "lastTransitionTime": "2294-05-20T00:00:03Z",
- "reason": "491",
- "message": "492"
+ "type": "¹bCũw¼ ǫđ槴Ċį軠\u003e桼劑躮",
+ "status": "9=ȳB鼲糰Eè6苁嗀ĕ佣",
+ "lastUpdateTime": "2821-04-08T08:07:20Z",
+ "lastTransitionTime": "2915-05-25T05:58:38Z",
+ "reason": "503",
+ "message": "504"
}
],
- "collisionCount": 955020766
+ "collisionCount": 1266675441
}
}
\ No newline at end of file
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb
index 03916857134..e13a4898a05 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml
index 3866f67dcf8..e95cc2b0716 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml
@@ -31,13 +31,12 @@ metadata:
selfLink: "5"
uid: "7"
spec:
- minReadySeconds: -779806398
- paused: true
- progressDeadlineSeconds: -43713883
+ minReadySeconds: -463159422
+ progressDeadlineSeconds: -2081947001
replicas: 896585016
- revisionHistoryLimit: 440570496
+ revisionHistoryLimit: -855944448
rollbackTo:
- revision: -7008927308432218140
+ revision: 8396665783362056578
selector:
matchExpressions:
- key: 50-u--25cu87--r7p-w1e67-8pj5t-kl-v0q6b68--nu5oii38fn-8.629b-jd-8c45-0-8--6n--w0--w---196g8d--iv1-5--5ht-a-29--0qso796/3___47._49pIB_o61ISU4--A_.XK_._M99
@@ -48,7 +47,7 @@ spec:
rollingUpdate:
maxSurge: 3
maxUnavailable: 2
- type: Ýɹ橽ƴåj}c殶ėŔ裑烴<暉Ŝ!
+ type: 汸<ƋlɋN磋镮ȺPÈɥ偁髕ģƗ鐫
template:
metadata:
annotations:
@@ -81,490 +80,508 @@ spec:
selfLink: "29"
uid: ?Qȫş
spec:
- activeDeadlineSeconds: 3305070661619041050
+ activeDeadlineSeconds: 5686960545941743295
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: '''呪欼萜õ箘鸰呾顓闉ȦT瑄ǻG'
+ - key: "425"
+ operator: 揤郡ɑ鮽ǍJB膾扉
values:
- - "414"
+ - "426"
matchFields:
- - key: "415"
- operator: '[y#t('
+ - key: "427"
+ operator: 88 u怞荊ù灹8緔Tj§E蓋C
values:
- - "416"
- weight: -5241849
+ - "428"
+ weight: -1759815583
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 濦ʓɻŊ0蚢鑸鶲Ãqb轫
+ - key: "421"
+ operator: 颪œ]洈愥朘ZDŽʤ搤ȃ$|gɳ礬.
values:
- - "410"
+ - "422"
matchFields:
- - key: "411"
- operator: ' '
+ - key: "423"
+ operator: '%蹶/ʗ'
values:
- - "412"
+ - "424"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: s_6O-5_7_-0w_--5-_.3--_9QW2JkU27_.-4T-I.-..K.-.0__sD.-.-_s
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/q.8_00.L
operator: Exists
matchLabels:
- 1_.-_L-__bf_9_-C-PfNx__-U_P: tW23-_.z_.._s--_F-BR-.h_2
+ ? t-9jcz9f-6-4g-z46--f2t-m836.073phjo--8kb6--ut---p8--3-e-3-44---h-q7-p-2djmscp--ac8u23-k/x-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.1
+ : 47M7d
namespaceSelector:
matchExpressions:
- - key: P_p_Y-.2__a_dWU_V-_Q_Ap._2_xa_o..p_B-d--Q5._D6_.d-n_9np
+ - key: RT.0zo
operator: DoesNotExist
matchLabels:
- Q.-_t--O3: 7z2-y.-...C4_-_2G0.-c_C.G.h--m._fN._k8__._ep2P.B._A_09E
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: -234140
+ - "449"
+ topologyKey: "450"
+ weight: -1257588741
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 8b-3-3b17cab-ppy5e--9p-61-2we16h--5-d-k-sm.2xv17r--32b-----4-670tfz-up3n/ov_Z--Zg-_Q
- operator: NotIn
- values:
- - 0..KpiS.oK-.O--5-yp8q_s-L
- matchLabels:
- rG-7--p9.-_0R.-_-3_L_2--_v2.5p_..Y-.wg_-b8a_68: Q4_.84.K_-_0_..u.F.pq..--Q
- namespaceSelector:
- matchExpressions:
- - key: 3hjo--8kb6--ut---p8--3-e-3-44-e.w--i--40wv--in-870w--it6k47-7yd-y--3wc8q8/wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m...Cr
+ - key: 0l_.23--_6l.-5_BZk5v3U
operator: DoesNotExist
matchLabels:
- 0--0g-q-22r4wye52y-h7463lyps4483-o--3f1p7--43nw-l-x8/Hz_V_.r_v_._e_-78o_6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4D: Y_2-n_5023Xl-3Pw_-r7g
+ t-u-4----q-x3w3dn5-1rhm-5y--z---69o-9-69mxv17r--32b-----4-67t.qk5--f4e4--r1k278l-d-8o1-x-1wl-r/a6Sp_N-S..O-BZ..6-1.b: L_gw_-z6
+ namespaceSelector:
+ matchExpressions:
+ - key: w-_-_ve5.m_2_--Z
+ operator: Exists
+ matchLabels:
+ 6Z..11_7pX_.-mLlx...w_t-_.5.40Rw4gD7: 5-x6db-L7.-__-G_2kCpS__3
namespaces:
- - "423"
- topologyKey: "424"
+ - "435"
+ topologyKey: "436"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: v54le-to9e--a-7je9fz87-2jvd23-0p1.360v2-x-cpor---cigu--s/j-dY7_M_-._M5..-N_H_55..--E3_2h
- operator: DoesNotExist
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
+ operator: Exists
matchLabels:
- 1f8--tf---7r88-1--p61cd--s-nu5718--lks7d-x9-f-62o8/L9._5-..Bi_..aOQ_._Yn.-.4t.U.VU__-_BAB_35H__.B_6_-U..u8gwb.-6: M9..8-8yw..__Yb_58.p-06jVZ-u0
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: 410-f-o-fr-5-3t--y9---2--e-yya3.98t-----60t--019-yg--4-37f-rwh-7be--y0agp51x597277q---nt/M-0R.-I-_23L_J49t-X..1
- operator: DoesNotExist
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- ? o17qre-33-5-u8f0f1qv--i72-x3---v25f56.w84s-n-i-711s4--9s8--o-8dm---b----03-64-8l7-l-0787--1--ia5yl9k/267hP-lX-_-..5-.._r6M__4-P-g3J6
- : I-._g_.._-hKc.OB_F_--.._m_-9
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: 1276377114
+ - "477"
+ topologyKey: "478"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: 75-p-z---k-5r6h--y7o-0-wq-zfdw73w0---4a18-f4/d1-CdM._bk81S3.s_s_6.-_v__.rP._2_O--d.7.--2
- operator: In
- values:
- - u-.C.8-S9_-4CwMqp..__._-J_-fk3-_j.133eT_2_t_IkI-mt4...rBQ.9-0
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- n7-a6434---7i-f-d019o1v3u.2k8-2-d--n--r8661--3-8-t48g-w2q7z-vps548-d-1r7j--v2x-64dwb/e: "8"
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: N7.81_-._-_8_.._._a9
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - vi.gZdnUVP._81_---l_3_-_G-D....js--a---..6bD_Mh
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- m_-Z.wc..k_0_5.z.0..__k: b.-9.Y0-_-.l__.c17__f_-336-.BT
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "463"
+ topologyKey: "464"
automountServiceAccountToken: false
containers:
- args:
+ - "255"
+ command:
- "254"
- command:
- - "253"
env:
- - name: "261"
- value: "262"
+ - name: "262"
+ value: "263"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
+ key: "269"
+ name: "268"
optional: false
fieldRef:
- apiVersion: "263"
- fieldPath: "264"
+ apiVersion: "264"
+ fieldPath: "265"
resourceFieldRef:
- containerName: "265"
- divisor: "965"
- resource: "266"
+ containerName: "266"
+ divisor: "945"
+ resource: "267"
secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
envFrom:
- configMapRef:
- name: "259"
- optional: false
- prefix: "258"
- secretRef:
name: "260"
- optional: true
- image: "252"
- imagePullPolicy: ņ
- lifecycle:
- postStart:
- exec:
- command:
- - "300"
- httpGet:
- host: "302"
- httpHeaders:
- - name: "303"
- value: "304"
- path: "301"
- port: 1502643091
- scheme: 蜷ɔ幩š
- tcpSocket:
- host: "305"
- port: 455833230
- preStop:
- exec:
- command:
- - "306"
- httpGet:
- host: "308"
- httpHeaders:
- - name: "309"
- value: "310"
- path: "307"
- port: 1076497581
- scheme: h4ɊHȖ|ʐ
- tcpSocket:
- host: "311"
- port: 248533396
- livenessProbe:
- exec:
- command:
- - "277"
- failureThreshold: -1204965397
- httpGet:
- host: "280"
- httpHeaders:
- - name: "281"
- value: "282"
- path: "278"
- port: "279"
- scheme: 蛜6Ɖ飴ɎiǨź'ǵɐ鰥Z龏
- initialDelaySeconds: 234253676
- periodSeconds: 1080545253
- successThreshold: 1843491416
- tcpSocket:
- host: "283"
- port: -614098868
- terminationGracePeriodSeconds: -2125560879532395341
- timeoutSeconds: 846286700
- name: "251"
- ports:
- - containerPort: 1174240097
- hostIP: "257"
- hostPort: -1314967760
- name: "256"
- protocol: \E¦队偯J僳徥淳
- readinessProbe:
- exec:
- command:
- - "284"
- failureThreshold: -402384013
- httpGet:
- host: "287"
- httpHeaders:
- - name: "288"
- value: "289"
- path: "285"
- port: "286"
- scheme: 花ª瘡蟦JBʟ鍏
- initialDelaySeconds: -2062708879
- periodSeconds: -141401239
- successThreshold: -1187301925
- tcpSocket:
- host: "291"
- port: "290"
- terminationGracePeriodSeconds: -779972051078659613
- timeoutSeconds: 215186711
- resources:
- limits:
- 4Ǒ輂,ŕĪ: "398"
- requests:
- V訆Ǝżŧ: "915"
- securityContext:
- allowPrivilegeEscalation: true
- capabilities:
- add:
- - DŽ髐njʉBn(fǂǢ曣
- drop:
- - ay
- privileged: false
- procMount: u8晲
- readOnlyRootFilesystem: false
- runAsGroup: -4786249339103684082
- runAsNonRoot: true
- runAsUser: -3576337664396773931
- seLinuxOptions:
- level: "316"
- role: "314"
- type: "315"
- user: "313"
- seccompProfile:
- localhostProfile: "320"
- type: '[irȎ3Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲ'
- windowsOptions:
- gmsaCredentialSpec: "318"
- gmsaCredentialSpecName: "317"
- hostProcess: true
- runAsUserName: "319"
- startupProbe:
- exec:
- command:
- - "292"
- failureThreshold: 737722974
- httpGet:
- host: "295"
- httpHeaders:
- - name: "296"
- value: "297"
- path: "293"
- port: "294"
- scheme: İ
- initialDelaySeconds: -1615316902
- periodSeconds: -522215271
- successThreshold: 1374479082
- tcpSocket:
- host: "299"
- port: "298"
- terminationGracePeriodSeconds: -247950237984551522
- timeoutSeconds: -793616601
- stdin: true
- terminationMessagePath: "312"
- terminationMessagePolicy: 迮ƙIJ嘢4ʗN,丽饾| 鞤ɱďW賁Ěɭ
- volumeDevices:
- - devicePath: "276"
- name: "275"
- volumeMounts:
- - mountPath: "272"
- mountPropagation: SÄ蚃ɣľ)酊龨δ摖ȱğ_<
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
- dnsConfig:
- nameservers:
- - "479"
- options:
- - name: "481"
- value: "482"
- searches:
- - "480"
- dnsPolicy: +Œ9两
- enableServiceLinks: false
- ephemeralContainers:
- - args:
- - "324"
- command:
- - "323"
- env:
- - name: "331"
- value: "332"
- valueFrom:
- configMapKeyRef:
- key: "338"
- name: "337"
- optional: true
- fieldRef:
- apiVersion: "333"
- fieldPath: "334"
- resourceFieldRef:
- containerName: "335"
- divisor: "464"
- resource: "336"
- secretKeyRef:
- key: "340"
- name: "339"
- optional: false
- envFrom:
- - configMapRef:
- name: "329"
- optional: true
- prefix: "328"
+ optional: false
+ prefix: "259"
secretRef:
- name: "330"
+ name: "261"
optional: true
- image: "322"
- imagePullPolicy: 愝Ű藛b磾sYȠ繽敮ǰ詀ǿ忀oɎƺL
+ image: "253"
+ imagePullPolicy: e躒訙Ǫʓ)ǂť嗆u8晲T[ir
lifecycle:
postStart:
exec:
command:
- - "366"
+ - "303"
httpGet:
- host: "369"
+ host: "306"
httpHeaders:
- - name: "370"
- value: "371"
- path: "367"
- port: "368"
- scheme: '%ʝ`ǭ'
+ - name: "307"
+ value: "308"
+ path: "304"
+ port: "305"
+ scheme: ʒǚ鍰\縑ɀ撑¼蠾8餑噭Dµ
tcpSocket:
- host: "372"
- port: -1467648837
+ host: "310"
+ port: "309"
preStop:
exec:
command:
- - "373"
+ - "311"
httpGet:
- host: "376"
+ host: "314"
httpHeaders:
- - name: "377"
- value: "378"
- path: "374"
- port: "375"
- scheme: 磂tńČȷǻ.wȏâ磠Ƴ崖S
+ - name: "315"
+ value: "316"
+ path: "312"
+ port: "313"
+ scheme: ƷƣMț
tcpSocket:
- host: "380"
- port: "379"
+ host: "318"
+ port: "317"
livenessProbe:
exec:
command:
- - "347"
- failureThreshold: -1211577347
+ - "278"
+ failureThreshold: -560238386
+ gRPC:
+ port: -1187301925
+ service: "285"
httpGet:
- host: "349"
+ host: "281"
httpHeaders:
- - name: "350"
- value: "351"
- path: "348"
- port: -1088996269
- scheme: ƘƵŧ1ƟƓ宆!
- initialDelaySeconds: -1065853311
- periodSeconds: -843639240
- successThreshold: 1573261475
+ - name: "282"
+ value: "283"
+ path: "279"
+ port: "280"
+ scheme: Jih亏yƕ丆録²
+ initialDelaySeconds: -402384013
+ periodSeconds: -617381112
+ successThreshold: 1851229369
tcpSocket:
- host: "352"
- port: -1836225650
- terminationGracePeriodSeconds: 6567123901989213629
- timeoutSeconds: 559999152
- name: "321"
+ host: "284"
+ port: 2080874371
+ terminationGracePeriodSeconds: 7124276984274024394
+ timeoutSeconds: -181601395
+ name: "252"
ports:
- - containerPort: 2037135322
- hostIP: "327"
- hostPort: 1453852685
- name: "326"
- protocol: ǧĒzŔ瘍N
+ - containerPort: -760292259
+ hostIP: "258"
+ hostPort: -560717833
+ name: "257"
+ protocol: w媀瓄&翜舞拉Œɥ颶妧Ö闊 鰔澝qV訆
readinessProbe:
exec:
command:
- - "353"
- failureThreshold: 757223010
+ - "286"
+ failureThreshold: 1956567721
+ gRPC:
+ port: 1443329506
+ service: "293"
httpGet:
- host: "355"
+ host: "289"
httpHeaders:
- - name: "356"
- value: "357"
- path: "354"
- port: 705333281
- scheme: xƂ9阠
- initialDelaySeconds: -606614374
- periodSeconds: 498878902
- successThreshold: 652646450
+ - name: "290"
+ value: "291"
+ path: "287"
+ port: "288"
+ scheme: '"6x$1sȣ±p'
+ initialDelaySeconds: 480631652
+ periodSeconds: 1167615307
+ successThreshold: 455833230
tcpSocket:
- host: "358"
- port: -916583020
- terminationGracePeriodSeconds: -8216131738691912586
- timeoutSeconds: -3478003
+ host: "292"
+ port: 1900201288
+ terminationGracePeriodSeconds: 666108157153018873
+ timeoutSeconds: -1983435813
resources:
limits:
- 汚磉反-n: "653"
+ ĩ餠籲磣Óƿ頀"冓鍓贯澔 ƺ蛜6Ɖ飴: "86"
requests:
- ^輅9ɛ棕ƈ眽炊礫Ƽ¨Ix糂腂ǂǚ: "999"
+ ə娯Ȱ囌{: "853"
securityContext:
allowPrivilegeEscalation: false
capabilities:
add:
- - 鬬$矐_敕ű嵞嬯t{Eɾ
+ - Ĕ\ɢX鰨松/Ȁĵ鴁ĩȲǸ|蕎
drop:
- - 'Ȯ-湷D谹気Ƀ秮òƬɸĻo:'
+ - 佉賞ǧĒzŔ
privileged: true
- procMount: s44矕Ƈè
+ procMount: b繐汚磉反-n覦灲閈誹
readOnlyRootFilesystem: false
- runAsGroup: 73764735411458498
- runAsNonRoot: false
- runAsUser: 4224635496843945227
+ runAsGroup: 8906175993302041196
+ runAsNonRoot: true
+ runAsUser: 3762269034390589700
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "323"
+ role: "321"
+ type: "322"
+ user: "320"
seccompProfile:
- localhostProfile: "389"
- type: 鑏='ʨ|ǓÓ敆OɈÏ 瞍
+ localhostProfile: "327"
+ type: 蕉ɼ搳ǭ濑箨ʨIk(dŊ
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "325"
+ gmsaCredentialSpecName: "324"
+ hostProcess: false
+ runAsUserName: "326"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: 1671084780
+ - "294"
+ failureThreshold: -1835677314
+ gRPC:
+ port: 1473407401
+ service: "302"
httpGet:
- host: "362"
+ host: "297"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: Ů*劶?
+ tcpSocket:
+ host: "385"
+ port: -176877925
+ preStop:
+ exec:
+ command:
+ - "386"
+ httpGet:
+ host: "388"
+ httpHeaders:
+ - name: "389"
+ value: "390"
+ path: "387"
+ port: -783700027
+ scheme: '*鑏='
+ tcpSocket:
+ host: "392"
+ port: "391"
+ livenessProbe:
+ exec:
+ command:
+ - "354"
+ failureThreshold: -1457715462
+ gRPC:
+ port: 1445923603
+ service: "362"
+ httpGet:
+ host: "357"
+ httpHeaders:
+ - name: "358"
+ value: "359"
+ path: "355"
+ port: "356"
+ scheme: 鉂WJ1抉泅ą&疀ȼN翾ȾD虓氙磂t
+ initialDelaySeconds: 2040952835
+ periodSeconds: -513325570
+ successThreshold: 1491794693
+ tcpSocket:
+ host: "361"
+ port: "360"
+ terminationGracePeriodSeconds: 5797412715505520759
+ timeoutSeconds: -1101457109
+ name: "328"
+ ports:
+ - containerPort: -1844150067
+ hostIP: "334"
+ hostPort: -370404018
+ name: "333"
+ protocol: 滞廬耐鷞焬CQm坊柩劄奼[ƕƑĝ®EĨ
+ readinessProbe:
+ exec:
+ command:
+ - "363"
+ failureThreshold: 731136838
+ gRPC:
+ port: -1459316800
+ service: "370"
+ httpGet:
+ host: "365"
+ httpHeaders:
+ - name: "366"
+ value: "367"
+ path: "364"
+ port: 534591402
+ scheme: ð仁Q橱9ij\Ď愝Ű藛b磾sY
+ initialDelaySeconds: 343200077
+ periodSeconds: -217760519
+ successThreshold: 616165315
+ tcpSocket:
+ host: "369"
+ port: "368"
+ terminationGracePeriodSeconds: 7306468936162090894
+ timeoutSeconds: -1500740922
+ resources:
+ limits:
+ 3ǰ廋i乳'ȘUɻ;襕ċ桉桃喕蠲$: "160"
+ requests:
+ Z漤ŗ坟Ů犵殇ŕ
tcpSocket:
- host: "241"
- port: "240"
+ host: "242"
+ port: "241"
livenessProbe:
exec:
command:
- "207"
- failureThreshold: -1150474479
+ failureThreshold: -93157681
+ gRPC:
+ port: -670390306
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -642,14 +663,14 @@ spec:
path: "208"
port: -1196874390
scheme: S晒嶗UÐ_ƮA攤
- initialDelaySeconds: 1885897314
- periodSeconds: 1054858106
- successThreshold: 232569106
+ initialDelaySeconds: -2036074491
+ periodSeconds: 165047920
+ successThreshold: -393291312
tcpSocket:
host: "212"
port: -498930176
- terminationGracePeriodSeconds: 3196828455642760911
- timeoutSeconds: -465677631
+ terminationGracePeriodSeconds: -4856573944864548413
+ timeoutSeconds: -148216266
name: "181"
ports:
- containerPort: 377225334
@@ -660,24 +681,27 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: 267768240
+ - "214"
+ failureThreshold: -970312425
+ gRPC:
+ port: -630252364
+ service: "220"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 3!Zɾģ毋Ó6
- initialDelaySeconds: -228822833
- periodSeconds: -1213051101
- successThreshold: 1451056156
+ path: "215"
+ port: -331283026
+ scheme: ȉ
+ initialDelaySeconds: 391562775
+ periodSeconds: -832805508
+ successThreshold: -228822833
tcpSocket:
host: "219"
- port: -832805508
- terminationGracePeriodSeconds: -549108701661089463
- timeoutSeconds: -970312425
+ port: 714088955
+ terminationGracePeriodSeconds: -5210014804617784724
+ timeoutSeconds: -775511009
resources:
limits:
ǚ灄鸫rʤî萨zvt: "829"
@@ -687,52 +711,55 @@ spec:
allowPrivilegeEscalation: true
capabilities:
add:
- - Ÿ8T 苧yñKJɐ扵
+ - 咡W
drop:
- - ƚ绤fʀļ腩墺Ò媁荭gw忊|E剒蔞
+ - 敄lu|
privileged: false
- procMount: <6
- readOnlyRootFilesystem: false
- runAsGroup: -7664873352063067579
- runAsNonRoot: true
- runAsUser: 3582457287488712192
+ procMount: E埄Ȁ朦 wƯ貾坢'
+ readOnlyRootFilesystem: true
+ runAsGroup: -4333562938396485230
+ runAsNonRoot: false
+ runAsUser: -226514069321683925
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "247"
+ role: "245"
+ type: "246"
+ user: "244"
seccompProfile:
- localhostProfile: "250"
- type: 簳°Ļǟi&皥贸
+ localhostProfile: "251"
+ type: aŕ翑0展}硐庰%皧V垾现葢ŵ橨鬶l
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
- hostProcess: true
- runAsUserName: "249"
+ gmsaCredentialSpec: "249"
+ gmsaCredentialSpecName: "248"
+ hostProcess: false
+ runAsUserName: "250"
startupProbe:
exec:
command:
- - "220"
- failureThreshold: -36782737
+ - "221"
+ failureThreshold: -1980314709
+ gRPC:
+ port: -1798849477
+ service: "228"
httpGet:
host: "223"
httpHeaders:
- name: "224"
value: "225"
- path: "221"
- port: "222"
- scheme: '#yV''WKw(ğ儴Ůĺ}'
- initialDelaySeconds: -1244623134
- periodSeconds: -398297599
- successThreshold: 873056500
+ path: "222"
+ port: -1455098755
+ scheme: 眖R#yV'W
+ initialDelaySeconds: -1017263912
+ periodSeconds: -1252938503
+ successThreshold: 893823156
tcpSocket:
- host: "226"
- port: -20130017
- terminationGracePeriodSeconds: -7464951486382552895
- timeoutSeconds: -1334110502
+ host: "227"
+ port: "226"
+ terminationGracePeriodSeconds: 2455602852175027275
+ timeoutSeconds: 852780575
stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: 屡ʁ
+ terminationMessagePath: "243"
+ terminationMessagePolicy: 圯W:ĸ輦唊#v铿ʩȂ4ē鐭#嬀
volumeDevices:
- devicePath: "206"
name: "205"
@@ -744,69 +771,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "407"
nodeSelector:
- "391": "392"
+ "403": "404"
os:
- name: c'V{E犓`ɜɅc
+ name: Ê
overhead:
- D輷: "792"
- preemptionPolicy: m珢\%傢z¦Ā竚ĐȌƨǴ叆
- priority: 347613368
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "490"
readinessGates:
- - conditionType: ř岈ǎǏ]S5:œƌ嵃ǁ
- restartPolicy: ɣȕW歹s梊ɥʋăƻ遲njlȘ鹾KƂʼn
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: 5Ų買霎ȃň[>ą S
+ runtimeClassName: "495"
+ schedulerName: "485"
securityContext:
- fsGroup: -3964669311891901178
- fsGroupChangePolicy: ƴ4虵p
- runAsGroup: 3230705132538051674
- runAsNonRoot: true
- runAsUser: 3438266910774132295
+ fsGroup: -8312413102936832334
+ fsGroupChangePolicy: 洪
+ runAsGroup: 5464200670028420111
+ runAsNonRoot: false
+ runAsUser: -7967112147393038497
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "411"
+ role: "409"
+ type: "410"
+ user: "408"
seccompProfile:
- localhostProfile: "405"
- type: 沥7uPƒw©ɴĶ烷Ľthp
+ localhostProfile: "417"
+ type: 儕lmòɻŶJ詢QǾɁ鍻G
supplementalGroups:
- - -1600417733583164525
+ - -7991366882837904237
sysctls:
- - name: "403"
- value: "404"
+ - name: "415"
+ value: "416"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
+ gmsaCredentialSpec: "413"
+ gmsaCredentialSpecName: "412"
hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
+ runAsUserName: "414"
+ serviceAccount: "406"
+ serviceAccountName: "405"
setHostnameAsFQDN: false
shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -8335674866227004872
+ subdomain: "420"
+ terminationGracePeriodSeconds: -22513568208595409
tolerations:
- - effect: U烈 źfjǰɪ嘞ȏ}杻扞Ğ
- key: "474"
- operator: r}梳攔wŲ魦Ɔ0ƢĮÀĘÆɆȸȢ蒸
- tolerationSeconds: 3252034671163905138
- value: "475"
+ - key: "486"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "487"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: zz8-35x38i-qnr-5zi82dc3do--7lw63jvksy--w-i33-dzn6-302m7rx1/7Jl----i_I.-_7g-8iJ--p-7f3-2_Z_V_-q-L34-_D86-W_g52
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
operator: NotIn
values:
- - h.v._5.vB-.-7-.6Jv-86___3
+ - H1z..j_.r3--T
matchLabels:
- n.DL.o_e-d92e8S_-0-_8Vz-E41___75Q-T: O.__0PPX-.-d4Badb
- maxSkew: -484382570
- topologyKey: "484"
- whenUnsatisfiable: nn坾&Pɫ(ʙÆʨɺC`
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "496"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1066,17 +1092,17 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 376262938
- collisionCount: 955020766
+ availableReplicas: -1232724924
+ collisionCount: 1266675441
conditions:
- - lastTransitionTime: "2294-05-20T00:00:03Z"
- lastUpdateTime: "2909-01-09T22:03:18Z"
- message: "492"
- reason: "491"
- status: 5Ë
- type: ĈȖ董缞濪葷cŲ
- observedGeneration: 6595930309397245706
- readyReplicas: -408821490
- replicas: -98839735
- unavailableReplicas: 632292328
- updatedReplicas: -691251015
+ - lastTransitionTime: "2915-05-25T05:58:38Z"
+ lastUpdateTime: "2821-04-08T08:07:20Z"
+ message: "504"
+ reason: "503"
+ status: 9=ȳB鼲糰Eè6苁嗀ĕ佣
+ type: ¹bCũw¼ ǫđ槴Ċį軠>桼劑躮
+ observedGeneration: -7424819380422523827
+ readyReplicas: -1113487741
+ replicas: 926271164
+ unavailableReplicas: 619959999
+ updatedReplicas: 1447614235
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json
index 9dac2e3e7ce..999294727b2 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json
+++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.json
@@ -558,24 +558,28 @@
"port": -187060941,
"host": "212"
},
- "initialDelaySeconds": -442393168,
- "timeoutSeconds": -307373517,
- "periodSeconds": 1109079597,
- "successThreshold": -646728130,
- "failureThreshold": 1684643131,
- "terminationGracePeriodSeconds": 5055443896475056676
+ "gRPC": {
+ "port": 1507815593,
+ "service": "213"
+ },
+ "initialDelaySeconds": 1498833271,
+ "timeoutSeconds": 1505082076,
+ "periodSeconds": 1447898632,
+ "successThreshold": 1602745893,
+ "failureThreshold": 1599076900,
+ "terminationGracePeriodSeconds": -8249176398367452506
},
"readinessProbe": {
"exec": {
"command": [
- "213"
+ "214"
]
},
"httpGet": {
- "path": "214",
- "port": "215",
+ "path": "215",
+ "port": 963670270,
"host": "216",
- "scheme": "惇¸t颟.鵫ǚ灄鸫rʤî萨",
+ "scheme": "ɘȌ脾嚏吐ĠLƐȤ藠3.v",
"httpHeaders": [
{
"name": "217",
@@ -587,336 +591,330 @@
"port": "219",
"host": "220"
},
- "initialDelaySeconds": 1885896895,
- "timeoutSeconds": -1232888129,
- "periodSeconds": -1682044542,
- "successThreshold": 1182477686,
- "failureThreshold": -503805926,
- "terminationGracePeriodSeconds": 332054723335023688
+ "gRPC": {
+ "port": 1182477686,
+ "service": "221"
+ },
+ "initialDelaySeconds": -503805926,
+ "timeoutSeconds": 77312514,
+ "periodSeconds": -763687725,
+ "successThreshold": -246563990,
+ "failureThreshold": 10098903,
+ "terminationGracePeriodSeconds": 4704090421576984895
},
"startupProbe": {
"exec": {
"command": [
- "221"
+ "222"
]
},
"httpGet": {
- "path": "222",
- "port": "223",
- "host": "224",
- "scheme": "«丯Ƙ枛牐ɺ皚",
+ "path": "223",
+ "port": "224",
+ "host": "225",
+ "scheme": "牐ɺ皚|懥",
"httpHeaders": [
{
- "name": "225",
- "value": "226"
+ "name": "226",
+ "value": "227"
}
]
},
"tcpSocket": {
- "port": -1934111455,
- "host": "227"
+ "port": "228",
+ "host": "229"
},
- "initialDelaySeconds": 766864314,
- "timeoutSeconds": 1146016612,
- "periodSeconds": 1495880465,
- "successThreshold": -1032967081,
- "failureThreshold": 59664438,
- "terminationGracePeriodSeconds": 4116652091516790056
+ "gRPC": {
+ "port": 593802074,
+ "service": "230"
+ },
+ "initialDelaySeconds": 538852927,
+ "timeoutSeconds": -407545915,
+ "periodSeconds": 902535764,
+ "successThreshold": 716842280,
+ "failureThreshold": 1479266199,
+ "terminationGracePeriodSeconds": 702282827459446622
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "228"
+ "231"
]
},
"httpGet": {
- "path": "229",
- "port": -1196874390,
- "host": "230",
- "scheme": "S晒嶗UÐ_ƮA攤",
+ "path": "232",
+ "port": 1883209805,
+ "host": "233",
+ "scheme": "ɓȌʟni酛3ƁÀ*",
"httpHeaders": [
{
- "name": "231",
- "value": "232"
+ "name": "234",
+ "value": "235"
}
]
},
"tcpSocket": {
- "port": -498930176,
- "host": "233"
+ "port": "236",
+ "host": "237"
}
},
"preStop": {
"exec": {
"command": [
- "234"
+ "238"
]
},
"httpGet": {
- "path": "235",
- "port": "236",
- "host": "237",
- "scheme": "鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡",
+ "path": "239",
+ "port": "240",
+ "host": "241",
+ "scheme": "fBls3!Zɾģ毋Ó6",
"httpHeaders": [
{
- "name": "238",
- "value": "239"
+ "name": "242",
+ "value": "243"
}
]
},
"tcpSocket": {
- "port": "240",
- "host": "241"
+ "port": -832805508,
+ "host": "244"
}
}
},
- "terminationMessagePath": "242",
- "terminationMessagePolicy": "?$矡ȶ网棊ʢ",
- "imagePullPolicy": "ʎȺ眖R#",
+ "terminationMessagePath": "245",
+ "terminationMessagePolicy": "庎D}埽uʎȺ眖R#yV'WKw(ğ儴",
+ "imagePullPolicy": "跦Opwǩ曬逴褜1",
"securityContext": {
"capabilities": {
"add": [
- "'WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ"
+ "ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]"
],
"drop": [
- ""
+ "¿\u003e犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩ"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "243",
- "role": "244",
- "type": "245",
- "level": "246"
+ "user": "246",
+ "role": "247",
+ "type": "248",
+ "level": "249"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "247",
- "gmsaCredentialSpec": "248",
- "runAsUserName": "249",
+ "gmsaCredentialSpecName": "250",
+ "gmsaCredentialSpec": "251",
+ "runAsUserName": "252",
"hostProcess": false
},
- "runAsUser": -2529737859863639391,
- "runAsGroup": 7694930383795602762,
+ "runAsUser": 2185575187737222181,
+ "runAsGroup": 3811348330690808371,
"runAsNonRoot": true,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "\u003e郵[+扴ȨŮ",
+ "allowPrivilegeEscalation": false,
+ "procMount": " 苧yñKJɐ",
"seccompProfile": {
- "type": "朷Ǝ膯ljVX1虊谇",
- "localhostProfile": "250"
+ "type": "Gƚ绤fʀļ腩墺Ò媁荭gw",
+ "localhostProfile": "253"
}
},
- "stdin": true,
- "tty": true
+ "stdinOnce": true
}
],
"containers": [
{
- "name": "251",
- "image": "252",
+ "name": "254",
+ "image": "255",
"command": [
- "253"
+ "256"
],
"args": [
- "254"
+ "257"
],
- "workingDir": "255",
+ "workingDir": "258",
"ports": [
{
- "name": "256",
- "hostPort": 1381579966,
- "containerPort": -1418092595,
- "protocol": "闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x",
- "hostIP": "257"
+ "name": "259",
+ "hostPort": -1532958330,
+ "containerPort": -438588982,
+ "protocol": "表徶đ寳议Ƭƶ氩Ȩ\u003c6鄰簳°Ļǟi\u0026皥",
+ "hostIP": "260"
}
],
"envFrom": [
{
- "prefix": "258",
+ "prefix": "261",
"configMapRef": {
- "name": "259",
- "optional": true
+ "name": "262",
+ "optional": false
},
"secretRef": {
- "name": "260",
- "optional": true
+ "name": "263",
+ "optional": false
}
}
],
"env": [
{
- "name": "261",
- "value": "262",
+ "name": "264",
+ "value": "265",
"valueFrom": {
"fieldRef": {
- "apiVersion": "263",
- "fieldPath": "264"
+ "apiVersion": "266",
+ "fieldPath": "267"
},
"resourceFieldRef": {
- "containerName": "265",
- "resource": "266",
- "divisor": "894"
+ "containerName": "268",
+ "resource": "269",
+ "divisor": "801"
},
"configMapKeyRef": {
- "name": "267",
- "key": "268",
- "optional": true
+ "name": "270",
+ "key": "271",
+ "optional": false
},
"secretKeyRef": {
- "name": "269",
- "key": "270",
- "optional": false
+ "name": "272",
+ "key": "273",
+ "optional": true
}
}
}
],
"resources": {
"limits": {
- "W\u003c敄lu|榝$î.Ȏ": "546"
+ "队偯J僳徥淳4揻": "175"
},
"requests": {
- "剒蔞|表": "379"
+ "": "170"
}
},
"volumeMounts": [
{
- "name": "271",
- "readOnly": true,
- "mountPath": "272",
- "subPath": "273",
- "mountPropagation": "朦 wƯ貾坢'跩",
- "subPathExpr": "274"
+ "name": "274",
+ "mountPath": "275",
+ "subPath": "276",
+ "mountPropagation": "×x锏ɟ4Ǒ",
+ "subPathExpr": "277"
}
],
"volumeDevices": [
{
- "name": "275",
- "devicePath": "276"
+ "name": "278",
+ "devicePath": "279"
}
],
"livenessProbe": {
"exec": {
"command": [
- "277"
+ "280"
]
},
"httpGet": {
- "path": "278",
- "port": -1471289102,
- "host": "279",
- "scheme": "i\u0026皥贸碔lNKƙ順\\E¦队偯J僳徥淳",
+ "path": "281",
+ "port": "282",
+ "host": "283",
+ "scheme": "澝qV訆Ǝżŧ",
"httpHeaders": [
{
- "name": "280",
- "value": "281"
+ "name": "284",
+ "value": "285"
}
]
},
"tcpSocket": {
- "port": 113873869,
- "host": "282"
+ "port": 204229950,
+ "host": "286"
},
- "initialDelaySeconds": -1421951296,
- "timeoutSeconds": 878005329,
- "periodSeconds": -1244119841,
- "successThreshold": 1235694147,
- "failureThreshold": 348370746,
- "terminationGracePeriodSeconds": 2011630253582325853
+ "gRPC": {
+ "port": 1315054653,
+ "service": "287"
+ },
+ "initialDelaySeconds": 711020087,
+ "timeoutSeconds": 1103049140,
+ "periodSeconds": -1965247100,
+ "successThreshold": 218453478,
+ "failureThreshold": 1993268896,
+ "terminationGracePeriodSeconds": -9140155223242250138
},
"readinessProbe": {
"exec": {
"command": [
- "283"
+ "288"
]
},
"httpGet": {
- "path": "284",
- "port": 1907998540,
- "host": "285",
- "scheme": ",ŕ",
+ "path": "289",
+ "port": -1315487077,
+ "host": "290",
+ "scheme": "ğ_",
"httpHeaders": [
{
- "name": "286",
- "value": "287"
+ "name": "291",
+ "value": "292"
}
]
},
"tcpSocket": {
- "port": "288",
- "host": "289"
+ "port": "293",
+ "host": "294"
},
- "initialDelaySeconds": -253326525,
- "timeoutSeconds": 567263590,
- "periodSeconds": 887319241,
- "successThreshold": 1559618829,
- "failureThreshold": 1156888068,
- "terminationGracePeriodSeconds": -5566612115749133989
+ "gRPC": {
+ "port": 972193458,
+ "service": "295"
+ },
+ "initialDelaySeconds": 1290950685,
+ "timeoutSeconds": 12533543,
+ "periodSeconds": 1058960779,
+ "successThreshold": -2133441986,
+ "failureThreshold": 472742933,
+ "terminationGracePeriodSeconds": 217739466937954194
},
"startupProbe": {
"exec": {
"command": [
- "290"
+ "296"
]
},
"httpGet": {
- "path": "291",
- "port": 1315054653,
- "host": "292",
- "scheme": "蚃ɣľ)酊龨δ摖ȱ",
+ "path": "297",
+ "port": 1401790459,
+ "host": "298",
+ "scheme": "ǵɐ鰥Z",
"httpHeaders": [
{
- "name": "293",
- "value": "294"
+ "name": "299",
+ "value": "300"
}
]
},
"tcpSocket": {
- "port": "295",
- "host": "296"
+ "port": -1103045151,
+ "host": "301"
},
- "initialDelaySeconds": 1905181464,
- "timeoutSeconds": -1730959016,
- "periodSeconds": 1272940694,
- "successThreshold": -385597677,
- "failureThreshold": 422133388,
- "terminationGracePeriodSeconds": 8385745044578923915
+ "gRPC": {
+ "port": 311083651,
+ "service": "302"
+ },
+ "initialDelaySeconds": 353361793,
+ "timeoutSeconds": -2081447068,
+ "periodSeconds": -708413798,
+ "successThreshold": -898536659,
+ "failureThreshold": -1513284745,
+ "terminationGracePeriodSeconds": 5404658974498114041
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "297"
+ "303"
]
},
"httpGet": {
- "path": "298",
- "port": "299",
- "host": "300",
- "scheme": "iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ",
- "httpHeaders": [
- {
- "name": "301",
- "value": "302"
- }
- ]
- },
- "tcpSocket": {
- "port": 802134138,
- "host": "303"
- }
- },
- "preStop": {
- "exec": {
- "command": [
- "304"
- ]
- },
- "httpGet": {
- "path": "305",
- "port": -126958936,
+ "path": "304",
+ "port": "305",
"host": "306",
- "scheme": "h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻",
"httpHeaders": [
{
"name": "307",
@@ -925,104 +923,130 @@
]
},
"tcpSocket": {
- "port": "309",
- "host": "310"
+ "port": 323903711,
+ "host": "309"
+ }
+ },
+ "preStop": {
+ "exec": {
+ "command": [
+ "310"
+ ]
+ },
+ "httpGet": {
+ "path": "311",
+ "port": "312",
+ "host": "313",
+ "scheme": "丆",
+ "httpHeaders": [
+ {
+ "name": "314",
+ "value": "315"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": "316",
+ "host": "317"
}
}
},
- "terminationMessagePath": "311",
- "terminationMessagePolicy": "ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS",
- "imagePullPolicy": "哇芆斩ìh4ɊHȖ|ʐşƧ諔迮",
+ "terminationMessagePath": "318",
+ "terminationMessagePolicy": "Ŏ)/灩聋3趐囨鏻砅邻",
+ "imagePullPolicy": "騎C\"6x$1sȣ±p鋄",
"securityContext": {
"capabilities": {
"add": [
- "嘢4ʗN,丽饾| 鞤ɱďW賁"
+ "ȹ均i绝5哇芆斩ìh4Ɋ"
],
"drop": [
- "ɭɪǹ0衷,"
+ "Ȗ|ʐşƧ諔迮ƙIJ嘢4"
]
},
- "privileged": true,
+ "privileged": false,
"seLinuxOptions": {
- "user": "312",
- "role": "313",
- "type": "314",
- "level": "315"
+ "user": "319",
+ "role": "320",
+ "type": "321",
+ "level": "322"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "316",
- "gmsaCredentialSpec": "317",
- "runAsUserName": "318",
- "hostProcess": true
+ "gmsaCredentialSpecName": "323",
+ "gmsaCredentialSpec": "324",
+ "runAsUserName": "325",
+ "hostProcess": false
},
- "runAsUser": -1119183212148951030,
- "runAsGroup": -7146044409185304665,
+ "runAsUser": -7936947433725476327,
+ "runAsGroup": -5712715102324619404,
"runAsNonRoot": false,
- "readOnlyRootFilesystem": true,
+ "readOnlyRootFilesystem": false,
"allowPrivilegeEscalation": true,
- "procMount": "w妕眵笭/9崍h趭(娕",
+ "procMount": "W賁Ěɭɪǹ0",
"seccompProfile": {
- "type": "E增猍",
- "localhostProfile": "319"
+ "type": ",ƷƣMț譎懚XW疪鑳",
+ "localhostProfile": "326"
}
- }
+ },
+ "stdin": true,
+ "stdinOnce": true,
+ "tty": true
}
],
"ephemeralContainers": [
{
- "name": "320",
- "image": "321",
+ "name": "327",
+ "image": "328",
"command": [
- "322"
+ "329"
],
"args": [
- "323"
+ "330"
],
- "workingDir": "324",
+ "workingDir": "331",
"ports": [
{
- "name": "325",
- "hostPort": 601942575,
- "containerPort": -1320027474,
- "protocol": "Ƶf",
- "hostIP": "326"
+ "name": "332",
+ "hostPort": 217308913,
+ "containerPort": 455919108,
+ "protocol": "崍h趭(娕u",
+ "hostIP": "333"
}
],
"envFrom": [
{
- "prefix": "327",
+ "prefix": "334",
"configMapRef": {
- "name": "328",
- "optional": true
+ "name": "335",
+ "optional": false
},
"secretRef": {
- "name": "329",
- "optional": true
+ "name": "336",
+ "optional": false
}
}
],
"env": [
{
- "name": "330",
- "value": "331",
+ "name": "337",
+ "value": "338",
"valueFrom": {
"fieldRef": {
- "apiVersion": "332",
- "fieldPath": "333"
+ "apiVersion": "339",
+ "fieldPath": "340"
},
"resourceFieldRef": {
- "containerName": "334",
- "resource": "335",
- "divisor": "179"
+ "containerName": "341",
+ "resource": "342",
+ "divisor": "360"
},
"configMapKeyRef": {
- "name": "336",
- "key": "337",
+ "name": "343",
+ "key": "344",
"optional": false
},
"secretKeyRef": {
- "name": "338",
- "key": "339",
+ "name": "345",
+ "key": "346",
"optional": false
}
}
@@ -1030,57 +1054,29 @@
],
"resources": {
"limits": {
- "阎l": "464"
+ "fȽÃ茓pȓɻ挴ʠɜ瞍阎": "422"
},
"requests": {
- "'佉": "633"
+ "蕎'": "62"
}
},
"volumeMounts": [
{
- "name": "340",
- "mountPath": "341",
- "subPath": "342",
- "mountPropagation": "(ť1ùfŭƽ",
- "subPathExpr": "343"
+ "name": "347",
+ "readOnly": true,
+ "mountPath": "348",
+ "subPath": "349",
+ "mountPropagation": "Ǚ(",
+ "subPathExpr": "350"
}
],
"volumeDevices": [
{
- "name": "344",
- "devicePath": "345"
+ "name": "351",
+ "devicePath": "352"
}
],
"livenessProbe": {
- "exec": {
- "command": [
- "346"
- ]
- },
- "httpGet": {
- "path": "347",
- "port": -684167223,
- "host": "348",
- "scheme": "1b",
- "httpHeaders": [
- {
- "name": "349",
- "value": "350"
- }
- ]
- },
- "tcpSocket": {
- "port": "351",
- "host": "352"
- },
- "initialDelaySeconds": -47594442,
- "timeoutSeconds": -2064284357,
- "periodSeconds": 725624946,
- "successThreshold": -34803208,
- "failureThreshold": -313085430,
- "terminationGracePeriodSeconds": -7686796864837350582
- },
- "readinessProbe": {
"exec": {
"command": [
"353"
@@ -1088,9 +1084,9 @@
},
"httpGet": {
"path": "354",
- "port": 1611386356,
+ "port": -1842062977,
"host": "355",
- "scheme": "ɼ搳ǭ濑箨ʨIk(",
+ "scheme": "輔3璾ėȜv1b繐汚磉反-n覦",
"httpHeaders": [
{
"name": "356",
@@ -1099,185 +1095,227 @@
]
},
"tcpSocket": {
- "port": 2115799218,
- "host": "358"
+ "port": "358",
+ "host": "359"
},
- "initialDelaySeconds": 1984241264,
- "timeoutSeconds": -758033170,
- "periodSeconds": -487434422,
- "successThreshold": -370404018,
- "failureThreshold": -1844150067,
- "terminationGracePeriodSeconds": 1778358283914418699
+ "gRPC": {
+ "port": 413903479,
+ "service": "360"
+ },
+ "initialDelaySeconds": 1708236944,
+ "timeoutSeconds": -1192140557,
+ "periodSeconds": 1961354355,
+ "successThreshold": -1977635123,
+ "failureThreshold": 1660454722,
+ "terminationGracePeriodSeconds": -5657477284668711794
},
- "startupProbe": {
+ "readinessProbe": {
"exec": {
"command": [
- "359"
+ "361"
]
},
"httpGet": {
- "path": "360",
- "port": "361",
- "host": "362",
- "scheme": "焬CQm坊柩",
+ "path": "362",
+ "port": 1993058773,
+ "host": "363",
+ "scheme": "糂腂ǂǚŜEu",
"httpHeaders": [
{
- "name": "363",
- "value": "364"
+ "name": "364",
+ "value": "365"
}
]
},
"tcpSocket": {
- "port": "365",
+ "port": -468215285,
"host": "366"
},
- "initialDelaySeconds": -135823101,
- "timeoutSeconds": -1345219897,
- "periodSeconds": 1141812777,
- "successThreshold": -1830926023,
- "failureThreshold": -320410537,
- "terminationGracePeriodSeconds": 8766190045617353809
+ "gRPC": {
+ "port": 571693619,
+ "service": "367"
+ },
+ "initialDelaySeconds": 1643238856,
+ "timeoutSeconds": -2028546276,
+ "periodSeconds": -2128305760,
+ "successThreshold": 1605974497,
+ "failureThreshold": 466207237,
+ "terminationGracePeriodSeconds": 6810468860514125748
+ },
+ "startupProbe": {
+ "exec": {
+ "command": [
+ "368"
+ ]
+ },
+ "httpGet": {
+ "path": "369",
+ "port": "370",
+ "host": "371",
+ "scheme": "[ƕƑĝ®EĨǔvÄÚ",
+ "httpHeaders": [
+ {
+ "name": "372",
+ "value": "373"
+ }
+ ]
+ },
+ "tcpSocket": {
+ "port": 1673785355,
+ "host": "374"
+ },
+ "gRPC": {
+ "port": 559999152,
+ "service": "375"
+ },
+ "initialDelaySeconds": -843639240,
+ "timeoutSeconds": 1573261475,
+ "periodSeconds": -1211577347,
+ "successThreshold": 1529027685,
+ "failureThreshold": -1612005385,
+ "terminationGracePeriodSeconds": -7329765383695934568
},
"lifecycle": {
"postStart": {
"exec": {
"command": [
- "367"
+ "376"
]
},
"httpGet": {
- "path": "368",
- "port": "369",
- "host": "370",
- "scheme": "!鍲ɋȑoG鄧蜢暳ǽżLj",
+ "path": "377",
+ "port": "378",
+ "host": "379",
+ "scheme": "ɻ;襕ċ桉桃喕",
"httpHeaders": [
{
- "name": "371",
- "value": "372"
+ "name": "380",
+ "value": "381"
}
]
},
"tcpSocket": {
- "port": 1333166203,
- "host": "373"
+ "port": "382",
+ "host": "383"
}
},
"preStop": {
"exec": {
"command": [
- "374"
+ "384"
]
},
"httpGet": {
- "path": "375",
- "port": 758604605,
- "host": "376",
- "scheme": "ċ桉桃喕蠲$ɛ溢臜裡×銵-紑",
+ "path": "385",
+ "port": "386",
+ "host": "387",
+ "scheme": "漤ŗ坟",
"httpHeaders": [
{
- "name": "377",
- "value": "378"
+ "name": "388",
+ "value": "389"
}
]
},
"tcpSocket": {
- "port": "379",
- "host": "380"
+ "port": -1617422199,
+ "host": "390"
}
}
},
- "terminationMessagePath": "381",
- "terminationMessagePolicy": "釼aTGÒ鵌",
- "imagePullPolicy": "ŵǤ桒ɴ鉂WJ1抉泅ą\u0026疀ȼN翾Ⱦ",
+ "terminationMessagePath": "391",
+ "terminationMessagePolicy": "鯶縆",
+ "imagePullPolicy": "aTGÒ鵌Ē3",
"securityContext": {
"capabilities": {
"add": [
- "氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á"
+ "×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶滿筇"
],
"drop": [
- "tl敷斢杧ż鯀"
+ "P:/a殆诵H玲鑠ĭ$#卛8ð仁Q"
]
},
"privileged": true,
"seLinuxOptions": {
- "user": "382",
- "role": "383",
- "type": "384",
- "level": "385"
+ "user": "392",
+ "role": "393",
+ "type": "394",
+ "level": "395"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "386",
- "gmsaCredentialSpec": "387",
- "runAsUserName": "388",
- "hostProcess": true
+ "gmsaCredentialSpecName": "396",
+ "gmsaCredentialSpec": "397",
+ "runAsUserName": "398",
+ "hostProcess": false
},
- "runAsUser": -3379825899840103887,
- "runAsGroup": -6950412587983829837,
- "runAsNonRoot": true,
+ "runAsUser": -4594605252165716214,
+ "runAsGroup": 8611382659007276093,
+ "runAsNonRoot": false,
"readOnlyRootFilesystem": false,
- "allowPrivilegeEscalation": true,
- "procMount": "张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰",
+ "allowPrivilegeEscalation": false,
+ "procMount": "sYȠ繽敮ǰ詀",
"seccompProfile": {
- "type": "咑耖p^鏋蛹Ƚȿ醏g",
- "localhostProfile": "389"
+ "type": "忀oɎƺL肄$鬬",
+ "localhostProfile": "399"
}
},
+ "stdin": true,
"tty": true,
- "targetContainerName": "390"
+ "targetContainerName": "400"
}
],
- "restartPolicy": "飂廤Ƌʙcx",
- "terminationGracePeriodSeconds": -4767735291842597991,
- "activeDeadlineSeconds": -7888525810745339742,
- "dnsPolicy": "h`職铳s44矕Ƈ",
+ "restartPolicy": "_敕",
+ "terminationGracePeriodSeconds": 7232696855417465611,
+ "activeDeadlineSeconds": -3924015511039305229,
+ "dnsPolicy": "穜姰l咑耖p^鏋蛹Ƚȿ",
"nodeSelector": {
- "391": "392"
+ "401": "402"
},
- "serviceAccountName": "393",
- "serviceAccount": "394",
+ "serviceAccountName": "403",
+ "serviceAccount": "404",
"automountServiceAccountToken": true,
- "nodeName": "395",
- "hostIPC": true,
- "shareProcessNamespace": true,
+ "nodeName": "405",
+ "hostNetwork": true,
+ "shareProcessNamespace": false,
"securityContext": {
"seLinuxOptions": {
- "user": "396",
- "role": "397",
- "type": "398",
- "level": "399"
+ "user": "406",
+ "role": "407",
+ "type": "408",
+ "level": "409"
},
"windowsOptions": {
- "gmsaCredentialSpecName": "400",
- "gmsaCredentialSpec": "401",
- "runAsUserName": "402",
- "hostProcess": false
+ "gmsaCredentialSpecName": "410",
+ "gmsaCredentialSpec": "411",
+ "runAsUserName": "412",
+ "hostProcess": true
},
- "runAsUser": 5422399684456852309,
- "runAsGroup": -4636770370363077377,
- "runAsNonRoot": false,
+ "runAsUser": -8490059975047402203,
+ "runAsGroup": 6219097993402437076,
+ "runAsNonRoot": true,
"supplementalGroups": [
- -5728960352366086876
+ 4224635496843945227
],
- "fsGroup": 1712752437570220896,
+ "fsGroup": 73764735411458498,
"sysctls": [
{
- "name": "403",
- "value": "404"
+ "name": "413",
+ "value": "414"
}
],
- "fsGroupChangePolicy": "",
+ "fsGroupChangePolicy": "劶?jĎĭ¥#ƱÁR»",
"seccompProfile": {
- "type": "#",
- "localhostProfile": "405"
+ "type": "揀.e鍃G昧牱fsǕT衩k",
+ "localhostProfile": "415"
}
},
"imagePullSecrets": [
{
- "name": "406"
+ "name": "416"
}
],
- "hostname": "407",
- "subdomain": "408",
+ "hostname": "417",
+ "subdomain": "418",
"affinity": {
"nodeAffinity": {
"requiredDuringSchedulingIgnoredDuringExecution": {
@@ -1285,19 +1323,19 @@
{
"matchExpressions": [
{
- "key": "409",
- "operator": "7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3",
+ "key": "419",
+ "operator": "s梊ɥʋăƻ遲njlȘ鹾K",
"values": [
- "410"
+ "420"
]
}
],
"matchFields": [
{
- "key": "411",
- "operator": "@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿",
+ "key": "421",
+ "operator": "_h盌",
"values": [
- "412"
+ "422"
]
}
]
@@ -1306,23 +1344,23 @@
},
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 687140791,
+ "weight": -1249187397,
"preference": {
"matchExpressions": [
{
- "key": "413",
- "operator": "ļǹʅŚO虀",
+ "key": "423",
+ "operator": "9两@8Byß讪Ă2讅缔m葰賦迾娙ƴ4",
"values": [
- "414"
+ "424"
]
}
],
"matchFields": [
{
- "key": "415",
- "operator": "ɴĶ烷Ľthp像-觗裓6Ř",
+ "key": "425",
+ "operator": "#ļǹʅŚO虀^背遻堣灭ƴɦ燻",
"values": [
- "416"
+ "426"
]
}
]
@@ -1335,30 +1373,30 @@
{
"labelSelector": {
"matchLabels": {
- "0": "X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7"
+ "7-3x-3/23_P": "d._.Um.-__k.5"
},
"matchExpressions": [
{
- "key": "c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o",
+ "key": "1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C",
"operator": "In",
"values": [
- "g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7"
+ "p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw"
]
}
]
},
"namespaces": [
- "423"
+ "433"
],
- "topologyKey": "424",
+ "topologyKey": "434",
"namespaceSelector": {
"matchLabels": {
- "4eq5": ""
+ "93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj": "5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM"
},
"matchExpressions": [
{
- "key": "XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z",
- "operator": "Exists"
+ "key": "8mtxb__-ex-_1_-ODgC_1-_8__3",
+ "operator": "DoesNotExist"
}
]
}
@@ -1366,37 +1404,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": 888976270,
+ "weight": -555161071,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "z_o_2.--4Z7__i1T.miw_a": "2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n"
+ "73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C": "r-v-3-BO"
},
"matchExpressions": [
{
- "key": "e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0",
- "operator": "In",
- "values": [
- "H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ"
- ]
+ "key": "q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L",
+ "operator": "Exists"
}
]
},
"namespaces": [
- "437"
+ "447"
],
- "topologyKey": "438",
+ "topologyKey": "448",
"namespaceSelector": {
"matchLabels": {
- "vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z": "2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R"
+ "r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y": "w1k8KLu..ly--JM"
},
"matchExpressions": [
{
- "key": "76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V",
- "operator": "In",
- "values": [
- "4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7"
- ]
+ "key": "RT.0zo",
+ "operator": "DoesNotExist"
}
]
}
@@ -1409,29 +1441,29 @@
{
"labelSelector": {
"matchLabels": {
- "5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8": "r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr"
+ "FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C": "m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH"
},
"matchExpressions": [
{
- "key": "D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8",
- "operator": "Exists"
+ "key": "7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g",
+ "operator": "DoesNotExist"
}
]
},
"namespaces": [
- "451"
+ "461"
],
- "topologyKey": "452",
+ "topologyKey": "462",
"namespaceSelector": {
"matchLabels": {
- "u_.mu": "U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E"
+ "p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22": "eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p"
},
"matchExpressions": [
{
- "key": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s",
+ "key": "Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w",
"operator": "In",
"values": [
- "V._qN__A_f_-B3_U__L.KH6K.RwsfI2"
+ "u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d"
]
}
]
@@ -1440,34 +1472,31 @@
],
"preferredDuringSchedulingIgnoredDuringExecution": [
{
- "weight": -1668452490,
+ "weight": 339079271,
"podAffinityTerm": {
"labelSelector": {
"matchLabels": {
- "n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S": "cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t"
+ "ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o": "Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV"
},
"matchExpressions": [
{
- "key": "6W74-R_Z_Tz.a3_Ho",
+ "key": "3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5",
"operator": "Exists"
}
]
},
"namespaces": [
- "465"
+ "475"
],
- "topologyKey": "466",
+ "topologyKey": "476",
"namespaceSelector": {
"matchLabels": {
- "h1DW__o_-._kzB7U_.Q.45cy-.._-__Z": "t.LT60v.WxPc---K__i"
+ "E35H__.B_E": "U..u8gwbk"
},
"matchExpressions": [
{
- "key": "ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV",
- "operator": "In",
- "values": [
- "x3___-..f5-6x-_-o_6O_If-5_-_.F"
- ]
+ "key": "Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i",
+ "operator": "Exists"
}
]
}
@@ -1476,92 +1505,91 @@
]
}
},
- "schedulerName": "473",
+ "schedulerName": "483",
"tolerations": [
{
- "key": "474",
- "operator": "4%ʬD$;X郪\\#撄貶à圽榕ɹ",
- "value": "475",
- "effect": "慰x:",
- "tolerationSeconds": 3362400521064014157
+ "key": "484",
+ "operator": "ŭʔb'?舍ȃʥx臥]å摞",
+ "value": "485",
+ "tolerationSeconds": 3053978290188957517
}
],
"hostAliases": [
{
- "ip": "476",
+ "ip": "486",
"hostnames": [
- "477"
+ "487"
]
}
],
- "priorityClassName": "478",
- "priority": 743241089,
+ "priorityClassName": "488",
+ "priority": -340583156,
"dnsConfig": {
"nameservers": [
- "479"
+ "489"
],
"searches": [
- "480"
+ "490"
],
"options": [
{
- "name": "481",
- "value": "482"
+ "name": "491",
+ "value": "492"
}
]
},
"readinessGates": [
{
- "conditionType": "0yVA嬂刲;牆詒ĸąs"
+ "conditionType": "țc£PAÎǨȨ栋"
}
],
- "runtimeClassName": "483",
+ "runtimeClassName": "493",
"enableServiceLinks": false,
- "preemptionPolicy": "Iƭij韺ʧ\u003e",
+ "preemptionPolicy": "n{鳻",
"overhead": {
- "D傕Ɠ栊闔虝巒瀦ŕ": "124"
+ "隅DžbİEMǶɼ`|褞": "229"
},
"topologySpreadConstraints": [
{
- "maxSkew": -174245111,
- "topologyKey": "484",
- "whenUnsatisfiable": "",
+ "maxSkew": 1486667065,
+ "topologyKey": "494",
+ "whenUnsatisfiable": "DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞",
"labelSelector": {
"matchLabels": {
- "7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R": "a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a"
+ "H_55..--E3_2D-1DW__o_-.k": "7"
},
"matchExpressions": [
{
- "key": "ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x",
- "operator": "In",
+ "key": "oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b",
+ "operator": "NotIn",
"values": [
- "zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe"
+ "H1z..j_.r3--T"
]
}
]
}
}
],
- "setHostnameAsFQDN": true,
+ "setHostnameAsFQDN": false,
"os": {
- "name": "+\u0026ɃB沅零șPî壣"
+ "name": "Ê"
}
}
}
},
"status": {
- "replicas": 157451826,
- "fullyLabeledReplicas": -1872689134,
- "readyReplicas": 1791185938,
- "availableReplicas": 1559072561,
- "observedGeneration": 5029735218517286947,
+ "replicas": 1710495724,
+ "fullyLabeledReplicas": 895180747,
+ "readyReplicas": 1856897421,
+ "availableReplicas": -900119103,
+ "observedGeneration": -2756902756708364909,
"conditions": [
{
- "type": "Y圻醆锛[M牍Ƃ氙吐ɝ鶼",
- "status": "ŭ瘢颦z疵悡nȩ純z邜",
- "lastTransitionTime": "2124-10-20T09:17:54Z",
- "reason": "491",
- "message": "492"
+ "type": "庺%#囨q砅ƎXÄdƦ;ƣŽ氮怉",
+ "status": "ȩ硘(ǒ[",
+ "lastTransitionTime": "2209-10-18T22:10:43Z",
+ "reason": "501",
+ "message": "502"
}
]
}
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb
index 8b9a9805f47..0fb7519d3c7 100644
Binary files a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb and b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.pb differ
diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml
index feb85a8819d..9a8e8b4d06b 100644
--- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml
+++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.ReplicaSet.yaml
@@ -73,492 +73,507 @@ spec:
selfLink: "29"
uid: ʬ
spec:
- activeDeadlineSeconds: -7888525810745339742
+ activeDeadlineSeconds: -3924015511039305229
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- preference:
matchExpressions:
- - key: "413"
- operator: ļǹʅŚO虀
+ - key: "423"
+ operator: 9两@8Byß讪Ă2讅缔m葰賦迾娙ƴ4
values:
- - "414"
+ - "424"
matchFields:
- - key: "415"
- operator: ɴĶ烷Ľthp像-觗裓6Ř
+ - key: "425"
+ operator: '#ļǹʅŚO虀^背遻堣灭ƴɦ燻'
values:
- - "416"
- weight: 687140791
+ - "426"
+ weight: -1249187397
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- - key: "409"
- operator: 7曳wœj堑ūM鈱ɖ'蠨磼O_h盌3
+ - key: "419"
+ operator: s梊ɥʋăƻ遲njlȘ鹾K
values:
- - "410"
+ - "420"
matchFields:
- - key: "411"
- operator: '@@)Zq=歍þ螗ɃŒGm¨z鋎靀G¿'
+ - key: "421"
+ operator: _h盌
values:
- - "412"
+ - "422"
podAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: e9jcz9f-6-4g-z46--f2t-m839-q9.3hjo--8kb6--ut---p8--3-e-3-44-e/Sx18mtxb__-ex-_1_-ODgC_1-_8__T3sn-0_.i__a.O2G_-_K-.03.mp.-0
- operator: In
- values:
- - H-7Tp_.----cp__ac8u.._-__BM.6-.Y_72-_--pT75-.emVQ
+ - key: q1wwv3--f4x4-br5r---r8oh.1nt-23h-4z-21-sap--h--q0h-t2n4s-6-k5-7-a0w8/2._I-_P..w-W_-nE...-__--.k47M7y-Dy__3wc.q.8_00.L
+ operator: Exists
matchLabels:
- z_o_2.--4Z7__i1T.miw_a: 2..8-_0__5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4n
+ 73ph2/2..wrbW_E..24-O._.v._9-cz.-Y6T4g_-.._Lf2t_m..C: r-v-3-BO
namespaceSelector:
matchExpressions:
- - key: 76---090---2n-8--p--g82--a-d----w----p1-2-xa-o65p--edno-52--p.9--d5ez1----b69x98--7g0e6-x5-70/ly--J-_.ZCRT.0z-oe.G79.3bU_._V
- operator: In
- values:
- - 4.4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K--g__..2bidF.-0-...W7
+ - key: RT.0zo
+ operator: DoesNotExist
matchLabels:
- vh-4-lx-0-2qg--4-03a68u7-l---8x7-l--b-9-u-d/M.Pn-W23-_z: 2JkU27_.-4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.-R
+ r4T-I.-..K.-.0__sD.-.-_I-F.PWtO4-7-P41_.-.-AQ._r.Y: w1k8KLu..ly--JM
namespaces:
- - "437"
- topologyKey: "438"
- weight: 888976270
+ - "447"
+ topologyKey: "448"
+ weight: -555161071
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: c-.F5_x.KNC0-.-m_0-m-6Sp_N-S..o
+ - key: 1-_-3_L_2--_v2.5p_..Y-.wg_-b8a_6_.0Q4_.84.K_-_0_..u.F.pq..--3C
operator: In
values:
- - g-_4Q__-v_t_u_.__I_-_-3-3--5X1rh-K5y_AzOBW.9oE9_6.--v7
+ - p_N-S..O-BZ..6-1.S-B3_.b17ca-_p-y.eQZ9p_6.Cw
matchLabels:
- "0": X8s--7_3x_-J_.....7..--w0_1V4.-r-8S5--_7_-Zp_._.-miJ4x-_0_5-_7
+ 7-3x-3/23_P: d._.Um.-__k.5
namespaceSelector:
matchExpressions:
- - key: XH-.k.7.l_-W8o._xJ1-lFA_Xf3.V0H2-.zHw.H__V.Vz_6.z
- operator: Exists
+ - key: 8mtxb__-ex-_1_-ODgC_1-_8__3
+ operator: DoesNotExist
matchLabels:
- 4eq5: ""
+ 93z-w5----7-z-63-z---5r-v-5-e-m78o-6-6211-7p--3zm-lx300w-tj-354/9--v17r__.2bIZ___._6..tf-_u-3-_n0..KpiS.oK-.O--5-yp8q_s-1__gwj: 5HG2_5XOAX.gUqV22-4-ye52yQh7.6.-y-s4483Po_L3f1-7_O4.nM
namespaces:
- - "423"
- topologyKey: "424"
+ - "433"
+ topologyKey: "434"
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- - key: 6W74-R_Z_Tz.a3_Ho
+ - key: 3.js--a---..6bD_M--c.0Q--2qh.Eb_.__1.-5
operator: Exists
matchLabels:
- n8i64t1-4----c-----35---1--6-u-68u8gwb0k-6-p--mgi7-2je7zjt0pp-e/b_.__1.--5B-S: cd_O-Ynu.7.._B-ks7dG-9S-O62o.8._.---UK_-.j21---__y.9O.L-.m.t
+ ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-yE-R5W5_2n...78o: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnV
namespaceSelector:
matchExpressions:
- - key: ki2/rlX-_-..5-.._r6M__4-P-g3Jt6e9G.-8p4__-.auZTcwJV
- operator: In
- values:
- - x3___-..f5-6x-_-o_6O_If-5_-_.F
+ - key: Q_mgi.U.-e7z-t0-pQ-.-.g-_Z_-nSL.--4i
+ operator: Exists
matchLabels:
- h1DW__o_-._kzB7U_.Q.45cy-.._-__Z: t.LT60v.WxPc---K__i
+ E35H__.B_E: U..u8gwbk
namespaces:
- - "465"
- topologyKey: "466"
- weight: -1668452490
+ - "475"
+ topologyKey: "476"
+ weight: 339079271
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- - key: D7RufiV-7u0--_qv4--_.6_N_9X-B.s8.N_rM-k8
- operator: Exists
+ - key: 7W-6..4_MU7iLfS-0.9-.-._.1..s._jP6j.u--.K-g
+ operator: DoesNotExist
matchLabels:
- 5k873--1n13sx82-cx-428u2j-3/Z0_TM_p6lM.Y-nd_.b_-gL_1..5a-1-CdM._b8: r.2cg.MGbG-_-8Qi..9-4.2K_FQ.E--__K-h_-0-T-_Lr
+ FnV34G._--u.._.105-4_ed-0-i_zZsY_o8t5Vl6_..C: m_dc__G6N-_-0o.0C_gV.9_G-.-z1YH
namespaceSelector:
matchExpressions:
- - key: Jj-3.J-.-r_-oPd-.2_Z__.-_U-.60--o._8H__ln_9--Avi.gZdnUVP._81_s
+ - key: Ky7-_0Vw-Nzfdw.3-._CJ4a1._-_CH--.C.8-S9_-4w
operator: In
values:
- - V._qN__A_f_-B3_U__L.KH6K.RwsfI2
+ - u-_qv4--_.6_N_9X-B.s8.N_rM-k5.C.e.._d--Y-_l-v0-1V-d
matchLabels:
- u_.mu: U___vSW_4-___-_--ux_E4-.-PT-_Nx__-F_._n.WaY_o.-0-E
+ p-...Z-O.-.jL_v.-_.4dwFbuvEf55Y22: eF..3m6.._2v89U--8.3N_.n1.--.._-x_4..u2-__3uM77U7.p
namespaces:
- - "451"
- topologyKey: "452"
+ - "461"
+ topologyKey: "462"
automountServiceAccountToken: true
containers:
- args:
- - "254"
+ - "257"
command:
- - "253"
+ - "256"
env:
- - name: "261"
- value: "262"
+ - name: "264"
+ value: "265"
valueFrom:
configMapKeyRef:
- key: "268"
- name: "267"
- optional: true
- fieldRef:
- apiVersion: "263"
- fieldPath: "264"
- resourceFieldRef:
- containerName: "265"
- divisor: "894"
- resource: "266"
- secretKeyRef:
- key: "270"
- name: "269"
+ key: "271"
+ name: "270"
optional: false
+ fieldRef:
+ apiVersion: "266"
+ fieldPath: "267"
+ resourceFieldRef:
+ containerName: "268"
+ divisor: "801"
+ resource: "269"
+ secretKeyRef:
+ key: "273"
+ name: "272"
+ optional: true
envFrom:
- configMapRef:
- name: "259"
- optional: true
- prefix: "258"
+ name: "262"
+ optional: false
+ prefix: "261"
secretRef:
- name: "260"
- optional: true
- image: "252"
- imagePullPolicy: 哇芆斩ìh4ɊHȖ|ʐşƧ諔迮
+ name: "263"
+ optional: false
+ image: "255"
+ imagePullPolicy: 騎C"6x$1sȣ±p鋄
lifecycle:
postStart:
exec:
command:
- - "297"
- httpGet:
- host: "300"
- httpHeaders:
- - name: "301"
- value: "302"
- path: "298"
- port: "299"
- scheme: iǨź'ǵɐ鰥Z龏´DÒȗÔÂɘɢ
- tcpSocket:
- host: "303"
- port: 802134138
- preStop:
- exec:
- command:
- - "304"
+ - "303"
httpGet:
host: "306"
httpHeaders:
- name: "307"
value: "308"
- path: "305"
- port: -126958936
- scheme: h亏yƕ丆録²Ŏ)/灩聋3趐囨鏻砅邻
+ path: "304"
+ port: "305"
tcpSocket:
- host: "310"
- port: "309"
+ host: "309"
+ port: 323903711
+ preStop:
+ exec:
+ command:
+ - "310"
+ httpGet:
+ host: "313"
+ httpHeaders:
+ - name: "314"
+ value: "315"
+ path: "311"
+ port: "312"
+ scheme: 丆
+ tcpSocket:
+ host: "317"
+ port: "316"
livenessProbe:
exec:
command:
- - "277"
- failureThreshold: 348370746
+ - "280"
+ failureThreshold: 1993268896
+ gRPC:
+ port: 1315054653
+ service: "287"
httpGet:
- host: "279"
+ host: "283"
httpHeaders:
- - name: "280"
- value: "281"
- path: "278"
- port: -1471289102
- scheme: i&皥贸碔lNKƙ順\E¦队偯J僳徥淳
- initialDelaySeconds: -1421951296
- periodSeconds: -1244119841
- successThreshold: 1235694147
+ - name: "284"
+ value: "285"
+ path: "281"
+ port: "282"
+ scheme: 澝qV訆Ǝżŧ
+ initialDelaySeconds: 711020087
+ periodSeconds: -1965247100
+ successThreshold: 218453478
tcpSocket:
- host: "282"
- port: 113873869
- terminationGracePeriodSeconds: 2011630253582325853
- timeoutSeconds: 878005329
- name: "251"
+ host: "286"
+ port: 204229950
+ terminationGracePeriodSeconds: -9140155223242250138
+ timeoutSeconds: 1103049140
+ name: "254"
ports:
- - containerPort: -1418092595
- hostIP: "257"
- hostPort: 1381579966
- name: "256"
- protocol: 闳ȩr嚧ʣq埄趛屡ʁ岼昕ĬÇó藢x
+ - containerPort: -438588982
+ hostIP: "260"
+ hostPort: -1532958330
+ name: "259"
+ protocol: 表徶đ寳议Ƭƶ氩Ȩ<6鄰簳°Ļǟi&皥
readinessProbe:
exec:
command:
- - "283"
- failureThreshold: 1156888068
+ - "288"
+ failureThreshold: 472742933
+ gRPC:
+ port: 972193458
+ service: "295"
httpGet:
- host: "285"
+ host: "290"
httpHeaders:
- - name: "286"
- value: "287"
- path: "284"
- port: 1907998540
- scheme: ',ŕ'
- initialDelaySeconds: -253326525
- periodSeconds: 887319241
- successThreshold: 1559618829
+ - name: "291"
+ value: "292"
+ path: "289"
+ port: -1315487077
+ scheme: ğ_
+ initialDelaySeconds: 1290950685
+ periodSeconds: 1058960779
+ successThreshold: -2133441986
tcpSocket:
- host: "289"
- port: "288"
- terminationGracePeriodSeconds: -5566612115749133989
- timeoutSeconds: 567263590
+ host: "294"
+ port: "293"
+ terminationGracePeriodSeconds: 217739466937954194
+ timeoutSeconds: 12533543
resources:
limits:
- W<敄lu|榝$î.Ȏ: "546"
+ 队偯J僳徥淳4揻: "175"
requests:
- 剒蔞|表: "379"
+ "": "170"
securityContext:
allowPrivilegeEscalation: true
capabilities:
add:
- - 嘢4ʗN,丽饾| 鞤ɱďW賁
+ - ȹ均i绝5哇芆斩ìh4Ɋ
drop:
- - ɭɪǹ0衷,
- privileged: true
- procMount: w妕眵笭/9崍h趭(娕
- readOnlyRootFilesystem: true
- runAsGroup: -7146044409185304665
+ - Ȗ|ʐşƧ諔迮ƙIJ嘢4
+ privileged: false
+ procMount: W賁Ěɭɪǹ0
+ readOnlyRootFilesystem: false
+ runAsGroup: -5712715102324619404
runAsNonRoot: false
- runAsUser: -1119183212148951030
+ runAsUser: -7936947433725476327
seLinuxOptions:
- level: "315"
- role: "313"
- type: "314"
- user: "312"
+ level: "322"
+ role: "320"
+ type: "321"
+ user: "319"
seccompProfile:
- localhostProfile: "319"
- type: E增猍
+ localhostProfile: "326"
+ type: ',ƷƣMț譎懚XW疪鑳'
windowsOptions:
- gmsaCredentialSpec: "317"
- gmsaCredentialSpecName: "316"
- hostProcess: true
- runAsUserName: "318"
+ gmsaCredentialSpec: "324"
+ gmsaCredentialSpecName: "323"
+ hostProcess: false
+ runAsUserName: "325"
startupProbe:
exec:
command:
- - "290"
- failureThreshold: 422133388
+ - "296"
+ failureThreshold: -1513284745
+ gRPC:
+ port: 311083651
+ service: "302"
httpGet:
- host: "292"
+ host: "298"
httpHeaders:
- - name: "293"
- value: "294"
- path: "291"
- port: 1315054653
- scheme: 蚃ɣľ)酊龨δ摖ȱ
- initialDelaySeconds: 1905181464
- periodSeconds: 1272940694
- successThreshold: -385597677
+ - name: "299"
+ value: "300"
+ path: "297"
+ port: 1401790459
+ scheme: ǵɐ鰥Z
+ initialDelaySeconds: 353361793
+ periodSeconds: -708413798
+ successThreshold: -898536659
tcpSocket:
- host: "296"
- port: "295"
- terminationGracePeriodSeconds: 8385745044578923915
- timeoutSeconds: -1730959016
- terminationMessagePath: "311"
- terminationMessagePolicy: ŧOǨ繫ʎǑyZ涬P蜷ɔ幩šeS
+ host: "301"
+ port: -1103045151
+ terminationGracePeriodSeconds: 5404658974498114041
+ timeoutSeconds: -2081447068
+ stdin: true
+ stdinOnce: true
+ terminationMessagePath: "318"
+ terminationMessagePolicy: Ŏ)/灩聋3趐囨鏻砅邻
+ tty: true
volumeDevices:
- - devicePath: "276"
- name: "275"
+ - devicePath: "279"
+ name: "278"
volumeMounts:
- - mountPath: "272"
- mountPropagation: 朦 wƯ貾坢'跩
- name: "271"
- readOnly: true
- subPath: "273"
- subPathExpr: "274"
- workingDir: "255"
+ - mountPath: "275"
+ mountPropagation: ×x锏ɟ4Ǒ
+ name: "274"
+ subPath: "276"
+ subPathExpr: "277"
+ workingDir: "258"
dnsConfig:
nameservers:
- - "479"
+ - "489"
options:
- - name: "481"
- value: "482"
+ - name: "491"
+ value: "492"
searches:
- - "480"
- dnsPolicy: h`職铳s44矕Ƈ
+ - "490"
+ dnsPolicy: 穜姰l咑耖p^鏋蛹Ƚȿ
enableServiceLinks: false
ephemeralContainers:
- args:
- - "323"
+ - "330"
command:
- - "322"
+ - "329"
env:
- - name: "330"
- value: "331"
+ - name: "337"
+ value: "338"
valueFrom:
configMapKeyRef:
- key: "337"
- name: "336"
+ key: "344"
+ name: "343"
optional: false
fieldRef:
- apiVersion: "332"
- fieldPath: "333"
+ apiVersion: "339"
+ fieldPath: "340"
resourceFieldRef:
- containerName: "334"
- divisor: "179"
- resource: "335"
+ containerName: "341"
+ divisor: "360"
+ resource: "342"
secretKeyRef:
- key: "339"
- name: "338"
+ key: "346"
+ name: "345"
optional: false
envFrom:
- configMapRef:
- name: "328"
- optional: true
- prefix: "327"
+ name: "335"
+ optional: false
+ prefix: "334"
secretRef:
- name: "329"
- optional: true
- image: "321"
- imagePullPolicy: ŵǤ桒ɴ鉂WJ1抉泅ą&疀ȼN翾Ⱦ
+ name: "336"
+ optional: false
+ image: "328"
+ imagePullPolicy: aTGÒ鵌Ē3
lifecycle:
postStart:
exec:
command:
- - "367"
+ - "376"
httpGet:
- host: "370"
+ host: "379"
httpHeaders:
- - name: "371"
- value: "372"
- path: "368"
- port: "369"
- scheme: '!鍲ɋȑoG鄧蜢暳ǽżLj'
+ - name: "380"
+ value: "381"
+ path: "377"
+ port: "378"
+ scheme: ɻ;襕ċ桉桃喕
tcpSocket:
- host: "373"
- port: 1333166203
+ host: "383"
+ port: "382"
preStop:
exec:
command:
- - "374"
+ - "384"
httpGet:
- host: "376"
+ host: "387"
httpHeaders:
- - name: "377"
- value: "378"
- path: "375"
- port: 758604605
- scheme: ċ桉桃喕蠲$ɛ溢臜裡×銵-紑
+ - name: "388"
+ value: "389"
+ path: "385"
+ port: "386"
+ scheme: 漤ŗ坟
tcpSocket:
- host: "380"
- port: "379"
+ host: "390"
+ port: -1617422199
livenessProbe:
- exec:
- command:
- - "346"
- failureThreshold: -313085430
- httpGet:
- host: "348"
- httpHeaders:
- - name: "349"
- value: "350"
- path: "347"
- port: -684167223
- scheme: 1b
- initialDelaySeconds: -47594442
- periodSeconds: 725624946
- successThreshold: -34803208
- tcpSocket:
- host: "352"
- port: "351"
- terminationGracePeriodSeconds: -7686796864837350582
- timeoutSeconds: -2064284357
- name: "320"
- ports:
- - containerPort: -1320027474
- hostIP: "326"
- hostPort: 601942575
- name: "325"
- protocol: Ƶf
- readinessProbe:
exec:
command:
- "353"
- failureThreshold: -1844150067
+ failureThreshold: 1660454722
+ gRPC:
+ port: 413903479
+ service: "360"
httpGet:
host: "355"
httpHeaders:
- name: "356"
value: "357"
path: "354"
- port: 1611386356
- scheme: ɼ搳ǭ濑箨ʨIk(
- initialDelaySeconds: 1984241264
- periodSeconds: -487434422
- successThreshold: -370404018
+ port: -1842062977
+ scheme: 輔3璾ėȜv1b繐汚磉反-n覦
+ initialDelaySeconds: 1708236944
+ periodSeconds: 1961354355
+ successThreshold: -1977635123
tcpSocket:
- host: "358"
- port: 2115799218
- terminationGracePeriodSeconds: 1778358283914418699
- timeoutSeconds: -758033170
+ host: "359"
+ port: "358"
+ terminationGracePeriodSeconds: -5657477284668711794
+ timeoutSeconds: -1192140557
+ name: "327"
+ ports:
+ - containerPort: 455919108
+ hostIP: "333"
+ hostPort: 217308913
+ name: "332"
+ protocol: 崍h趭(娕u
+ readinessProbe:
+ exec:
+ command:
+ - "361"
+ failureThreshold: 466207237
+ gRPC:
+ port: 571693619
+ service: "367"
+ httpGet:
+ host: "363"
+ httpHeaders:
+ - name: "364"
+ value: "365"
+ path: "362"
+ port: 1993058773
+ scheme: 糂腂ǂǚŜEu
+ initialDelaySeconds: 1643238856
+ periodSeconds: -2128305760
+ successThreshold: 1605974497
+ tcpSocket:
+ host: "366"
+ port: -468215285
+ terminationGracePeriodSeconds: 6810468860514125748
+ timeoutSeconds: -2028546276
resources:
limits:
- 阎l: "464"
+ fȽÃ茓pȓɻ挴ʠɜ瞍阎: "422"
requests:
- '''佉': "633"
+ 蕎': "62"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - 氙磂tńČȷǻ.wȏâ磠Ƴ崖S«V¯Á
+ - ×DJɶ羹ƞʓ%ʝ`ǭ躌ñ?卶滿筇
drop:
- - tl敷斢杧ż鯀
+ - P:/a殆诵H玲鑠ĭ$#卛8ð仁Q
privileged: true
- procMount: 张q櫞繡旹翃ɾ氒ĺʈʫ羶剹ƊF豎穜姰
+ procMount: sYȠ繽敮ǰ詀
readOnlyRootFilesystem: false
- runAsGroup: -6950412587983829837
- runAsNonRoot: true
- runAsUser: -3379825899840103887
+ runAsGroup: 8611382659007276093
+ runAsNonRoot: false
+ runAsUser: -4594605252165716214
seLinuxOptions:
- level: "385"
- role: "383"
- type: "384"
- user: "382"
+ level: "395"
+ role: "393"
+ type: "394"
+ user: "392"
seccompProfile:
- localhostProfile: "389"
- type: 咑耖p^鏋蛹Ƚȿ醏g
+ localhostProfile: "399"
+ type: 忀oɎƺL肄$鬬
windowsOptions:
- gmsaCredentialSpec: "387"
- gmsaCredentialSpecName: "386"
- hostProcess: true
- runAsUserName: "388"
+ gmsaCredentialSpec: "397"
+ gmsaCredentialSpecName: "396"
+ hostProcess: false
+ runAsUserName: "398"
startupProbe:
exec:
command:
- - "359"
- failureThreshold: -320410537
+ - "368"
+ failureThreshold: -1612005385
+ gRPC:
+ port: 559999152
+ service: "375"
httpGet:
- host: "362"
+ host: "371"
httpHeaders:
- - name: "363"
- value: "364"
- path: "360"
- port: "361"
- scheme: 焬CQm坊柩
- initialDelaySeconds: -135823101
- periodSeconds: 1141812777
- successThreshold: -1830926023
+ - name: "372"
+ value: "373"
+ path: "369"
+ port: "370"
+ scheme: '[ƕƑĝ®EĨǔvÄÚ'
+ initialDelaySeconds: -843639240
+ periodSeconds: -1211577347
+ successThreshold: 1529027685
tcpSocket:
- host: "366"
- port: "365"
- terminationGracePeriodSeconds: 8766190045617353809
- timeoutSeconds: -1345219897
- targetContainerName: "390"
- terminationMessagePath: "381"
- terminationMessagePolicy: 釼aTGÒ鵌
+ host: "374"
+ port: 1673785355
+ terminationGracePeriodSeconds: -7329765383695934568
+ timeoutSeconds: 1573261475
+ stdin: true
+ targetContainerName: "400"
+ terminationMessagePath: "391"
+ terminationMessagePolicy: 鯶縆
tty: true
volumeDevices:
- - devicePath: "345"
- name: "344"
+ - devicePath: "352"
+ name: "351"
volumeMounts:
- - mountPath: "341"
- mountPropagation: (ť1ùfŭƽ
- name: "340"
- subPath: "342"
- subPathExpr: "343"
- workingDir: "324"
+ - mountPath: "348"
+ mountPropagation: Ǚ(
+ name: "347"
+ readOnly: true
+ subPath: "349"
+ subPathExpr: "350"
+ workingDir: "331"
hostAliases:
- hostnames:
- - "477"
- ip: "476"
- hostIPC: true
- hostname: "407"
+ - "487"
+ ip: "486"
+ hostNetwork: true
+ hostname: "417"
imagePullSecrets:
- - name: "406"
+ - name: "416"
initContainers:
- args:
- "184"
@@ -592,43 +607,46 @@ spec:
name: "190"
optional: true
image: "182"
- imagePullPolicy: ʎȺ眖R#
+ imagePullPolicy: 跦Opwǩ曬逴褜1
lifecycle:
postStart:
exec:
command:
- - "228"
+ - "231"
httpGet:
- host: "230"
- httpHeaders:
- - name: "231"
- value: "232"
- path: "229"
- port: -1196874390
- scheme: S晒嶗UÐ_ƮA攤
- tcpSocket:
host: "233"
- port: -498930176
+ httpHeaders:
+ - name: "234"
+ value: "235"
+ path: "232"
+ port: 1883209805
+ scheme: ɓȌʟni酛3ƁÀ*
+ tcpSocket:
+ host: "237"
+ port: "236"
preStop:
exec:
command:
- - "234"
+ - "238"
httpGet:
- host: "237"
- httpHeaders:
- - name: "238"
- value: "239"
- path: "235"
- port: "236"
- scheme: 鴒翁杙Ŧ癃8鸖ɱJȉ罴ņ螡
- tcpSocket:
host: "241"
+ httpHeaders:
+ - name: "242"
+ value: "243"
+ path: "239"
port: "240"
+ scheme: fBls3!Zɾģ毋Ó6
+ tcpSocket:
+ host: "244"
+ port: -832805508
livenessProbe:
exec:
command:
- "207"
- failureThreshold: 1684643131
+ failureThreshold: 1599076900
+ gRPC:
+ port: 1507815593
+ service: "213"
httpGet:
host: "209"
httpHeaders:
@@ -637,14 +655,14 @@ spec:
path: "208"
port: 1214895765
scheme: 悖ȩ0Ƹ[Ęİ榌U
- initialDelaySeconds: -442393168
- periodSeconds: 1109079597
- successThreshold: -646728130
+ initialDelaySeconds: 1498833271
+ periodSeconds: 1447898632
+ successThreshold: 1602745893
tcpSocket:
host: "212"
port: -187060941
- terminationGracePeriodSeconds: 5055443896475056676
- timeoutSeconds: -307373517
+ terminationGracePeriodSeconds: -8249176398367452506
+ timeoutSeconds: 1505082076
name: "181"
ports:
- containerPort: 859639931
@@ -655,80 +673,85 @@ spec:
readinessProbe:
exec:
command:
- - "213"
- failureThreshold: -503805926
+ - "214"
+ failureThreshold: 10098903
+ gRPC:
+ port: 1182477686
+ service: "221"
httpGet:
host: "216"
httpHeaders:
- name: "217"
value: "218"
- path: "214"
- port: "215"
- scheme: 惇¸t颟.鵫ǚ灄鸫rʤî萨
- initialDelaySeconds: 1885896895
- periodSeconds: -1682044542
- successThreshold: 1182477686
+ path: "215"
+ port: 963670270
+ scheme: ɘȌ脾嚏吐ĠLƐȤ藠3.v
+ initialDelaySeconds: -503805926
+ periodSeconds: -763687725
+ successThreshold: -246563990
tcpSocket:
host: "220"
port: "219"
- terminationGracePeriodSeconds: 332054723335023688
- timeoutSeconds: -1232888129
+ terminationGracePeriodSeconds: 4704090421576984895
+ timeoutSeconds: 77312514
resources:
limits:
ſ盷: "532"
requests:
'[Řż丩': "47"
securityContext:
- allowPrivilegeEscalation: true
+ allowPrivilegeEscalation: false
capabilities:
add:
- - '''WKw(ğ儴Ůĺ}潷ʒ胵輓Ɔ'
+ - ȠƬQg鄠[颐o啛更偢ɇ卷荙JLĹ]
drop:
- - ""
+ - ¿>犵殇ŕ-Ɂ圯W:ĸ輦唊#v铿ʩ
privileged: true
- procMount: '>郵[+扴ȨŮ'
+ procMount: ' 苧yñKJɐ'
readOnlyRootFilesystem: false
- runAsGroup: 7694930383795602762
+ runAsGroup: 3811348330690808371
runAsNonRoot: true
- runAsUser: -2529737859863639391
+ runAsUser: 2185575187737222181
seLinuxOptions:
- level: "246"
- role: "244"
- type: "245"
- user: "243"
+ level: "249"
+ role: "247"
+ type: "248"
+ user: "246"
seccompProfile:
- localhostProfile: "250"
- type: 朷Ǝ膯ljVX1虊谇
+ localhostProfile: "253"
+ type: Gƚ绤fʀļ腩墺Ò媁荭gw
windowsOptions:
- gmsaCredentialSpec: "248"
- gmsaCredentialSpecName: "247"
+ gmsaCredentialSpec: "251"
+ gmsaCredentialSpecName: "250"
hostProcess: false
- runAsUserName: "249"
+ runAsUserName: "252"
startupProbe:
exec:
command:
- - "221"
- failureThreshold: 59664438
+ - "222"
+ failureThreshold: 1479266199
+ gRPC:
+ port: 593802074
+ service: "230"
httpGet:
- host: "224"
+ host: "225"
httpHeaders:
- - name: "225"
- value: "226"
- path: "222"
- port: "223"
- scheme: «丯Ƙ枛牐ɺ皚
- initialDelaySeconds: 766864314
- periodSeconds: 1495880465
- successThreshold: -1032967081
+ - name: "226"
+ value: "227"
+ path: "223"
+ port: "224"
+ scheme: 牐ɺ皚|懥
+ initialDelaySeconds: 538852927
+ periodSeconds: 902535764
+ successThreshold: 716842280
tcpSocket:
- host: "227"
- port: -1934111455
- terminationGracePeriodSeconds: 4116652091516790056
- timeoutSeconds: 1146016612
- stdin: true
- terminationMessagePath: "242"
- terminationMessagePolicy: ?$矡ȶ网棊ʢ
- tty: true
+ host: "229"
+ port: "228"
+ terminationGracePeriodSeconds: 702282827459446622
+ timeoutSeconds: -407545915
+ stdinOnce: true
+ terminationMessagePath: "245"
+ terminationMessagePolicy: 庎D}埽uʎȺ眖R#yV'WKw(ğ儴
volumeDevices:
- devicePath: "206"
name: "205"
@@ -739,69 +762,68 @@ spec:
subPath: "203"
subPathExpr: "204"
workingDir: "185"
- nodeName: "395"
+ nodeName: "405"
nodeSelector:
- "391": "392"
+ "401": "402"
os:
- name: +&ɃB沅零șPî壣
+ name: Ê
overhead:
- D傕Ɠ栊闔虝巒瀦ŕ: "124"
- preemptionPolicy: Iƭij韺ʧ>
- priority: 743241089
- priorityClassName: "478"
+ 隅DžbİEMǶɼ`|褞: "229"
+ preemptionPolicy: n{鳻
+ priority: -340583156
+ priorityClassName: "488"
readinessGates:
- - conditionType: 0yVA嬂刲;牆詒ĸąs
- restartPolicy: 飂廤Ƌʙcx
- runtimeClassName: "483"
- schedulerName: "473"
+ - conditionType: țc£PAÎǨȨ栋
+ restartPolicy: _敕
+ runtimeClassName: "493"
+ schedulerName: "483"
securityContext:
- fsGroup: 1712752437570220896
- fsGroupChangePolicy: ""
- runAsGroup: -4636770370363077377
- runAsNonRoot: false
- runAsUser: 5422399684456852309
+ fsGroup: 73764735411458498
+ fsGroupChangePolicy: 劶?jĎĭ¥#ƱÁR»
+ runAsGroup: 6219097993402437076
+ runAsNonRoot: true
+ runAsUser: -8490059975047402203
seLinuxOptions:
- level: "399"
- role: "397"
- type: "398"
- user: "396"
+ level: "409"
+ role: "407"
+ type: "408"
+ user: "406"
seccompProfile:
- localhostProfile: "405"
- type: '#'
+ localhostProfile: "415"
+ type: 揀.e鍃G昧牱fsǕT衩k
supplementalGroups:
- - -5728960352366086876
+ - 4224635496843945227
sysctls:
- - name: "403"
- value: "404"
+ - name: "413"
+ value: "414"
windowsOptions:
- gmsaCredentialSpec: "401"
- gmsaCredentialSpecName: "400"
- hostProcess: false
- runAsUserName: "402"
- serviceAccount: "394"
- serviceAccountName: "393"
- setHostnameAsFQDN: true
- shareProcessNamespace: true
- subdomain: "408"
- terminationGracePeriodSeconds: -4767735291842597991
+ gmsaCredentialSpec: "411"
+ gmsaCredentialSpecName: "410"
+ hostProcess: true
+ runAsUserName: "412"
+ serviceAccount: "404"
+ serviceAccountName: "403"
+ setHostnameAsFQDN: false
+ shareProcessNamespace: false
+ subdomain: "418"
+ terminationGracePeriodSeconds: 7232696855417465611
tolerations:
- - effect: '慰x:'
- key: "474"
- operator: 4%ʬD$;X郪\#撄貶à圽榕ɹ
- tolerationSeconds: 3362400521064014157
- value: "475"
+ - key: "484"
+ operator: ŭʔb'?舍ȃʥx臥]å摞
+ tolerationSeconds: 3053978290188957517
+ value: "485"
topologySpreadConstraints:
- labelSelector:
matchExpressions:
- - key: ee.-.66hcB.rTt7bm9I.-..q-F-.__c.k7__f--_br..1.--x
- operator: In
+ - key: oZvt.LT60v.WxPc---K__-iguFGT._.Y4-0.67hP-lX-_-..b
+ operator: NotIn
values:
- - zJ_.84.-0-.6---Q.__y64L.0-.c-tm..__---r__._-.DL.oe
+ - H1z..j_.r3--T
matchLabels:
- 7a8-phs1a-----28-d-e10-f-o-fr-5-3th/Mm_-q9.N8._--M-R: a-C3-._-l__KSvV-8-L__C_60-__.19_-gYY._..fP--hQ7be__-a
- maxSkew: -174245111
- topologyKey: "484"
- whenUnsatisfiable: ""
+ H_55..--E3_2D-1DW__o_-.k: "7"
+ maxSkew: 1486667065
+ topologyKey: "494"
+ whenUnsatisfiable: DŽɤȶšɞƵõ禲#樹罽濅ʏ 撜粞
volumes:
- awsElasticBlockStore:
fsType: "49"
@@ -1057,14 +1079,14 @@ spec:
storagePolicyName: "105"
volumePath: "103"
status:
- availableReplicas: 1559072561
+ availableReplicas: -900119103
conditions:
- - lastTransitionTime: "2124-10-20T09:17:54Z"
- message: "492"
- reason: "491"
- status: ŭ瘢颦z疵悡nȩ純z邜
- type: Y圻醆锛[M牍Ƃ氙吐ɝ鶼
- fullyLabeledReplicas: -1872689134
- observedGeneration: 5029735218517286947
- readyReplicas: 1791185938
- replicas: 157451826
+ - lastTransitionTime: "2209-10-18T22:10:43Z"
+ message: "502"
+ reason: "501"
+ status: ȩ硘(ǒ[
+ type: 庺%#囨q砅ƎXÄdƦ;ƣŽ氮怉
+ fullyLabeledReplicas: 895180747
+ observedGeneration: -2756902756708364909
+ readyReplicas: 1856897421
+ replicas: 1710495724
diff --git a/staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go b/staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go
index b7b5ec7604d..403d25e21a9 100644
--- a/staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go
+++ b/staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go
@@ -636,7 +636,7 @@ func BenchmarkDeepCopy(b *testing.B) {
b.StartTimer()
for i := 0; i < b.N; i++ {
- //lint:ignore SA4010 the result of append is never used, it's acceptable since in benchmark testing.
+ //nolint:staticcheck //iccheck // SA4010 the result of append is never used, it's acceptable since in benchmark testing.
instances = append(instances, runtime.DeepCopyJSON(obj))
}
}
diff --git a/staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go b/staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go
index 950e8b08ab5..332afb2c93a 100644
--- a/staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go
+++ b/staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go
@@ -55,7 +55,6 @@ const (
objectMetaSchemaRef = "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
listMetaSchemaRef = "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
- listMetaType = "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"
typeMetaType = "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta"
objectMetaType = "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"
diff --git a/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go b/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go
index 0c320e578b9..2502c98b722 100644
--- a/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go
+++ b/staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go
@@ -25,7 +25,7 @@ import (
"testing"
"github.com/davecgh/go-spew/spew"
- //lint:ignore SA1019 Keep using deprecated module; it still seems to be maintained and the api of the recommended replacement differs
+ //nolint:staticcheck //iccheck // SA1019 Keep using deprecated module; it still seems to be maintained and the api of the recommended replacement differs
"github.com/golang/protobuf/proto"
fuzz "github.com/google/gofuzz"
flag "github.com/spf13/pflag"
diff --git a/staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go b/staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go
index 7c061462dd5..9d2730284c0 100644
--- a/staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go
+++ b/staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go
@@ -148,8 +148,7 @@ func expectMatchDirect(t *testing.T, selector, ls Set) {
}
}
-//lint:ignore U1000 currently commented out in TODO of TestSetMatches
-//nolint:unused,deadcode
+//nolint:staticcheck,unused //iccheck // U1000 currently commented out in TODO of TestSetMatches
func expectNoMatchDirect(t *testing.T, selector, ls Set) {
if SelectorFromSet(selector).Matches(ls) {
t.Errorf("Wanted '%s' to not match '%s', but it did.", selector, ls)
diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go b/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go
index a60a7c04156..971c46d496a 100644
--- a/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go
+++ b/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming.go
@@ -90,7 +90,6 @@ func (d *decoder) Decode(defaults *schema.GroupVersionKind, into runtime.Object)
}
// must read the rest of the frame (until we stop getting ErrShortBuffer)
d.resetRead = true
- base = 0
return nil, nil, ErrObjectTooLarge
}
if err != nil {
diff --git a/staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go b/staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go
index 45aa74bf582..10df0d99cd5 100644
--- a/staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go
+++ b/staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go
@@ -132,14 +132,14 @@ func (r *jsonFrameReader) Read(data []byte) (int, error) {
// Return whatever remaining data exists from an in progress frame
if n := len(r.remaining); n > 0 {
if n <= len(data) {
- //lint:ignore SA4006,SA4010 underlying array of data is modified here.
+ //nolint:staticcheck // SA4006,SA4010 underlying array of data is modified here.
data = append(data[0:0], r.remaining...)
r.remaining = nil
return n, nil
}
n = len(data)
- //lint:ignore SA4006,SA4010 underlying array of data is modified here.
+ //nolint:staticcheck // SA4006,SA4010 underlying array of data is modified here.
data = append(data[0:0], r.remaining[:n]...)
r.remaining = r.remaining[n:]
return n, io.ErrShortBuffer
@@ -157,7 +157,7 @@ func (r *jsonFrameReader) Read(data []byte) (int, error) {
// and set m to it, which means we need to copy the partial result back into data and preserve
// the remaining result for subsequent reads.
if len(m) > n {
- //lint:ignore SA4006,SA4010 underlying array of data is modified here.
+ //nolint:staticcheck // SA4006,SA4010 underlying array of data is modified here.
data = append(data[0:0], m[:n]...)
r.remaining = m[n:]
return n, io.ErrShortBuffer
diff --git a/staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go b/staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go
index b8e329571ee..086e4bcf0b9 100644
--- a/staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go
+++ b/staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go
@@ -183,10 +183,10 @@ func (s *SpdyRoundTripper) dial(req *http.Request) (net.Conn, error) {
return nil, err
}
- //lint:ignore SA1019 ignore deprecated httputil.NewProxyClientConn
+ //nolint:staticcheck // SA1019 ignore deprecated httputil.NewProxyClientConn
proxyClientConn := httputil.NewProxyClientConn(proxyDialConn, nil)
_, err = proxyClientConn.Do(&proxyReq)
- //lint:ignore SA1019 ignore deprecated httputil.ErrPersistEOF: it might be
+ //nolint:staticcheck // SA1019 ignore deprecated httputil.ErrPersistEOF: it might be
// returned from the invocation of proxyClientConn.Do
if err != nil && err != httputil.ErrPersistEOF {
return nil, err
diff --git a/staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go b/staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go
index 2d9b6f0d3f9..cc5e24b86dd 100644
--- a/staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go
+++ b/staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go
@@ -122,7 +122,7 @@ func TestEvaluateTypes(t *testing.T) {
},
{
In: `-0.0`,
- Data: float64(-0.0),
+ Data: float64(-0.0), //nolint:staticcheck // SA4026: in Go, the floating-point literal '-0.0' is the same as '0.0'
Out: `-0`,
},
{
diff --git a/staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go b/staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go
index c31de15e7aa..d49a56536c3 100644
--- a/staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go
+++ b/staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go
@@ -31,22 +31,22 @@ type PatchMeta struct {
patchMergeKey string
}
-func (pm PatchMeta) GetPatchStrategies() []string {
+func (pm *PatchMeta) GetPatchStrategies() []string {
if pm.patchStrategies == nil {
return []string{}
}
return pm.patchStrategies
}
-func (pm PatchMeta) SetPatchStrategies(ps []string) {
+func (pm *PatchMeta) SetPatchStrategies(ps []string) {
pm.patchStrategies = ps
}
-func (pm PatchMeta) GetPatchMergeKey() string {
+func (pm *PatchMeta) GetPatchMergeKey() string {
return pm.patchMergeKey
}
-func (pm PatchMeta) SetPatchMergeKey(pmk string) {
+func (pm *PatchMeta) SetPatchMergeKey(pmk string) {
pm.patchMergeKey = pmk
}
diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go
index e58495bed27..05ccd393087 100644
--- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go
+++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go
@@ -143,7 +143,7 @@ func DeleteResource(r rest.GracefulDeleter, allowsOptions bool, scope *RequestSc
// that will break existing clients.
// Other cases where resource is not instantly deleted are: namespace deletion
// and pod graceful deletion.
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
//nolint: staticcheck
if !wasDeleted && options.OrphanDependents != nil && !*options.OrphanDependents {
status = http.StatusAccepted
diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/fieldmanager_test.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/fieldmanager_test.go
index aaf86cec0ac..137e08fe716 100644
--- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/fieldmanager_test.go
+++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/fieldmanager_test.go
@@ -55,7 +55,7 @@ type fakeObjectConvertor struct {
apiVersion fieldpath.APIVersion
}
-//lint:ignore SA4009 backwards compatibility
+//nolint:staticcheck,ineffassign // SA4009 backwards compatibility
func (c *fakeObjectConvertor) Convert(in, out, context interface{}) error {
if typedValue, ok := in.(*typed.TypedValue); ok {
var err error
diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go
index a772a136ee5..33231bd5e6b 100644
--- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go
+++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go
@@ -83,7 +83,7 @@ func TestForbidden(t *testing.T) {
if result != test.expected {
t.Errorf("Forbidden response body(%#v...)\n expected: %v\ngot: %v", test.attributes, test.expected, result)
}
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
resultType := observer.HeaderMap.Get("Content-Type")
if resultType != test.contentType {
t.Errorf("Forbidden content type(%#v...) != %#v, got %#v", test.attributes, test.expected, result)
diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go b/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go
index 0902add4823..9b6cb98c53f 100644
--- a/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go
+++ b/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go
@@ -217,7 +217,7 @@ func (a *APIInstaller) registerResourceHandlers(path string, storage rest.Storag
isSubresource := len(subresource) > 0
// If there is a subresource, namespace scoping is defined by the parent resource
- namespaceScoped := true
+ var namespaceScoped bool
if isSubresource {
parentStorage, ok := a.group.Storage[resource]
if !ok {
diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go b/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go
index 46af09f7180..758e7addd28 100644
--- a/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go
+++ b/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go
@@ -120,7 +120,7 @@ func GetOriginal(w http.ResponseWriter) http.ResponseWriter {
return GetOriginal(inner)
}
-//lint:ignore SA1019 backward compatibility
+//nolint:staticcheck // SA1019
var _ http.CloseNotifier = outerWithCloseNotifyAndFlush{}
var _ http.Flusher = outerWithCloseNotifyAndFlush{}
var _ http.ResponseWriter = outerWithCloseNotifyAndFlush{}
diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper_test.go b/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper_test.go
index 9fd08c60d42..3c52e06cf23 100644
--- a/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper_test.go
+++ b/staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper_test.go
@@ -61,7 +61,7 @@ func TestWithHTTP1(t *testing.T) {
// so each decorator is expected to tick the count by one for each method.
defer counterGot.assert(t, &counter{FlushInvoked: 3, CloseNotifyInvoked: 3, HijackInvoked: 3})
- //lint:ignore SA1019 backward compatibility
+ //nolint:staticcheck // SA1019
w.(http.CloseNotifier).CloseNotify()
w.(http.Flusher).Flush()
@@ -116,7 +116,7 @@ func TestWithHTTP2(t *testing.T) {
// so each decorator is expected to tick the count by one for each method.
defer counterGot.assert(t, &counter{FlushInvoked: 3, CloseNotifyInvoked: 3, HijackInvoked: 0})
- //lint:ignore SA1019 backward compatibility
+ //nolint:staticcheck // SA1019
w.(http.CloseNotifier).CloseNotify()
w.(http.Flusher).Flush()
@@ -242,7 +242,7 @@ func assertCloseNotifierFlusherHijacker(t *testing.T, hijackableExpected bool, w
t.Errorf("Expected the http.ResponseWriter object to implement http.Flusher")
}
- //lint:ignore SA1019 backward compatibility
+ //nolint:staticcheck // SA1019
if _, ok := w.(http.CloseNotifier); !ok {
t.Errorf("Expected the http.ResponseWriter object to implement http.CloseNotifier")
}
@@ -293,6 +293,6 @@ func (fw *fakeResponseWriterDecorator) CloseNotify() <-chan bool {
if fw.counter != nil {
fw.counter.CloseNotifyInvoked++
}
- //lint:ignore SA1019 backward compatibility
+ //nolint:staticcheck // SA1019
return fw.ResponseWriter.(http.CloseNotifier).CloseNotify()
}
diff --git a/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go b/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go
index eead4e568d4..9897a295240 100644
--- a/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go
+++ b/staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go
@@ -753,9 +753,9 @@ func shouldOrphanDependents(ctx context.Context, e *Store, accessor metav1.Objec
}
// An explicit policy was set at deletion time, that overrides everything
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
if options != nil && options.OrphanDependents != nil {
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
return *options.OrphanDependents
}
if options != nil && options.PropagationPolicy != nil {
@@ -796,7 +796,7 @@ func shouldDeleteDependents(ctx context.Context, e *Store, accessor metav1.Objec
}
// If an explicit policy was set at deletion time, that overrides both
- //lint:ignore SA1019 backwards compatibility
+ //nolint:staticcheck // SA1019 backwards compatibility
if options != nil && options.OrphanDependents != nil {
return false
}
diff --git a/staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go b/staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go
index 9407cc57466..a3f3b62aa52 100644
--- a/staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go
+++ b/staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go
@@ -105,10 +105,6 @@ var (
// for watch request, test GOAWAY server push 1 byte in every second.
responseBody = []byte("hello")
- // responseBodySize is the size of response body which test GOAWAY server sent for watch request,
- // used to check if watch request was broken by GOAWAY frame.
- responseBodySize = len(responseBody)
-
// requestPostBody is the request body which client must send to test GOAWAY server for POST method,
// otherwise, test GOAWAY server will respond 400 HTTP status code.
requestPostBody = responseBody
diff --git a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/grpcaction.go b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/grpcaction.go
new file mode 100644
index 00000000000..f94e55937ab
--- /dev/null
+++ b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/grpcaction.go
@@ -0,0 +1,48 @@
+/*
+Copyright The Kubernetes Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+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.
+*/
+
+// Code generated by applyconfiguration-gen. DO NOT EDIT.
+
+package v1
+
+// GRPCActionApplyConfiguration represents an declarative configuration of the GRPCAction type for use
+// with apply.
+type GRPCActionApplyConfiguration struct {
+ Port *int32 `json:"port,omitempty"`
+ Service *string `json:"service,omitempty"`
+}
+
+// GRPCActionApplyConfiguration constructs an declarative configuration of the GRPCAction type for use with
+// apply.
+func GRPCAction() *GRPCActionApplyConfiguration {
+ return &GRPCActionApplyConfiguration{}
+}
+
+// WithPort sets the Port field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Port field is set to the value of the last call.
+func (b *GRPCActionApplyConfiguration) WithPort(value int32) *GRPCActionApplyConfiguration {
+ b.Port = &value
+ return b
+}
+
+// WithService sets the Service field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the Service field is set to the value of the last call.
+func (b *GRPCActionApplyConfiguration) WithService(value string) *GRPCActionApplyConfiguration {
+ b.Service = &value
+ return b
+}
diff --git a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go
index 484e9315c7b..10730557a0e 100644
--- a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go
+++ b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probe.go
@@ -60,6 +60,14 @@ func (b *ProbeApplyConfiguration) WithTCPSocket(value *TCPSocketActionApplyConfi
return b
}
+// WithGRPC sets the GRPC field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the GRPC field is set to the value of the last call.
+func (b *ProbeApplyConfiguration) WithGRPC(value *GRPCActionApplyConfiguration) *ProbeApplyConfiguration {
+ b.GRPC = value
+ return b
+}
+
// WithInitialDelaySeconds sets the InitialDelaySeconds field in the declarative configuration to the given value
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the InitialDelaySeconds field is set to the value of the last call.
diff --git a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probehandler.go b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probehandler.go
index a93786b09cc..2da752c5616 100644
--- a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probehandler.go
+++ b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/probehandler.go
@@ -24,6 +24,7 @@ type ProbeHandlerApplyConfiguration struct {
Exec *ExecActionApplyConfiguration `json:"exec,omitempty"`
HTTPGet *HTTPGetActionApplyConfiguration `json:"httpGet,omitempty"`
TCPSocket *TCPSocketActionApplyConfiguration `json:"tcpSocket,omitempty"`
+ GRPC *GRPCActionApplyConfiguration `json:"gRPC,omitempty"`
}
// ProbeHandlerApplyConfiguration constructs an declarative configuration of the ProbeHandler type for use with
@@ -55,3 +56,11 @@ func (b *ProbeHandlerApplyConfiguration) WithTCPSocket(value *TCPSocketActionApp
b.TCPSocket = value
return b
}
+
+// WithGRPC sets the GRPC field in the declarative configuration to the given value
+// and returns the receiver, so that objects can be built by chaining "With" function invocations.
+// If called multiple times, the GRPC field is set to the value of the last call.
+func (b *ProbeHandlerApplyConfiguration) WithGRPC(value *GRPCActionApplyConfiguration) *ProbeHandlerApplyConfiguration {
+ b.GRPC = value
+ return b
+}
diff --git a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go
index 36480ad4cad..3e4620fda5d 100644
--- a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go
+++ b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go
@@ -4478,6 +4478,17 @@ var schemaYAML = typed.YAMLObject(`types:
- name: readOnly
type:
scalar: boolean
+- name: io.k8s.api.core.v1.GRPCAction
+ map:
+ fields:
+ - name: port
+ type:
+ scalar: numeric
+ default: 0
+ - name: service
+ type:
+ scalar: string
+ default: ""
- name: io.k8s.api.core.v1.GitRepoVolumeSource
map:
fields:
@@ -5937,6 +5948,9 @@ var schemaYAML = typed.YAMLObject(`types:
- name: failureThreshold
type:
scalar: numeric
+ - name: gRPC
+ type:
+ namedType: io.k8s.api.core.v1.GRPCAction
- name: httpGet
type:
namedType: io.k8s.api.core.v1.HTTPGetAction
diff --git a/staging/src/k8s.io/client-go/applyconfigurations/utils.go b/staging/src/k8s.io/client-go/applyconfigurations/utils.go
index 35d0255f7cb..dc6d3835ce4 100644
--- a/staging/src/k8s.io/client-go/applyconfigurations/utils.go
+++ b/staging/src/k8s.io/client-go/applyconfigurations/utils.go
@@ -601,6 +601,8 @@ func ForKind(kind schema.GroupVersionKind) interface{} {
return &applyconfigurationscorev1.GlusterfsPersistentVolumeSourceApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("GlusterfsVolumeSource"):
return &applyconfigurationscorev1.GlusterfsVolumeSourceApplyConfiguration{}
+ case corev1.SchemeGroupVersion.WithKind("GRPCAction"):
+ return &applyconfigurationscorev1.GRPCActionApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("HostAlias"):
return &applyconfigurationscorev1.HostAliasApplyConfiguration{}
case corev1.SchemeGroupVersion.WithKind("HostPathVolumeSource"):
diff --git a/staging/src/k8s.io/client-go/discovery/discovery_client.go b/staging/src/k8s.io/client-go/discovery/discovery_client.go
index 96159ab7ab2..50e59c5d85c 100644
--- a/staging/src/k8s.io/client-go/discovery/discovery_client.go
+++ b/staging/src/k8s.io/client-go/discovery/discovery_client.go
@@ -27,7 +27,7 @@ import (
"sync"
"time"
- //lint:ignore SA1019 Keep using module since it's still being maintained and the api of google.golang.org/protobuf/proto differs
+ //nolint:staticcheck // SA1019 Keep using module since it's still being maintained and the api of google.golang.org/protobuf/proto differs
"github.com/golang/protobuf/proto"
openapi_v2 "github.com/googleapis/gnostic/openapiv2"
diff --git a/staging/src/k8s.io/client-go/rest/request_test.go b/staging/src/k8s.io/client-go/rest/request_test.go
index 7b1d83ad348..30ae87d8f2e 100644
--- a/staging/src/k8s.io/client-go/rest/request_test.go
+++ b/staging/src/k8s.io/client-go/rest/request_test.go
@@ -47,7 +47,6 @@ import (
"k8s.io/apimachinery/pkg/runtime/serializer"
"k8s.io/apimachinery/pkg/runtime/serializer/streaming"
"k8s.io/apimachinery/pkg/util/diff"
- "k8s.io/apimachinery/pkg/util/httpstream"
"k8s.io/apimachinery/pkg/util/intstr"
utilnet "k8s.io/apimachinery/pkg/util/net"
"k8s.io/apimachinery/pkg/watch"
@@ -1436,40 +1435,6 @@ func TestRequestStream(t *testing.T) {
}
}
-type fakeUpgradeConnection struct{}
-
-func (c *fakeUpgradeConnection) CreateStream(headers http.Header) (httpstream.Stream, error) {
- return nil, nil
-}
-func (c *fakeUpgradeConnection) Close() error {
- return nil
-}
-func (c *fakeUpgradeConnection) CloseChan() <-chan bool {
- return make(chan bool)
-}
-func (c *fakeUpgradeConnection) SetIdleTimeout(timeout time.Duration) {
-}
-
-type fakeUpgradeRoundTripper struct {
- req *http.Request
- conn httpstream.Connection
-}
-
-func (f *fakeUpgradeRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
- f.req = req
- b := []byte{}
- body := ioutil.NopCloser(bytes.NewReader(b))
- resp := &http.Response{
- StatusCode: http.StatusSwitchingProtocols,
- Body: body,
- }
- return resp, nil
-}
-
-func (f *fakeUpgradeRoundTripper) NewConnection(resp *http.Response) (httpstream.Connection, error) {
- return f.conn, nil
-}
-
func TestRequestDo(t *testing.T) {
testCases := []struct {
Request *Request
diff --git a/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go b/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go
index 1e770e6767b..bebc7fea513 100644
--- a/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go
+++ b/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go
@@ -669,7 +669,9 @@ func Example_noMergingOnExplicitPaths() {
}
mergedConfig, err := loadingRules.Load()
-
+ if err != nil {
+ fmt.Printf("Unexpected error: %v", err)
+ }
json, err := runtime.Encode(clientcmdlatest.Codec, mergedConfig)
if err != nil {
fmt.Printf("Unexpected error: %v", err)
@@ -715,7 +717,9 @@ func Example_mergingSomeWithConflict() {
}
mergedConfig, err := loadingRules.Load()
-
+ if err != nil {
+ fmt.Printf("Unexpected error: %v", err)
+ }
json, err := runtime.Encode(clientcmdlatest.Codec, mergedConfig)
if err != nil {
fmt.Printf("Unexpected error: %v", err)
@@ -774,7 +778,9 @@ func Example_mergingEverythingNoConflicts() {
}
mergedConfig, err := loadingRules.Load()
-
+ if err != nil {
+ fmt.Printf("Unexpected error: %v", err)
+ }
json, err := runtime.Encode(clientcmdlatest.Codec, mergedConfig)
if err != nil {
fmt.Printf("Unexpected error: %v", err)
diff --git a/staging/src/k8s.io/client-go/tools/portforward/portforward.go b/staging/src/k8s.io/client-go/tools/portforward/portforward.go
index 1c3985f3f71..6f1d12b66bf 100644
--- a/staging/src/k8s.io/client-go/tools/portforward/portforward.go
+++ b/staging/src/k8s.io/client-go/tools/portforward/portforward.go
@@ -300,15 +300,20 @@ func (pf *PortForwarder) getListener(protocol string, hostname string, port *For
// the background.
func (pf *PortForwarder) waitForConnection(listener net.Listener, port ForwardedPort) {
for {
- conn, err := listener.Accept()
- if err != nil {
- // TODO consider using something like https://github.com/hydrogen18/stoppableListener?
- if !strings.Contains(strings.ToLower(err.Error()), "use of closed network connection") {
- runtime.HandleError(fmt.Errorf("error accepting connection on port %d: %v", port.Local, err))
- }
+ select {
+ case <-pf.streamConn.CloseChan():
return
+ default:
+ conn, err := listener.Accept()
+ if err != nil {
+ // TODO consider using something like https://github.com/hydrogen18/stoppableListener?
+ if !strings.Contains(strings.ToLower(err.Error()), "use of closed network connection") {
+ runtime.HandleError(fmt.Errorf("error accepting connection on port %d: %v", port.Local, err))
+ }
+ return
+ }
+ go pf.handleConnection(conn, port)
}
- go pf.handleConnection(conn, port)
}
}
@@ -399,6 +404,7 @@ func (pf *PortForwarder) handleConnection(conn net.Conn, port ForwardedPort) {
err = <-errorChan
if err != nil {
runtime.HandleError(err)
+ pf.streamConn.Close()
}
}
diff --git a/staging/src/k8s.io/client-go/tools/portforward/portforward_test.go b/staging/src/k8s.io/client-go/tools/portforward/portforward_test.go
index 551d97e9679..04427e129c9 100644
--- a/staging/src/k8s.io/client-go/tools/portforward/portforward_test.go
+++ b/staging/src/k8s.io/client-go/tools/portforward/portforward_test.go
@@ -17,6 +17,7 @@ limitations under the License.
package portforward
import (
+ "bytes"
"fmt"
"net"
"net/http"
@@ -27,6 +28,9 @@ import (
"testing"
"time"
+ "github.com/stretchr/testify/assert"
+
+ v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/util/httpstream"
)
@@ -43,18 +47,29 @@ func (d *fakeDialer) Dial(protocols ...string) (httpstream.Connection, string, e
}
type fakeConnection struct {
- closed bool
- closeChan chan bool
+ closed bool
+ closeChan chan bool
+ dataStream *fakeStream
+ errorStream *fakeStream
}
-func newFakeConnection() httpstream.Connection {
+func newFakeConnection() *fakeConnection {
return &fakeConnection{
- closeChan: make(chan bool),
+ closeChan: make(chan bool),
+ dataStream: &fakeStream{},
+ errorStream: &fakeStream{},
}
}
func (c *fakeConnection) CreateStream(headers http.Header) (httpstream.Stream, error) {
- return nil, nil
+ switch headers.Get(v1.StreamType) {
+ case v1.StreamTypeData:
+ return c.dataStream, nil
+ case v1.StreamTypeError:
+ return c.errorStream, nil
+ default:
+ return nil, fmt.Errorf("fakeStream creation not supported for stream type %s", headers.Get(v1.StreamType))
+ }
}
func (c *fakeConnection) Close() error {
@@ -76,6 +91,65 @@ func (c *fakeConnection) SetIdleTimeout(timeout time.Duration) {
// no-op
}
+type fakeListener struct {
+ net.Listener
+ closeChan chan bool
+}
+
+func newFakeListener() fakeListener {
+ return fakeListener{
+ closeChan: make(chan bool),
+ }
+}
+
+func (l *fakeListener) Accept() (net.Conn, error) {
+ select {
+ case <-l.closeChan:
+ return nil, fmt.Errorf("listener closed")
+ }
+}
+
+func (l *fakeListener) Close() error {
+ close(l.closeChan)
+ return nil
+}
+
+func (l *fakeListener) Addr() net.Addr {
+ return fakeAddr{}
+}
+
+type fakeAddr struct{}
+
+func (fakeAddr) Network() string { return "fake" }
+func (fakeAddr) String() string { return "fake" }
+
+type fakeStream struct {
+ headers http.Header
+ readFunc func(p []byte) (int, error)
+ writeFunc func(p []byte) (int, error)
+}
+
+func (s *fakeStream) Read(p []byte) (n int, err error) { return s.readFunc(p) }
+func (s *fakeStream) Write(p []byte) (n int, err error) { return s.writeFunc(p) }
+func (*fakeStream) Close() error { return nil }
+func (*fakeStream) Reset() error { return nil }
+func (s *fakeStream) Headers() http.Header { return s.headers }
+func (*fakeStream) Identifier() uint32 { return 0 }
+
+type fakeConn struct {
+ sendBuffer *bytes.Buffer
+ receiveBuffer *bytes.Buffer
+}
+
+func (f fakeConn) Read(p []byte) (int, error) { return f.sendBuffer.Read(p) }
+func (f fakeConn) Write(p []byte) (int, error) { return f.receiveBuffer.Write(p) }
+func (fakeConn) Close() error { return nil }
+func (fakeConn) LocalAddr() net.Addr { return nil }
+func (fakeConn) RemoteAddr() net.Addr { return nil }
+func (fakeConn) SetDeadline(t time.Time) error { return nil }
+func (fakeConn) SetReadDeadline(t time.Time) error { return nil }
+func (fakeConn) SetWriteDeadline(t time.Time) error { return nil }
+
func TestParsePortsAndNew(t *testing.T) {
tests := []struct {
input []string
@@ -393,3 +467,96 @@ func TestGetPortsReturnsDynamicallyAssignedLocalPort(t *testing.T) {
t.Fatalf("local port is 0, expected != 0")
}
}
+
+func TestHandleConnection(t *testing.T) {
+ out := bytes.NewBufferString("")
+
+ pf, err := New(&fakeDialer{}, []string{":2222"}, nil, nil, out, nil)
+ if err != nil {
+ t.Fatalf("error while calling New: %s", err)
+ }
+
+ // Setup fake local connection
+ localConnection := &fakeConn{
+ sendBuffer: bytes.NewBufferString("test data from local"),
+ receiveBuffer: bytes.NewBufferString(""),
+ }
+
+ // Setup fake remote connection to send data on the data stream after it receives data from the local connection
+ remoteDataToSend := bytes.NewBufferString("test data from remote")
+ remoteDataReceived := bytes.NewBufferString("")
+ remoteErrorToSend := bytes.NewBufferString("")
+ blockRemoteSend := make(chan struct{})
+ remoteConnection := newFakeConnection()
+ remoteConnection.dataStream.readFunc = func(p []byte) (int, error) {
+ <-blockRemoteSend // Wait for the expected data to be received before responding
+ return remoteDataToSend.Read(p)
+ }
+ remoteConnection.dataStream.writeFunc = func(p []byte) (int, error) {
+ n, err := remoteDataReceived.Write(p)
+ if remoteDataReceived.String() == "test data from local" {
+ close(blockRemoteSend)
+ }
+ return n, err
+ }
+ remoteConnection.errorStream.readFunc = remoteErrorToSend.Read
+ pf.streamConn = remoteConnection
+
+ // Test handleConnection
+ pf.handleConnection(localConnection, ForwardedPort{Local: 1111, Remote: 2222})
+
+ assert.Equal(t, "test data from local", remoteDataReceived.String())
+ assert.Equal(t, "test data from remote", localConnection.receiveBuffer.String())
+ assert.Equal(t, "Handling connection for 1111\n", out.String())
+}
+
+func TestHandleConnectionSendsRemoteError(t *testing.T) {
+ out := bytes.NewBufferString("")
+ errOut := bytes.NewBufferString("")
+
+ pf, err := New(&fakeDialer{}, []string{":2222"}, nil, nil, out, errOut)
+ if err != nil {
+ t.Fatalf("error while calling New: %s", err)
+ }
+
+ // Setup fake local connection
+ localConnection := &fakeConn{
+ sendBuffer: bytes.NewBufferString(""),
+ receiveBuffer: bytes.NewBufferString(""),
+ }
+
+ // Setup fake remote connection to return an error message on the error stream
+ remoteDataToSend := bytes.NewBufferString("")
+ remoteDataReceived := bytes.NewBufferString("")
+ remoteErrorToSend := bytes.NewBufferString("error")
+ remoteConnection := newFakeConnection()
+ remoteConnection.dataStream.readFunc = remoteDataToSend.Read
+ remoteConnection.dataStream.writeFunc = remoteDataReceived.Write
+ remoteConnection.errorStream.readFunc = remoteErrorToSend.Read
+ pf.streamConn = remoteConnection
+
+ // Test handleConnection, using go-routine because it needs to be able to write to unbuffered pf.errorChan
+ pf.handleConnection(localConnection, ForwardedPort{Local: 1111, Remote: 2222})
+
+ assert.Equal(t, "", remoteDataReceived.String())
+ assert.Equal(t, "", localConnection.receiveBuffer.String())
+ assert.Equal(t, "Handling connection for 1111\n", out.String())
+}
+
+func TestWaitForConnectionExitsOnStreamConnClosed(t *testing.T) {
+ out := bytes.NewBufferString("")
+ errOut := bytes.NewBufferString("")
+
+ pf, err := New(&fakeDialer{}, []string{":2222"}, nil, nil, out, errOut)
+ if err != nil {
+ t.Fatalf("error while calling New: %s", err)
+ }
+
+ listener := newFakeListener()
+
+ pf.streamConn = newFakeConnection()
+ pf.streamConn.Close()
+
+ port := ForwardedPort{}
+ pf.waitForConnection(&listener, port)
+}
diff --git a/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go b/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go
index 6eff86bf7af..54df66e45e4 100644
--- a/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go
+++ b/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go
@@ -573,7 +573,7 @@ func protobufTagToField(tag string, field *protoField, m types.Member, t *types.
switch parts[0] {
case "varint", "fixed32", "fixed64", "bytes", "group":
default:
- name := types.Name{}
+ var name types.Name
if last := strings.LastIndex(parts[0], "."); last != -1 {
prefix := parts[0][:last]
name = types.Name{
diff --git a/staging/src/k8s.io/component-base/metrics/legacyregistry/registry.go b/staging/src/k8s.io/component-base/metrics/legacyregistry/registry.go
index ff38953ba36..56a9dcae58b 100644
--- a/staging/src/k8s.io/component-base/metrics/legacyregistry/registry.go
+++ b/staging/src/k8s.io/component-base/metrics/legacyregistry/registry.go
@@ -44,9 +44,9 @@ var (
)
func init() {
- //lint:ignore SA1019 - replacement function still calls prometheus.NewProcessCollector().
+ //nolint:staticcheck // SA1019 - replacement function still calls prometheus.NewProcessCollector().
RawMustRegister(prometheus.NewProcessCollector(prometheus.ProcessCollectorOpts{}))
- //lint:ignore SA1019 - replacement function still calls prometheus.NewGoCollector().
+ //nolint:staticcheck // SA1019 - replacement function still calls prometheus.NewGoCollector().
RawMustRegister(prometheus.NewGoCollector())
}
diff --git a/staging/src/k8s.io/controller-manager/app/serve.go b/staging/src/k8s.io/controller-manager/app/serve.go
index 2f0e995b605..ba1f465368c 100644
--- a/staging/src/k8s.io/controller-manager/app/serve.go
+++ b/staging/src/k8s.io/controller-manager/app/serve.go
@@ -66,7 +66,7 @@ func NewBaseHandler(c *componentbaseconfig.DebuggingConfiguration, healthzHandle
routes.DebugFlags{}.Install(mux, "v", routes.StringFlagPutHandler(logs.GlogSetter))
}
configz.InstallHandler(mux)
- //lint:ignore SA1019 See the Metrics Stability Migration KEP
+ //nolint:staticcheck // SA1019 See the Metrics Stability Migration KEP
mux.Handle("/metrics", legacyregistry.Handler())
return mux
diff --git a/staging/src/k8s.io/kubectl/pkg/cmd/taint/utils.go b/staging/src/k8s.io/kubectl/pkg/cmd/taint/utils.go
index e5979d0f541..9d2807f9c16 100644
--- a/staging/src/k8s.io/kubectl/pkg/cmd/taint/utils.go
+++ b/staging/src/k8s.io/kubectl/pkg/cmd/taint/utils.go
@@ -146,7 +146,6 @@ func deleteTaints(taintsToRemove []corev1.Taint, newTaints *[]corev1.Taint) ([]e
allErrs := []error{}
var removed bool
for _, taintToRemove := range taintsToRemove {
- removed = false
if len(taintToRemove.Effect) > 0 {
*newTaints, removed = deleteTaint(*newTaints, &taintToRemove)
} else {
diff --git a/staging/src/k8s.io/kubectl/pkg/describe/describe.go b/staging/src/k8s.io/kubectl/pkg/describe/describe.go
index 85da6819415..558835cd25d 100644
--- a/staging/src/k8s.io/kubectl/pkg/describe/describe.go
+++ b/staging/src/k8s.io/kubectl/pkg/describe/describe.go
@@ -1415,7 +1415,6 @@ func printCSIPersistentVolumeAttributesMultilineIndent(w PrefixWriter, initialIn
} else {
w.Write(LEVEL_2, "%s\n", line)
}
- i++
}
}
@@ -1943,6 +1942,9 @@ func DescribeProbe(probe *corev1.Probe) string {
return fmt.Sprintf("http-get %s %s", url.String(), attrs)
case probe.TCPSocket != nil:
return fmt.Sprintf("tcp-socket %s:%s %s", probe.TCPSocket.Host, probe.TCPSocket.Port.String(), attrs)
+
+ case probe.GRPC != nil:
+ return fmt.Sprintf("grpc :%d %s %s", probe.GRPC.Port, *(probe.GRPC.Service), attrs)
}
return fmt.Sprintf("unknown %s", attrs)
}
@@ -5111,7 +5113,6 @@ func printLabelsMultilineWithIndent(w PrefixWriter, initialIndent, title, innerI
w.Write(LEVEL_0, "%s", innerIndent)
}
w.Write(LEVEL_0, "%s=%s\n", key, labels[key])
- i++
}
}
@@ -5345,7 +5346,6 @@ func printAnnotationsMultiline(w PrefixWriter, title string, annotations map[str
} else {
w.Write(LEVEL_0, "%s: %s\n", key, value)
}
- i++
}
}
diff --git a/staging/src/k8s.io/legacy-cloud-providers/azure/azure_controller_common.go b/staging/src/k8s.io/legacy-cloud-providers/azure/azure_controller_common.go
index 072c262a66e..13180e6d8ad 100644
--- a/staging/src/k8s.io/legacy-cloud-providers/azure/azure_controller_common.go
+++ b/staging/src/k8s.io/legacy-cloud-providers/azure/azure_controller_common.go
@@ -50,7 +50,6 @@ const (
diskCachingLimit = 4096 // GiB
maxLUN = 64 // max number of LUNs per VM
- errLeaseFailed = "AcquireDiskLeaseFailed"
errLeaseIDMissing = "LeaseIdMissing"
errContainerNotFound = "ContainerNotFound"
errStatusCode400 = "statuscode=400"
diff --git a/staging/src/k8s.io/legacy-cloud-providers/gce/gce_disks_test.go b/staging/src/k8s.io/legacy-cloud-providers/gce/gce_disks_test.go
index 99c0fb82122..1f304cab3b2 100644
--- a/staging/src/k8s.io/legacy-cloud-providers/gce/gce_disks_test.go
+++ b/staging/src/k8s.io/legacy-cloud-providers/gce/gce_disks_test.go
@@ -29,7 +29,7 @@ import (
computebeta "google.golang.org/api/compute/v0.beta"
compute "google.golang.org/api/compute/v1"
"google.golang.org/api/googleapi"
- "k8s.io/api/core/v1"
+ v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/sets"
cloudprovider "k8s.io/cloud-provider"
@@ -268,13 +268,12 @@ func TestCreateDisk_MultiZone(t *testing.T) {
nodeInformerSynced: func() bool { return true },
}
- diskName := "disk"
diskType := DiskTypeStandard
const sizeGb int64 = 128
/* Act & Assert */
for _, zone := range gce.managedZones {
- diskName = zone + "disk"
+ diskName := zone + "disk"
_, err := gce.CreateDisk(diskName, diskType, zone, sizeGb, nil)
if err != nil {
t.Errorf("Error creating disk in zone '%v'; error: \"%v\"", zone, err)
@@ -420,19 +419,19 @@ func TestDeleteDisk_DiffDiskMultiZone(t *testing.T) {
nodeZones: createNodeZones(zonesWithNodes),
nodeInformerSynced: func() bool { return true },
}
- diskName := "disk"
+
diskType := DiskTypeSSD
const sizeGb int64 = 128
for _, zone := range gce.managedZones {
- diskName = zone + "disk"
+ diskName := zone + "disk"
gce.CreateDisk(diskName, diskType, zone, sizeGb, nil)
}
/* Act & Assert */
var err error
for _, zone := range gce.managedZones {
- diskName = zone + "disk"
+ diskName := zone + "disk"
err = gce.DeleteDisk(diskName)
if err != nil {
t.Errorf("Error deleting disk in zone '%v'; error: \"%v\"", zone, err)
diff --git a/test/e2e/apimachinery/garbage_collector.go b/test/e2e/apimachinery/garbage_collector.go
index e337a46d60a..c608878a92b 100644
--- a/test/e2e/apimachinery/garbage_collector.go
+++ b/test/e2e/apimachinery/garbage_collector.go
@@ -68,7 +68,7 @@ func estimateMaximumPods(c clientset.Interface, min, max int32) int32 {
availablePods += 10
}
//avoid creating exactly max pods
- availablePods *= 8 / 10
+ availablePods = int32(float32(availablePods) * 0.8)
// bound the top and bottom
if availablePods > max {
availablePods = max
diff --git a/test/e2e/common/node/container_probe.go b/test/e2e/common/node/container_probe.go
index 1ae810bb0a2..4f1ea5eecd4 100644
--- a/test/e2e/common/node/container_probe.go
+++ b/test/e2e/common/node/container_probe.go
@@ -19,6 +19,7 @@ package node
import (
"context"
"fmt"
+ "net"
"net/url"
"time"
@@ -35,10 +36,10 @@ import (
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
e2eskipper "k8s.io/kubernetes/test/e2e/framework/skipper"
testutils "k8s.io/kubernetes/test/utils"
+ imageutils "k8s.io/kubernetes/test/utils/image"
"github.com/onsi/ginkgo"
"github.com/onsi/gomega"
- imageutils "k8s.io/kubernetes/test/utils/image"
)
const (
@@ -512,6 +513,52 @@ var _ = SIGDescribe("Probing container", func() {
// 10s delay + 10s period + 5s grace period = 25s < 30s << pod-level timeout 500
RunLivenessTest(f, pod, 1, time.Second*30)
})
+
+ /*
+ Release: v1.23
+ Testname: Pod liveness probe, using grpc call, success
+ Description: A Pod is created with liveness probe on grpc service. Liveness probe on this endpoint will not fail. When liveness probe does not fail then the restart count MUST remain zero.
+ */
+ ginkgo.It("should *not* be restarted with a GRPC liveness probe [NodeAlphaFeature:GRPCContainerProbe][Feature:GRPCContainerProbe]", func() {
+ e2eskipper.SkipUnlessFeatureGateEnabled(kubefeatures.GRPCContainerProbe)
+
+ livenessProbe := &v1.Probe{
+ ProbeHandler: v1.ProbeHandler{
+ GRPC: &v1.GRPCAction{
+ Port: 2379,
+ Service: nil,
+ },
+ },
+ InitialDelaySeconds: probeTestInitialDelaySeconds,
+ FailureThreshold: 1,
+ }
+
+ pod := gRPCServerPodSpec(nil, livenessProbe, "etcd")
+ RunLivenessTest(f, pod, 0, defaultObservationTimeout)
+ })
+
+ /*
+ Release: v1.23
+ Testname: Pod liveness probe, using grpc call, failure
+ Description: A Pod is created with liveness probe on grpc service. Liveness probe on this endpoint should fail because of wrong probe port.
+ When liveness probe does fail then the restart count should +1.
+ */
+ ginkgo.It("should be restarted with a GRPC liveness probe [NodeAlphaFeature:GRPCContainerProbe][Feature:GRPCContainerProbe]", func() {
+ e2eskipper.SkipUnlessFeatureGateEnabled(kubefeatures.GRPCContainerProbe)
+ service := "etcd_health"
+ livenessProbe := &v1.Probe{
+ ProbeHandler: v1.ProbeHandler{
+ GRPC: &v1.GRPCAction{
+ Port: 2379 + 1, // this port is wrong
+ Service: &service,
+ },
+ },
+ InitialDelaySeconds: probeTestInitialDelaySeconds * 4,
+ FailureThreshold: 1,
+ }
+ pod := gRPCServerPodSpec(nil, livenessProbe, "etcd")
+ RunLivenessTest(f, pod, 1, defaultObservationTimeout)
+ })
})
// GetContainerStartedTime returns the time when the given container started and error if any
@@ -758,3 +805,31 @@ func runReadinessFailTest(f *framework.Framework, pod *v1.Pod, notReadyUntil tim
ns, pod.Name, time.Since(start))
}
}
+
+func gRPCServerPodSpec(readinessProbe, livenessProbe *v1.Probe, containerName string) *v1.Pod {
+ etcdLocalhostAddress := "127.0.0.1"
+ if framework.TestContext.ClusterIsIPv6() {
+ etcdLocalhostAddress = "::1"
+ }
+ etcdURL := fmt.Sprintf("http://%s", net.JoinHostPort(etcdLocalhostAddress, "2379"))
+ return &v1.Pod{
+ ObjectMeta: metav1.ObjectMeta{Name: "test-grpc-" + string(uuid.NewUUID())},
+ Spec: v1.PodSpec{
+ Containers: []v1.Container{
+ {
+ Name: containerName,
+ Image: imageutils.GetE2EImage(imageutils.Etcd),
+ Command: []string{
+ "/usr/local/bin/etcd",
+ "--listen-client-urls",
+ etcdURL,
+ "--advertise-client-urls",
+ etcdURL,
+ },
+ LivenessProbe: livenessProbe,
+ ReadinessProbe: readinessProbe,
+ },
+ },
+ },
+ }
+}
diff --git a/test/e2e/framework/log.go b/test/e2e/framework/log.go
index 43927b2f0e7..e398817aef6 100644
--- a/test/e2e/framework/log.go
+++ b/test/e2e/framework/log.go
@@ -49,6 +49,7 @@ func Failf(format string, args ...interface{}) {
skip := 2
log("FAIL", "%s\n\nFull Stack Trace\n%s", msg, PrunedStack(skip))
e2eginkgowrapper.Fail(nowStamp()+": "+msg, skip)
+ panic("unreachable")
}
// Fail is a replacement for ginkgo.Fail which logs the problem as it occurs
diff --git a/test/e2e/framework/skipper/skipper.go b/test/e2e/framework/skipper/skipper.go
index c9434908eaa..8e4d9a879e8 100644
--- a/test/e2e/framework/skipper/skipper.go
+++ b/test/e2e/framework/skipper/skipper.go
@@ -118,6 +118,7 @@ func pruneStack(skip int) string {
// Skipf skips with information about why the test is being skipped.
func Skipf(format string, args ...interface{}) {
skipInternalf(1, format, args...)
+ panic("unreachable")
}
// SkipUnlessAtLeast skips if the value is less than the minValue.
diff --git a/test/e2e_node/image_list.go b/test/e2e_node/image_list.go
index 7c6aaa6002d..dd0316d3473 100644
--- a/test/e2e_node/image_list.go
+++ b/test/e2e_node/image_list.go
@@ -63,6 +63,7 @@ var NodePrePullImageList = sets.NewString(
imageutils.GetE2EImage(imageutils.NodePerfNpbEp),
imageutils.GetE2EImage(imageutils.NodePerfNpbIs),
imageutils.GetE2EImage(imageutils.NodePerfTfWideDeep),
+ imageutils.GetE2EImage(imageutils.Etcd),
)
// updateImageAllowList updates the framework.ImagePrePullList with
diff --git a/test/images/agnhost/net/nat/closewait.go b/test/images/agnhost/net/nat/closewait.go
index 6bd1c7c93d2..5a344956e5c 100644
--- a/test/images/agnhost/net/nat/closewait.go
+++ b/test/images/agnhost/net/nat/closewait.go
@@ -38,7 +38,7 @@ import (
// leakedConnection is a global variable that should leak the active
// connection assigned here.
-//lint:ignore U1000 intentional unused variable
+//nolint:unused // U1000 intentional unused variable
var leakedConnection *net.TCPConn
// CloseWaitServerOptions holds server JSON options.
diff --git a/test/integration/garbagecollector/garbage_collector_test.go b/test/integration/garbagecollector/garbage_collector_test.go
index ed0385aca5d..1b633da03a2 100644
--- a/test/integration/garbagecollector/garbage_collector_test.go
+++ b/test/integration/garbagecollector/garbage_collector_test.go
@@ -598,13 +598,12 @@ func setupRCsPods(t *testing.T, gc *garbagecollector.GarbageCollector, clientSet
}
orphan := false
switch {
- //lint:file-ignore SA1019 Keep testing deprecated OrphanDependents option until it's being removed
- case options.OrphanDependents == nil && options.PropagationPolicy == nil && len(initialFinalizers) == 0:
+ case options.OrphanDependents == nil && options.PropagationPolicy == nil && len(initialFinalizers) == 0: //nolint:staticcheck // SA1019 Keep testing deprecated OrphanDependents option until it's being removed
// if there are no deletion options, the default policy for replication controllers is orphan
orphan = true
- case options.OrphanDependents != nil:
+ case options.OrphanDependents != nil: //nolint:staticcheck // SA1019 Keep testing deprecated OrphanDependents option until it's being removed
// if the deletion options explicitly specify whether to orphan, that controls
- orphan = *options.OrphanDependents
+ orphan = *options.OrphanDependents //nolint:staticcheck // SA1019 Keep testing deprecated OrphanDependents option until it's being removed
case options.PropagationPolicy != nil:
// if the deletion options explicitly specify whether to orphan, that controls
orphan = *options.PropagationPolicy == metav1.DeletePropagationOrphan
diff --git a/test/integration/scheduler_perf/scheduler_perf_legacy_test.go b/test/integration/scheduler_perf/scheduler_perf_legacy_test.go
index 42267238c35..7a8a2810cce 100644
--- a/test/integration/scheduler_perf/scheduler_perf_legacy_test.go
+++ b/test/integration/scheduler_perf/scheduler_perf_legacy_test.go
@@ -439,8 +439,7 @@ func benchmarkScheduling(numExistingPods, minPods int,
testPodStrategy testutils.TestPodCreateStrategy,
b *testing.B) {
if b.N < minPods {
- //lint:ignore SA3001 Set a minimum for b.N to get more meaningful results
- b.N = minPods
+ b.N = minPods //nolint:staticcheck // SA3001 Set a minimum for b.N to get more meaningful results
}
finalFunc, podInformer, clientset, _ := mustSetupScheduler(nil)
defer finalFunc()