@harnessio/react-chaos-manager-client 1.40.0 → 1.40.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -545,6 +545,7 @@ export type { CommonContainerTemplate } from './schemas/CommonContainerTemplate'
545
545
  export type { CommonImportType } from './schemas/CommonImportType';
546
546
  export type { CommonNodeAffinity } from './schemas/CommonNodeAffinity';
547
547
  export type { CommonPreferredNodeSelector } from './schemas/CommonPreferredNodeSelector';
548
+ export type { CommonRequiredNodeSelector } from './schemas/CommonRequiredNodeSelector';
548
549
  export type { CommonResourceRequirements } from './schemas/CommonResourceRequirements';
549
550
  export type { CommonTypesExperimentRunStats } from './schemas/CommonTypesExperimentRunStats';
550
551
  export type { CommonTypesExperimentRunsData } from './schemas/CommonTypesExperimentRunsData';
@@ -12,7 +12,7 @@ export interface CommonContainerTemplate {
12
12
  annotations?: {
13
13
  [key: string]: string;
14
14
  };
15
- args?: string[];
15
+ args?: string;
16
16
  command?: string[];
17
17
  containerSecurityContext?: V1SecurityContext;
18
18
  env?: K8sIoApiCoreV1EnvVar[];
@@ -1,7 +1,6 @@
1
1
  import type { CommonPreferredNodeSelector } from '../schemas/CommonPreferredNodeSelector';
2
+ import type { CommonRequiredNodeSelector } from '../schemas/CommonRequiredNodeSelector';
2
3
  export interface CommonNodeAffinity {
3
4
  preferred?: CommonPreferredNodeSelector[];
4
- required?: {
5
- [key: string]: string;
6
- };
5
+ required?: CommonRequiredNodeSelector[];
7
6
  }
@@ -0,0 +1,8 @@
1
+ export interface CommonRequiredNodeSelector {
2
+ key?: string;
3
+ /**
4
+ * default: In
5
+ */
6
+ operator?: string;
7
+ values?: string;
8
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -13,7 +13,7 @@ export interface ProbeContainerProbe {
13
13
  annotations?: {
14
14
  [key: string]: string;
15
15
  };
16
- args?: string[];
16
+ args?: string;
17
17
  attempt?: {};
18
18
  command?: string[];
19
19
  comparator?: ProbeComparator;
@@ -13,7 +13,7 @@ export interface ProbeContainerProbeTemplate {
13
13
  annotations?: {
14
14
  [key: string]: string;
15
15
  };
16
- args?: string[];
16
+ args?: string;
17
17
  command?: string[];
18
18
  comparator?: ProbeComparatorTemplate;
19
19
  containerSecurityContext?: V1SecurityContext;
@@ -13,7 +13,7 @@ export interface V1ContainerProbeInputs {
13
13
  annotations?: {
14
14
  [key: string]: string;
15
15
  };
16
- args?: string[];
16
+ args?: string;
17
17
  command?: string[];
18
18
  /**
19
19
  * Comparator check for the correctness of the probe output
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-chaos-manager-client",
3
- "version": "1.40.0",
3
+ "version": "1.40.1",
4
4
  "description": "Harness React Chaos Manager Service Client - APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",