-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create the seerviceAuth CRD and add permission (#455)
* create the seerviceAuth CRD and add permession Signed-off-by: idohu <[email protected]> * add - to edd statement Signed-off-by: idohu <[email protected]> * fix last commit Signed-off-by: idohu <[email protected]> * fix auther Signed-off-by: idohu <[email protected]> * fix syncorniser config map Signed-off-by: idohu <[email protected]> * fix in the crd yaml to right group kubescape.io Signed-off-by: idohu <[email protected]> * delete mistkae file Signed-off-by: idohu <[email protected]> * 'rollbacked' the syncroniser configmap/yaml Signed-off-by: idohu <[email protected]> * fix clusterrole yaml Signed-off-by: idohu <[email protected]> * fix CRD format and add dependecies Signed-off-by: idohu <[email protected]> * add new test sanpshot Signed-off-by: idohu <[email protected]> * fix version + seperate the crd by name and conf(new condition) Signed-off-by: idohu <[email protected]> * new test snapshot Signed-off-by: idohu <[email protected]> * crd chart.yaml - change description + adusting version Signed-off-by: idohu <[email protected]> --------- Signed-off-by: idohu <[email protected]> Co-authored-by: idohu <[email protected]>
- Loading branch information
Showing
10 changed files
with
170 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
charts/kubescape-operator/charts/serviceauthentication-crds/Chart.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: v2 | ||
name: kubescape-service-crd | ||
description: A Helm chart CRDs for Kubescape Operator for service authentication discovery | ||
|
||
type: application | ||
|
||
version: 0.0.1 | ||
|
||
appVersion: "0.0.1" |
43 changes: 43 additions & 0 deletions
43
...kubescape-operator/charts/serviceauthentication-crds/crds/service-authentication.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: serviceauthentication.kubescape.io | ||
spec: | ||
group: kubescape.io | ||
names: | ||
kind: ServiceAuthentication | ||
plural: serviceauthentications | ||
shortNames: | ||
- ksa | ||
singular: serviceauthentication | ||
scope: Namespaced | ||
versions: | ||
- name: v1 | ||
served: true | ||
storage: true | ||
schema: | ||
openAPIV3Schema: | ||
type: object | ||
properties: | ||
spec: | ||
type: object | ||
properties: | ||
clusterIP: | ||
type: string | ||
ports: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
port: | ||
type: integer | ||
protocol: | ||
type: string | ||
sessionLayer: | ||
type: string | ||
presentationLayer: | ||
type: string | ||
applicationLayer: | ||
type: string | ||
authenticated: | ||
type: boolean |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters