@spinnaker/core 0.29.1 → 2025.0.0
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/config/settings.d.ts +2 -0
- package/dist/domain/ICloudMetric.d.ts +5 -1
- package/dist/forms/mapObjectEditor/mapObjectEditor.component.d.ts +2 -0
- package/dist/index.js +71738 -328
- package/dist/index.js.map +1 -1
- package/dist/managed/constraints/registry.d.ts +1 -1
- package/dist/managed/resources/resourceRegistry.d.ts +1 -1
- package/package.json +4 -3
- package/src/config/settings.ts +3 -0
- package/src/domain/ICloudMetric.ts +5 -1
- package/src/forms/forms.module.js +2 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.html +56 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.js +113 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.less +9 -0
- package/src/forms/mapObjectEditor/mapObjectEditor.component.spec.js +85 -0
- package/src/pipeline/config/stages/evaluateVariables/ExecutionAndStagePicker.tsx +5 -1
- package/src/pipeline/config/stages/pipeline/pipelineStage.html +11 -0
- package/src/pipeline/config/stages/pipeline/pipelineStage.js +12 -5
|
@@ -67,6 +67,7 @@ export interface IFeatures {
|
|
|
67
67
|
functions?: boolean;
|
|
68
68
|
kubernetesRawResources?: boolean;
|
|
69
69
|
renderPipelineStageThreshold?: number;
|
|
70
|
+
deployManifestStageAdvancedConfiguration?: boolean;
|
|
70
71
|
}
|
|
71
72
|
export interface IDockerInsightSettings {
|
|
72
73
|
enabled: boolean;
|
|
@@ -139,6 +140,7 @@ export interface ISpinnakerSettings {
|
|
|
139
140
|
manifestBasePath: string;
|
|
140
141
|
urls?: Partial<IManagedDeliveryURLs>;
|
|
141
142
|
};
|
|
143
|
+
maxFetchHistoryOnEvaluateVariables?: number;
|
|
142
144
|
maxPipelineAgeDays: number;
|
|
143
145
|
newApplicationDefaults: INewApplicationDefaults;
|
|
144
146
|
notifications: INotificationSettings;
|
|
@@ -9,7 +9,11 @@ export interface IMetricAlarmDimension {
|
|
|
9
9
|
}
|
|
10
10
|
interface IDataPoint {
|
|
11
11
|
timestamp: number;
|
|
12
|
-
average
|
|
12
|
+
average?: number;
|
|
13
|
+
sum?: number;
|
|
14
|
+
minimum?: number;
|
|
15
|
+
maximum?: number;
|
|
16
|
+
sampleCount?: number;
|
|
13
17
|
}
|
|
14
18
|
export interface ICloudMetricStatistics {
|
|
15
19
|
unit: string;
|