@firestartr/cli 1.49.0-snapshot-8 → 1.49.0-snapshot-10

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 CHANGED
@@ -301959,8 +301959,9 @@ const ArgoCDSchemas = [argocd_schema];
301959
301959
  type: 'object',
301960
301960
  properties: {
301961
301961
  secretName: { type: 'string' },
301962
+ remoteRef: { type: 'string' },
301962
301963
  },
301963
- required: ['secretName'],
301964
+ required: ['secretName', 'remoteRef'],
301964
301965
  },
301965
301966
  },
301966
301967
  },
@@ -308053,12 +308054,12 @@ class SecretsChart extends BaseSecretsChart {
308053
308054
  refsData.push({
308054
308055
  secretKey: secret.secretName,
308055
308056
  remoteRef: {
308056
- key: secret.secretName,
308057
+ key: secret.remoteRef,
308057
308058
  },
308058
308059
  });
308059
308060
  }
308060
308061
  const k8sResource = {
308061
- apiVersion: 'external-secrets.io/v1alpha1',
308062
+ apiVersion: 'external-secrets.io/v1',
308062
308063
  kind: 'ExternalSecret',
308063
308064
  metadata: {
308064
308065
  name: catalog_common.generic.normalizeName(claim.name),
@@ -308105,7 +308106,7 @@ class SecretsChart extends BaseSecretsChart {
308105
308106
  }
308106
308107
  for (const pushSecret of pushSecretsFromClaim) {
308107
308108
  const k8sResource = {
308108
- apiVersion: 'external-secrets.io/v1alpha1',
308109
+ apiVersion: 'external-secrets.io/v1',
308109
308110
  kind: 'PushSecret',
308110
308111
  metadata: {
308111
308112
  name: catalog_common.generic.normalizeName(`${pushSecret.secretName}-${claim.name}`),
@@ -932,6 +932,9 @@ declare const schemas: {
932
932
  secretName: {
933
933
  type: string;
934
934
  };
935
+ remoteRef: {
936
+ type: string;
937
+ };
935
938
  };
936
939
  required: string[];
937
940
  };
@@ -85,6 +85,9 @@ declare const _default: {
85
85
  secretName: {
86
86
  type: string;
87
87
  };
88
+ remoteRef: {
89
+ type: string;
90
+ };
88
91
  };
89
92
  required: string[];
90
93
  };
@@ -85,6 +85,9 @@ export declare const SecretsSchemas: {
85
85
  secretName: {
86
86
  type: string;
87
87
  };
88
+ remoteRef: {
89
+ type: string;
90
+ };
88
91
  };
89
92
  required: string[];
90
93
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestartr/cli",
3
- "version": "1.49.0-snapshot-8",
3
+ "version": "1.49.0-snapshot-10",
4
4
  "private": false,
5
5
  "description": "Commandline tool",
6
6
  "main": "build/main.js",