@firestartr/cli 1.49.0-snapshot-10 → 1.49.0-snapshot-11
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/build/index.js +3 -3
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -301961,13 +301961,13 @@ const ArgoCDSchemas = [argocd_schema];
|
|
|
301961
301961
|
secretName: { type: 'string' },
|
|
301962
301962
|
remoteRef: { type: 'string' },
|
|
301963
301963
|
},
|
|
301964
|
-
required: ['secretName'
|
|
301964
|
+
required: ['secretName'],
|
|
301965
301965
|
},
|
|
301966
301966
|
},
|
|
301967
301967
|
},
|
|
301968
301968
|
},
|
|
301969
301969
|
},
|
|
301970
|
-
required: ['secretStore'],
|
|
301970
|
+
required: ['secretStore', 'externalSecrets', 'pushSecrets'],
|
|
301971
301971
|
},
|
|
301972
301972
|
],
|
|
301973
301973
|
},
|
|
@@ -308054,7 +308054,7 @@ class SecretsChart extends BaseSecretsChart {
|
|
|
308054
308054
|
refsData.push({
|
|
308055
308055
|
secretKey: secret.secretName,
|
|
308056
308056
|
remoteRef: {
|
|
308057
|
-
key: secret.remoteRef,
|
|
308057
|
+
key: secret.remoteRef ? secret.remoteRef : secret.secretName,
|
|
308058
308058
|
},
|
|
308059
308059
|
});
|
|
308060
308060
|
}
|