Skip to content

Commit eb26a67

Browse files
feat: update schemas and appVersion for GGScout v0.22.0
- Fetch schemas from GGScout version v0.22.0 - Update bundled values.schema.json - Update Chart.yaml appVersion
1 parent 113e44e commit eb26a67

File tree

2 files changed

+59
-59
lines changed

2 files changed

+59
-59
lines changed

charts/ggscout/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ version: 0.5.11
1919
# incremented each time you make changes to the application. Versions are not expected to
2020
# follow Semantic Versioning. They should reflect the version the application is using.
2121
# It is recommended to use it with quotes.
22-
appVersion: "0.21.1"
22+
appVersion: "0.22.0"

charts/ggscout/values.schema.json

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -421,15 +421,15 @@
421421
],
422422
"properties": {
423423
"client_id": {
424-
"description": "CyberArk client ID or Conjur workload Client ID",
424+
"description": "CyberArk client ID or CyberArk workload Client ID",
425425
"type": "string"
426426
},
427427
"client_secret": {
428428
"description": "Secret for authenticating",
429429
"type": "string"
430430
},
431431
"tenant_id": {
432-
"description": "Cyberark Cloud tenant ID",
432+
"description": "CyberArk SaaS tenant ID",
433433
"type": "string"
434434
},
435435
"auth_mode": {
@@ -554,7 +554,29 @@
554554
}
555555
}
556556
},
557-
"ConjurCloudConfig": {
557+
"CyberArkAuth": {
558+
"type": "object",
559+
"required": [
560+
"tenant_id",
561+
"client_id",
562+
"client_secret"
563+
],
564+
"properties": {
565+
"client_id": {
566+
"description": "CyberArk client ID or CyberArk workload Client ID",
567+
"type": "string"
568+
},
569+
"client_secret": {
570+
"description": "Secret for authenticating",
571+
"type": "string"
572+
},
573+
"tenant_id": {
574+
"description": "CyberArk SaaS tenant ID",
575+
"type": "string"
576+
}
577+
}
578+
},
579+
"CyberArkSaaSConfig": {
558580
"type": "object",
559581
"required": [
560582
"auth",
@@ -605,12 +627,29 @@
605627
"default": "read"
606628
},
607629
"subdomain": {
608-
"title": "The Conjur Cloud subdomain",
630+
"title": "The CyberArk SaaS subdomain",
631+
"type": "string"
632+
}
633+
}
634+
},
635+
"CyberArkSaaSWorkloadAuth": {
636+
"type": "object",
637+
"required": [
638+
"login",
639+
"api_key"
640+
],
641+
"properties": {
642+
"api_key": {
643+
"description": "Workload API key for authenticating",
644+
"type": "string"
645+
},
646+
"login": {
647+
"description": "Workload login (ID) for authenticating",
609648
"type": "string"
610649
}
611650
}
612651
},
613-
"ConjurConfig": {
652+
"CyberArkSelfHostedConfig": {
614653
"type": "object",
615654
"oneOf": [
616655
{
@@ -641,7 +680,7 @@
641680
"type": "boolean"
642681
},
643682
"account": {
644-
"title": "The Conjur account name",
683+
"title": "The CyberArk Self-Hosted account name",
645684
"type": "string"
646685
},
647686
"env": {
@@ -678,7 +717,7 @@
678717
"$ref": "#/definitions/https%3A~1~1gitguardian.com~1inventory-config/$defs/Mode"
679718
},
680719
"server_url": {
681-
"title": "The Conjur server URL",
720+
"title": "The CyberArk Self-Hosted server URL",
682721
"type": "string"
683722
}
684723
},
@@ -713,7 +752,7 @@
713752
"type": "boolean"
714753
},
715754
"account": {
716-
"title": "The Conjur account name",
755+
"title": "The CyberArk Self-Hosted account name",
717756
"type": "string"
718757
},
719758
"env": {
@@ -750,53 +789,14 @@
750789
"$ref": "#/definitions/https%3A~1~1gitguardian.com~1inventory-config/$defs/Mode"
751790
},
752791
"server_url": {
753-
"title": "The Conjur server URL",
792+
"title": "The CyberArk Self-Hosted server URL",
754793
"type": "string"
755794
}
756795
},
757796
"title": "API authentication"
758797
}
759798
]
760799
},
761-
"ConjurWorkloadAuth": {
762-
"type": "object",
763-
"required": [
764-
"login",
765-
"api_key"
766-
],
767-
"properties": {
768-
"api_key": {
769-
"description": "Workload API key for authenticating",
770-
"type": "string"
771-
},
772-
"login": {
773-
"description": "Workload login (ID) for authenticating",
774-
"type": "string"
775-
}
776-
}
777-
},
778-
"CyberArkAuth": {
779-
"type": "object",
780-
"required": [
781-
"tenant_id",
782-
"client_id",
783-
"client_secret"
784-
],
785-
"properties": {
786-
"client_id": {
787-
"description": "CyberArk client ID or Conjur workload Client ID",
788-
"type": "string"
789-
},
790-
"client_secret": {
791-
"description": "Secret for authenticating",
792-
"type": "string"
793-
},
794-
"tenant_id": {
795-
"description": "Cyberark Cloud tenant ID",
796-
"type": "string"
797-
}
798-
}
799-
},
800800
"DelineaSecretServerConfig": {
801801
"type": "object",
802802
"oneOf": [
@@ -1710,16 +1710,16 @@
17101710
"default": "read"
17111711
},
17121712
"subdomain": {
1713-
"title": "The Conjur Cloud subdomain",
1713+
"title": "The CyberArk SaaS subdomain",
17141714
"type": "string"
17151715
},
17161716
"type": {
17171717
"type": "string",
1718-
"const": "conjurcloud"
1718+
"const": "cyberarksaas"
17191719
}
17201720
},
1721-
"title": "Conjur Cloud",
1722-
"description": "Conjur Cloud fetcher"
1721+
"title": "CyberArk SaaS",
1722+
"description": "CyberArk SaaS fetcher"
17231723
},
17241724
{
17251725
"type": "object",
@@ -1753,7 +1753,7 @@
17531753
"type": "boolean"
17541754
},
17551755
"account": {
1756-
"title": "The Conjur account name",
1756+
"title": "The CyberArk Self-Hosted account name",
17571757
"type": "string"
17581758
},
17591759
"env": {
@@ -1790,12 +1790,12 @@
17901790
"$ref": "#/definitions/https%3A~1~1gitguardian.com~1inventory-config/$defs/Mode"
17911791
},
17921792
"server_url": {
1793-
"title": "The Conjur server URL",
1793+
"title": "The CyberArk Self-Hosted server URL",
17941794
"type": "string"
17951795
},
17961796
"type": {
17971797
"type": "string",
1798-
"const": "conjur"
1798+
"const": "cyberarkselfhosted"
17991799
}
18001800
},
18011801
"title": "User authentication"
@@ -1830,7 +1830,7 @@
18301830
"type": "boolean"
18311831
},
18321832
"account": {
1833-
"title": "The Conjur account name",
1833+
"title": "The CyberArk Self-Hosted account name",
18341834
"type": "string"
18351835
},
18361836
"env": {
@@ -1867,12 +1867,12 @@
18671867
"$ref": "#/definitions/https%3A~1~1gitguardian.com~1inventory-config/$defs/Mode"
18681868
},
18691869
"server_url": {
1870-
"title": "The Conjur server URL",
1870+
"title": "The CyberArk Self-Hosted server URL",
18711871
"type": "string"
18721872
},
18731873
"type": {
18741874
"type": "string",
1875-
"const": "conjur"
1875+
"const": "cyberarkselfhosted"
18761876
}
18771877
},
18781878
"title": "API authentication"

0 commit comments

Comments
 (0)