@harnessio/react-chaos-manager-client 0.16.0 → 0.16.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.
- package/dist/chaos-manager/src/services/index.d.ts +1 -0
- package/dist/chaos-manager/src/services/schemas/ChaoshubresourcesChaosHubResource.d.ts +4 -0
- package/dist/chaos-manager/src/services/schemas/K8sfaultChaosSpec.d.ts +2 -2
- package/dist/chaos-manager/src/services/schemas/K8sfaultResourceRequirements.d.ts +8 -0
- package/dist/chaos-manager/src/services/schemas/K8sfaultResourceRequirements.js +4 -0
- package/package.json +1 -1
|
@@ -485,6 +485,7 @@ export type { K8sfaultHostPathVolume } from './schemas/K8sfaultHostPathVolume';
|
|
|
485
485
|
export type { K8sfaultK8SFault } from './schemas/K8sfaultK8SFault';
|
|
486
486
|
export type { K8sfaultK8SFaultSpec } from './schemas/K8sfaultK8SFaultSpec';
|
|
487
487
|
export type { K8sfaultK8STarget } from './schemas/K8sfaultK8STarget';
|
|
488
|
+
export type { K8sfaultResourceRequirements } from './schemas/K8sfaultResourceRequirements';
|
|
488
489
|
export type { K8sfaultSecretVolume } from './schemas/K8sfaultSecretVolume';
|
|
489
490
|
export type { K8sfaultTarget } from './schemas/K8sfaultTarget';
|
|
490
491
|
export type { K8sinfraGetInfraTokenResponse } from './schemas/K8sinfraGetInfraTokenResponse';
|
|
@@ -5,7 +5,7 @@ import type { K8sfaultHostPathVolume } from '../schemas/K8sfaultHostPathVolume';
|
|
|
5
5
|
import type { V1PullPolicy } from '../schemas/V1PullPolicy';
|
|
6
6
|
import type { K8sfaultChaosParameter } from '../schemas/K8sfaultChaosParameter';
|
|
7
7
|
import type { V1PodSecurityContext } from '../schemas/V1PodSecurityContext';
|
|
8
|
-
import type {
|
|
8
|
+
import type { K8sfaultResourceRequirements } from '../schemas/K8sfaultResourceRequirements';
|
|
9
9
|
import type { K8sfaultSecretVolume } from '../schemas/K8sfaultSecretVolume';
|
|
10
10
|
import type { V1Toleration } from '../schemas/V1Toleration';
|
|
11
11
|
export interface K8sfaultChaosSpec {
|
|
@@ -33,7 +33,7 @@ export interface K8sfaultChaosSpec {
|
|
|
33
33
|
};
|
|
34
34
|
params?: K8sfaultChaosParameter[];
|
|
35
35
|
podSecurityContext?: V1PodSecurityContext;
|
|
36
|
-
resourceRequirements?:
|
|
36
|
+
resourceRequirements?: K8sfaultResourceRequirements;
|
|
37
37
|
secretVolume?: K8sfaultSecretVolume[];
|
|
38
38
|
toleration?: V1Toleration;
|
|
39
39
|
}
|
package/package.json
CHANGED