diff --git a/layouts/shortcodes/csvtable-roles.html b/layouts/shortcodes/csvtable-roles.html index 37612e73..c9bce900 100644 --- a/layouts/shortcodes/csvtable-roles.html +++ b/layouts/shortcodes/csvtable-roles.html @@ -1,70 +1,116 @@ -{{ $data := "" }} {{ $p := "static/data/csv/keys.csv" }} {{ $excludedColumns := - slice 0 10 11 12 13 14 15 16 17 18 }} {{ if os.FileExists $p }} {{ $opts := dict - "delimiter" "," }} {{ $data = (os.ReadFile $p | transform.Unmarshal $opts) }} {{ - else }} {{ errorf "Unable to get resource %q" $p }} {{ end }} {{ if $data }} {{ - $uniqueCategories := slice }} {{ $stopAddingCategories := false }} {{ range $i, - $header := index $data 1 }} {{ if gt $i 3 }} {{if eq $header "Keychain ID"}} {{ - $stopAddingCategories = true }} {{end}} {{ if not $stopAddingCategories }} {{ if - and (ne (trim $header "") "") (not (in $uniqueCategories $header)) }} {{ - $uniqueCategories = $uniqueCategories | append $header }} {{ end }} {{ end }} {{ - end }} {{end}} {{ range $index, $category := $uniqueCategories }} -
-

{{ $category }} Role

- - - - {{ range $i, $col := index $data 1 }} {{ if and (not (in - $excludedColumns $i)) (or (eq $i 0) (ne $i 1) (ne $i 2)) }} {{ if and - (eq $i 1) }} - - {{ else }} {{ if and (eq $i 2) }} - - {{ end }}{{ end }} {{ end }} {{ end }} - - - - {{ range $i, $row := $data }} {{ if gt $i 0 }} {{/* Skip the header row */}} - {{ $hasAccess := false }} {{/* Flag to track if the row has access for the category */}} - {{ $functionValue := "" }} {{/* Variable to hold the Function value */}} - {{ $featureValue := "" }} {{/* Variable to hold the Feature value */}} - - {{/* Find the column indices for Category, Function, and Feature */}} - {{ $categoryIndex := -1 }} - {{ $functionIndex := -1 }} - {{ $featureIndex := -1 }} - {{ range $j, $header := index $data 1 }} {{/* Assuming the first row contains headers */}} - {{ if eq $header $category }} {{/* Check if the header matches the current category */}} - {{ $categoryIndex = $j }} - {{ end }} - {{ if eq $header "Function" }} - {{ $functionIndex = $j }} - {{ end }} - {{ if eq $header "Feature" }} - {{ $featureIndex = $j }} - {{ end }} - {{ end }} - {{/* Check if the row has access for the category */}} - {{ if and (ge $categoryIndex 0) (or (eq (index $row $categoryIndex) "X") (eq (index $row $categoryIndex) "X*")) }} - {{ $hasAccess = true }} - {{ end }} - {{/* Get the Function and Feature values if the row has access */}} - {{ if $hasAccess }} - {{ $functionValue = index $row $functionIndex }} - {{ $featureValue = index $row $featureIndex }} - {{ end }} - {{/* Print the row if it has access */}} - {{ if $hasAccess }} +{{ $data := "" }} +{{ $p := "static/data/csv/keys.csv" }} +{{ $excludedColumns := slice 0 10 11 12 13 14 15 16 17 18 }} + +{{ if os.FileExists $p }} + {{ $opts := dict "delimiter" "," }} + {{ $data = (os.ReadFile $p | transform.Unmarshal $opts) }} +{{ else }} + {{ errorf "Unable to get resource %q" $p }} +{{ end }} + +{{ if $data }} + {{ $uniqueCategories := slice }} + {{ $stopAddingCategories := false }} + + {{ range $i, $header := index $data 1 }} + {{ if gt $i 3 }} + {{ if eq $header "Keychain ID" }} + {{ $stopAddingCategories = true }} + {{ end }} + + {{ if not $stopAddingCategories }} + {{ if and (ne (trim $header "") "") (not (in $uniqueCategories $header)) }} + {{ $uniqueCategories = $uniqueCategories | append $header }} + {{ end }} + {{ end }} + {{ end }} + {{ end }} + + {{ range $index, $category := $uniqueCategories }} +
+ {{ $sectionName := $category | lower }} + {{ $urlPath := "roles" }} + {{ if hasPrefix $sectionName "workspace" }} + {{ $urlPath = "roles/workspace-roles" }} + {{ else if hasPrefix $sectionName "team" }} + {{ $urlPath = "roles/team-roles" }} + {{ else if hasPrefix $sectionName "org" }} + {{ $urlPath = "roles/organization-roles" }} + {{ else if hasPrefix $sectionName "provider" }} + {{ $urlPath = "roles/#provider-admin-role" }} + {{ else }} + {{ $urlPath = print "roles/" $sectionName | urlize }} + {{ end }} +

{{ $category }} Role

+
PermissionDescription
+ - - + {{ range $i, $col := index $data 1 }} + {{ if and (not (in $excludedColumns $i)) (or (eq $i 0) (ne $i 1) (ne $i 2)) }} + {{ if and (eq $i 1) }} + + {{ else }} + {{ if and (eq $i 2) }} + + {{ end }} + {{ end }} + {{ end }} + {{ end }} - {{end}} - {{ end }} {{ end }} - -
{{ $functionValue }} {{ $featureValue }}PermissionDescription
-
- {{ end }} {{ else }} + + + {{ range $i, $row := $data }} + {{ if gt $i 0 }} + {{/* Skip the header row */}} + {{ $hasAccess := false }} + {{/* Flag to track if the row has access for the category */}} + {{ $functionValue := "" }} + {{/* Variable to hold the Function value */}} + {{ $featureValue := "" }} + {{/* Variable to hold the Feature value */}} + + {{/* Find the column indices for Category, Function, and Feature */}} + {{ $categoryIndex := -1 }} + {{ $functionIndex := -1 }} + {{ $featureIndex := -1 }} + {{ range $j, $header := index $data 1 }} + {{/* Assuming the first row contains headers */}} + {{ if eq $header $category }} + {{/* Check if the header matches the current category */}} + {{ $categoryIndex = $j }} + {{ end }} + {{ if eq $header "Function" }} + {{ $functionIndex = $j }} + {{ end }} + {{ if eq $header "Feature" }} + {{ $featureIndex = $j }} + {{ end }} + {{ end }} + + {{/* Check if the row has access for the category */}} + {{ if and (ge $categoryIndex 0) (or (eq (index $row $categoryIndex) "X") (eq (index $row $categoryIndex) "X*")) }} + {{ $hasAccess = true }} + {{ end }} + {{/* Get the Function and Feature values if the row has access */}} + {{ if $hasAccess }} + {{ $functionValue = index $row $functionIndex }} + {{ $featureValue = index $row $featureIndex }} + {{ end }} + + {{/* Print the row if it has access */}} + {{ if $hasAccess }} + + {{ $functionValue }} + {{ $featureValue }} + + {{ end }} + {{ end }} + {{ end }} + + + + {{ end }} +{{ else }}

No data available.

- {{ end }} - - \ No newline at end of file +{{ end }} diff --git a/layouts/shortcodes/csvtable.html b/layouts/shortcodes/csvtable.html index f0c4f8bc..aaf5cb7f 100644 --- a/layouts/shortcodes/csvtable.html +++ b/layouts/shortcodes/csvtable.html @@ -1,7 +1,7 @@ {{ $data := "" }} {{ $p := "static/data/csv/keys.csv" }} -{{ $excludedColumns := slice 0 10 11 12 13 14 15 16 17 18 }} +{{ $excludedColumns := slice "Category" "Keychain ID" "Key ID" "Inserted" "Local Provider" }} {{ if os.FileExists $p }} {{ $opts := dict "delimiter" "," }} @@ -10,9 +10,14 @@ {{ errorf "Unable to get resource %q" $p }} {{ end }} - {{ if $data }} {{ $uniqueCategories := slice }} + {{ $header := index $data 1 }} + {{ $headerMap := dict }} + + {{ range $i, $col := $header }} + {{ $headerMap = merge $headerMap (dict $col $i) }} + {{ end }} {{ range $i, $row := $data }} {{ if gt $i 1 }} @@ -28,28 +33,43 @@

{{ $category }} Permissions

- {{ range $i, $col := index $data 1 }} - {{ if and (not (in $excludedColumns $i)) (or (eq $i 0) (ne $i 1) (ne $i 2)) }} - {{ if and (eq $i 1) }} - - {{ else }} - {{ if and (eq $i 2) }} - - {{ else }} - - {{ end }}{{ end }} + {{ range $i, $col := $header }} + {{ if not (in $excludedColumns $col) }} + {{ if eq $col "Function" }} + + {{ else if eq $col "Feature" }} + + {{ else }} + {{ $sectionName := $col | lower }} + {{ $urlPath := "roles" }} + {{ if hasPrefix $sectionName "workspace" }} + {{ $urlPath = "roles/workspace-roles" }} + {{ else if hasPrefix $sectionName "team" }} + {{ $urlPath = "roles/team-roles" }} + {{ else if hasPrefix $sectionName "org" }} + {{ $urlPath = "roles/organization-roles" }} + {{ else if hasPrefix $sectionName "provider" }} + {{ $urlPath = "roles/#provider-admin-role" }} + {{ else if hasPrefix $sectionName "user" }} + {{ $urlPath = "roles/user-role" }} + {{ else }} + {{ $urlPath = print "roles/" }} + {{ end }} + + {{ end }} {{ end }} {{ end }} {{ range $i, $row := $data }} - {{ if and (gt $i 0) (eq (trim (index $row 0) " ") $category) }} + {{ if and (gt $i 1) (eq (trim (index $row 0) " ") $category) }} {{ range $j, $cell := $row }} - {{ if and (not (in $excludedColumns $j)) (or (gt $j 2) (lt $j 10)) }} + {{ $col := index $header $j }} + {{ if not (in $excludedColumns $col) }}
PermissionDescription{{ $col }}PermissionDescription{{ $col }}
- {{ if and (gt $j 2) (lt $j 10) }} + {{ if and (gt $j 2) (lt $j 10) }} {{ if eq $cell "X" }} ✅ {{ else if eq $cell "X*" }} diff --git a/static/charts/index.yaml b/static/charts/index.yaml index 438cba8c..9b2dbfb1 100644 --- a/static/charts/index.yaml +++ b/static/charts/index.yaml @@ -47,6 +47,126 @@ entries: - charts/kratos-0.39.1.tgz version: 0.39.1 layer5-cloud: + - apiVersion: v2 + appVersion: v0.7.229 + created: "2024-07-31T21:34:13.099312702Z" + dependencies: + - condition: kratos.enabled + name: kratos + repository: '@ory' + version: 0.39.1 + - condition: ory/hydra.enabled + name: hydra + repository: '@ory' + version: 0.24.2 + description: Layer5 Cloud is a collection of services that can be deployed on-premises. + digest: 3c5df37afa4f544320f497f27fcb529f9b51ec0cbed5db1994581717eed62ba8 + icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg== + name: layer5-cloud + type: application + urls: + - https://docs.layer5.io/static/charts/layer5-cloud-v0.7.229.tgz + version: v0.7.229 + - apiVersion: v2 + appVersion: v0.7.228 + created: "2024-07-31T17:20:13.204219772Z" + dependencies: + - condition: kratos.enabled + name: kratos + repository: '@ory' + version: 0.39.1 + - condition: ory/hydra.enabled + name: hydra + repository: '@ory' + version: 0.24.2 + description: Layer5 Cloud is a collection of services that can be deployed on-premises. + digest: 6b240cdff7d97e0cc73385e15fa1e238004799ca65b9584a58a6f21b36db2e99 + icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg== + name: layer5-cloud + type: application + urls: + - https://docs.layer5.io/static/charts/layer5-cloud-v0.7.228.tgz + version: v0.7.228 + - apiVersion: v2 + appVersion: v0.7.227 + created: "2024-07-31T17:15:39.677774211Z" + dependencies: + - condition: kratos.enabled + name: kratos + repository: '@ory' + version: 0.39.1 + - condition: ory/hydra.enabled + name: hydra + repository: '@ory' + version: 0.24.2 + description: Layer5 Cloud is a collection of services that can be deployed on-premises. + digest: ffe1a7767b11d9451b5812447a175b88775573d8ae185c3902e240021567ce3b + icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg== + name: layer5-cloud + type: application + urls: + - https://docs.layer5.io/static/charts/layer5-cloud-v0.7.227.tgz + version: v0.7.227 + - apiVersion: v2 + appVersion: v0.7.226 + created: "2024-07-31T16:35:00.012137575Z" + dependencies: + - condition: kratos.enabled + name: kratos + repository: '@ory' + version: 0.39.1 + - condition: ory/hydra.enabled + name: hydra + repository: '@ory' + version: 0.24.2 + description: Layer5 Cloud is a collection of services that can be deployed on-premises. + digest: 68d31ee6d4ee439d46938307827cc38b5a3d8fecb5d7c687fc4e1a2b6f1c7209 + icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg== + name: layer5-cloud + type: application + urls: + - https://docs.layer5.io/static/charts/layer5-cloud-v0.7.226.tgz + version: v0.7.226 + - apiVersion: v2 + appVersion: v0.7.225 + created: "2024-07-30T05:48:45.171605073Z" + dependencies: + - condition: kratos.enabled + name: kratos + repository: '@ory' + version: 0.39.1 + - condition: ory/hydra.enabled + name: hydra + repository: '@ory' + version: 0.24.2 + description: Layer5 Cloud is a collection of services that can be deployed on-premises. + digest: 92bc2a665bbcc2133d58a4e1907ab7aae6223442758e7d8892a72034591f7cd6 + icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg== + name: layer5-cloud + type: application + urls: + - https://docs.layer5.io/static/charts/layer5-cloud-v0.7.225.tgz + version: v0.7.225 + - apiVersion: v2 + appVersion: v0.7.224 + created: "2024-07-28T20:47:21.037647357Z" + dependencies: + - condition: kratos.enabled + name: kratos + repository: '@ory' + version: 0.39.1 + - condition: ory/hydra.enabled + name: hydra + repository: '@ory' + version: 0.24.2 + description: Layer5 Cloud is a collection of services that can be deployed on-premises. + digest: dd69667e35ab4f65e163be13b05128fa2ffba330500bd7b75e8711a248f2ca7f + icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNDEuNzMgMTQxLjczIj48dGl0bGU+NS1saWdodC1iZzwvdGl0bGU+PHJlY3QgaWQ9Il9QYXRoXyIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIHg9Ijc5LjYzIiB5PSIyMy45NyIgd2lkdGg9IjM2LjkzIiBoZWlnaHQ9IjE3Ljc5IiBzdHlsZT0iZmlsbDojMDBiMzlmIi8+PHBhdGggaWQ9Il9QYXRoXzIiIGRhdGEtbmFtZT0iJmx0O1BhdGgmZ3Q7IiBkPSJNMTE5LjkyLDgzLjlWNzYuNTNjMC04LjQ5LTcuMTQtMTUuMzctMTUuOTQtMTUuMzdINDQuMzhWNTYuMzFIMjIuNTZ2MjFIOTguMVY4My45WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjxwb2x5Z29uIGlkPSJfUGF0aF8zIiBkYXRhLW5hbWU9IiZsdDtQYXRoJmd0OyIgcG9pbnRzPSI0NC4zOCA1MC41IDQ0LjM4IDQxLjc2IDczLjYgNDEuNzYgNzMuNiAyMy45NyAyMi41NiAyMy45NyAyMi41NiA1MC41IDQ0LjM4IDUwLjUiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNCIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik05OC4xLDg5LjYyVjEwMEg2OC44OHYxNy43OWgzNmExNC43NywxNC43NywwLDAsMCwxNS0xNC40OVY4OS42MloiIHN0eWxlPSJmaWxsOiMwMGQzYTkiLz48cGF0aCBpZD0iX1BhdGhfNSIgZGF0YS1uYW1lPSImbHQ7UGF0aCZndDsiIGQ9Ik00Mi42Myw5MC41OFYxMDBINjIuODV2MTcuNzloLTI2YTE0Ljc3LDE0Ljc3LDAsMCwxLTE1LTE0LjQ5VjkwLjU4WiIgc3R5bGU9ImZpbGw6IzAwYjM5ZiIvPjwvc3ZnPg== + name: layer5-cloud + type: application + urls: + - https://docs.layer5.io/static/charts/layer5-cloud-v0.7.224.tgz + version: v0.7.224 - apiVersion: v2 appVersion: v0.7.223 created: "2024-07-26T19:29:57.202805135Z" @@ -1447,4 +1567,4 @@ entries: urls: - https://docs.layer5.io/static/charts/layer5-cloud-0.1.0.tgz version: 0.1.0 -generated: "2024-07-26T19:29:57.197173369Z" +generated: "2024-07-31T21:34:13.095066259Z" diff --git a/static/charts/layer5-cloud-v0.7.224.tgz b/static/charts/layer5-cloud-v0.7.224.tgz new file mode 100644 index 00000000..ae80c842 Binary files /dev/null and b/static/charts/layer5-cloud-v0.7.224.tgz differ diff --git a/static/charts/layer5-cloud-v0.7.225.tgz b/static/charts/layer5-cloud-v0.7.225.tgz new file mode 100644 index 00000000..70f0e692 Binary files /dev/null and b/static/charts/layer5-cloud-v0.7.225.tgz differ diff --git a/static/charts/layer5-cloud-v0.7.226.tgz b/static/charts/layer5-cloud-v0.7.226.tgz new file mode 100644 index 00000000..cc88ac59 Binary files /dev/null and b/static/charts/layer5-cloud-v0.7.226.tgz differ diff --git a/static/charts/layer5-cloud-v0.7.227.tgz b/static/charts/layer5-cloud-v0.7.227.tgz new file mode 100644 index 00000000..b646b483 Binary files /dev/null and b/static/charts/layer5-cloud-v0.7.227.tgz differ diff --git a/static/charts/layer5-cloud-v0.7.228.tgz b/static/charts/layer5-cloud-v0.7.228.tgz new file mode 100644 index 00000000..df1cf792 Binary files /dev/null and b/static/charts/layer5-cloud-v0.7.228.tgz differ diff --git a/static/charts/layer5-cloud-v0.7.229.tgz b/static/charts/layer5-cloud-v0.7.229.tgz new file mode 100644 index 00000000..6a4a3bfa Binary files /dev/null and b/static/charts/layer5-cloud-v0.7.229.tgz differ diff --git a/static/data/csv/keys.csv b/static/data/csv/keys.csv index 9a528948..dea6090b 100644 --- a/static/data/csv/keys.csv +++ b/static/data/csv/keys.csv @@ -1,96 +1,96 @@ -,,,Authorization,,,,,,,,,Keychain,,Keys,,, -Category,Function,Feature,User,Team Admin,Workspace Admin,Org Billing Manager,Org Admin,Provider Admin,,Curator,MeshMap,Keychain ID,SQL,Key ID,SQL,Inserted,Local Provider -Catalog ,Share Design,"Share design with anyone within your organization, and make your design easily accessible to all relevant team members.",X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Share Design', NOW(), uuid_nil())",d9ae2b08-762f-418f-916f-43de736b53e2,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('d9ae2b08-762f-418f-916f-43de736b53e2','Catalog Management','Catalog Management','Catalog ','Share Design','Share design with anyone within your organization, and make your design easily accessible to all relevant team members.', NOW(), uuid_nil())",X,TRUE -Catalog,Clone Design,Clone any published design to customise it according to your use cases,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Clone Design', NOW(), uuid_nil())",94a12f80-3c45-4a1f-afb2-a68b909d0d7f,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('94a12f80-3c45-4a1f-afb2-a68b909d0d7f','Catalog Management','Catalog Management','Catalog','Clone Design','Clone any published design to customise it according to your use cases', NOW(), uuid_nil())",X,TRUE -Designs ,View Designs,View all public and published designs of other team members and private of signed-in user,X,X,X,,X,X,,,,Install extension,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Install extension','View Designs', NOW(), uuid_nil())",3798736d-1f5d-41b3-876f-f3f01453dd15,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('3798736d-1f5d-41b3-876f-f3f01453dd15','Install extension','Catalog Management','Designs ','View Designs','View all public and published designs of other team members and private of signed-in user', NOW(), uuid_nil())",X,TRUE -Filters,View Filters,View all public and published filters of other team members and private of signed-in user,X,X,X,,X,X,,,,Install extension,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Install extension','View Filters', NOW(), uuid_nil())",df41c45f-7c73-49c2-a055-0584fdcec1c1,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('df41c45f-7c73-49c2-a055-0584fdcec1c1','Install extension','Catalog Management','Filters','View Filters','View all public and published filters of other team members and private of signed-in user', NOW(), uuid_nil())",X,TRUE -Catalog Requests,View Catalog Requests,View the catalog publication request queue,,,X,,X,X,,,,Chargeback,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Chargeback','View Catalog Requests', NOW(), uuid_nil())",30b68d69-d199-48fd-b4ff-54b5282c5c03,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('30b68d69-d199-48fd-b4ff-54b5282c5c03','Chargeback','Catalog Management','Catalog Requests','View Catalog Requests','View the catalog publication request queue', NOW(), uuid_nil())",X,FALSE -Catalog Requests,Approve Catalog Request,Approve catalog publication requests,,,X,,X,X,,,,Chargeback,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Chargeback','Approve Catalog Request', NOW(), uuid_nil())",66fbc8c0-b08a-494b-8c60-68ee1b607176,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('66fbc8c0-b08a-494b-8c60-68ee1b607176','Chargeback','Catalog Management','Catalog Requests','Approve Catalog Request','Approve catalog publication requests', NOW(), uuid_nil())",X,FALSE -Catalog Requests,Deny Catalog Request,Deny catalog publication requests,,,X,,X,X,,,,Chargeback,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Chargeback','Deny Catalog Request', NOW(), uuid_nil())",b9137717-a20a-44e8-a2f9-94dc3d1a6dcb,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('b9137717-a20a-44e8-a2f9-94dc3d1a6dcb','Chargeback','Catalog Management','Catalog Requests','Deny Catalog Request','Deny catalog publication requests', NOW(), uuid_nil())",X,FALSE -Designs,Create new design,Create new Meshery design,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Create new design', NOW(), uuid_nil())",14bd933e-83b7-464d-9a4d-d8c8eb9682ab,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('14bd933e-83b7-464d-9a4d-d8c8eb9682ab','Catalog Management','Catalog Management','Designs','Create new design','Create new Meshery design', NOW(), uuid_nil())",X,TRUE -Designs,Import Design,Import a design,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Import Design', NOW(), uuid_nil())",cc040d21-3160-4a96-8efa-833487a234cd,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('cc040d21-3160-4a96-8efa-833487a234cd','Catalog Management','Catalog Management','Designs','Import Design','Import a design', NOW(), uuid_nil())",X,TRUE -Designs,Publish Design,Publish a design,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Publish Design', NOW(), uuid_nil())",9e66bdec-4177-42f9-8cec-d9eb52a12c38,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('9e66bdec-4177-42f9-8cec-d9eb52a12c38','Catalog Management','Catalog Management','Designs','Publish Design','Publish a design', NOW(), uuid_nil())",X,FALSE -Designs,Unpublish Design,Unpublish a design,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Unpublish Design', NOW(), uuid_nil())",c1595c90-b85b-4ac7-b921-f08959926db3,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('c1595c90-b85b-4ac7-b921-f08959926db3','Catalog Management','Catalog Management','Designs','Unpublish Design','Unpublish a design', NOW(), uuid_nil())",X,FALSE -Designs,Validate Design,Validate a design,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Validate Design', NOW(), uuid_nil())",da5339dd-a4bc-4b91-8865-d8a703656516,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('da5339dd-a4bc-4b91-8865-d8a703656516','Catalog Management','Catalog Management','Designs','Validate Design','Validate a design', NOW(), uuid_nil())",X,TRUE -Designs,Deploy Design,Deploy a design,,,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Deploy Design', NOW(), uuid_nil())",595b921a-ea1e-4611-83f0-503db0eeb94d,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('595b921a-ea1e-4611-83f0-503db0eeb94d','Catalog Management','Catalog Management','Designs','Deploy Design','Deploy a design', NOW(), uuid_nil())",X,TRUE -Designs,Undeploy Design,Retract all resources used in a Meshery design from the cluster,,,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Undeploy Design', NOW(), uuid_nil())",16b11ffa-7b92-4666-a0ff-191df9cd18b2,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('16b11ffa-7b92-4666-a0ff-191df9cd18b2','Catalog Management','Catalog Management','Designs','Undeploy Design','Retract all resources used in a Meshery design from the cluster', NOW(), uuid_nil())",X,TRUE -Designs,Details of design,Set design information or details of a design,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Details of design', NOW(), uuid_nil())",10a03036-53a0-40b3-9f69-6daab852e434,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('10a03036-53a0-40b3-9f69-6daab852e434','Catalog Management','Catalog Management','Designs','Details of design','Set design information or details of a design', NOW(), uuid_nil())",X,TRUE -Designs,Edit design,Edit a design,X*,X*,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Edit design', NOW(), uuid_nil())",7f2b7084-4533-4824-b688-50cf35de7ef8,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('7f2b7084-4533-4824-b688-50cf35de7ef8','Catalog Management','Catalog Management','Designs','Edit design','Edit a design', NOW(), uuid_nil())",X,TRUE -Designs,Delete a design,Delete a design,X*,X*,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Delete a design', NOW(), uuid_nil())",f024fcf7-3c3d-4521-b83e-6d659353ca0e,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('f024fcf7-3c3d-4521-b83e-6d659353ca0e','Catalog Management','Catalog Management','Designs','Delete a design','Delete a design', NOW(), uuid_nil())",X,TRUE -Designs,Download a design,Download a Meshery design in OCI or YAML format,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Download a design', NOW(), uuid_nil())",64de96b7-60db-4aab-b311-afc64066b2c4,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('64de96b7-60db-4aab-b311-afc64066b2c4','Catalog Management','Catalog Management','Designs','Download a design','Download a Meshery design in OCI or YAML format', NOW(), uuid_nil())",X,TRUE -Filters,Import Filter,Import a filter,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Import Filter', NOW(), uuid_nil())",cb79d7fb-19de-45fa-aaf5-0a0afc832bf8,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('cb79d7fb-19de-45fa-aaf5-0a0afc832bf8','Catalog Management','Catalog Management','Filters','Import Filter','Import a filter', NOW(), uuid_nil())",X,TRUE -Filters,Download a WASM filter,Download a WASM filter,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Download a WASM filter', NOW(), uuid_nil())",24325b2c-5e08-4ba8-809f-8a4a1bf91084,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('24325b2c-5e08-4ba8-809f-8a4a1bf91084','Catalog Management','Catalog Management','Filters','Download a WASM filter','Download a WASM filter', NOW(), uuid_nil())",X,TRUE -Filters,Details of WASM Filter,Check information or details of a WASM filter,X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Details of WASM Filter', NOW(), uuid_nil())",86c457b5-b9ec-4223-af1f-30a5be67d69d,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('86c457b5-b9ec-4223-af1f-30a5be67d69d','Catalog Management','Catalog Management','Filters','Details of WASM Filter','Check information or details of a WASM filter', NOW(), uuid_nil())",X,TRUE -Filters,Edit WASM filter,Edit WASM filter,X*,X*,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Edit WASM filter', NOW(), uuid_nil())",88cd144e-806e-472a-a31a-ef6d64643291,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('88cd144e-806e-472a-a31a-ef6d64643291','Catalog Management','Catalog Management','Filters','Edit WASM filter','Edit WASM filter', NOW(), uuid_nil())",X,TRUE -Filters,Clone WASM Filter,"Clone WASM filter from catalog, which allows customizing filter and use it in design",X,X,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Clone WASM Filter', NOW(), uuid_nil())",c84718ca-7479-4ad9-a2b7-a5784baa51fb,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('c84718ca-7479-4ad9-a2b7-a5784baa51fb','Catalog Management','Catalog Management','Filters','Clone WASM Filter','Clone WASM filter from catalog, which allows customizing filter and use it in design', NOW(), uuid_nil())",X,TRUE -Filters,Delete WASM Filter,Delete WASM filter permanently from catalog.,X*,X*,X,,X,X,,,,Catalog Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Catalog Management','Delete WASM Filter', NOW(), uuid_nil())",9225d5a7-7255-49be-9233-daeabefae306,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('9225d5a7-7255-49be-9233-daeabefae306','Catalog Management','Catalog Management','Filters','Delete WASM Filter','Delete WASM filter permanently from catalog.', NOW(), uuid_nil())",X,TRUE -Extensions,Install extension,Install or enable or disabble extensions in Meshery,,,,,X,X,,,,Extension Point Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Extension Point Management','Install extension', NOW(), uuid_nil())",24f41e98-7ce1-40c4-a82d-4ae0294d237d,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('24f41e98-7ce1-40c4-a82d-4ae0294d237d','Extension Point Management','Extensibility','Extensions','Install extension','Install or enable or disabble extensions in Meshery', NOW(), uuid_nil())",X,TRUE -Extensions,View Meshery User Preferences,View all user preferences in Meshery UI ,X,X,X,,X,X,,,,Extension Point Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Extension Point Management','View Meshery User Preferences', NOW(), uuid_nil())",cdec6212-bbbf-4cab-b10d-76d12bee7e56,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('cdec6212-bbbf-4cab-b10d-76d12bee7e56','Extension Point Management','Extensibility','Extensions','View Meshery User Preferences','View all user preferences in Meshery UI ', NOW(), uuid_nil())",X,TRUE -Extensions,View Extensions,View all extensions on the extension page,X,X,X,,X,X,,,,Extension Point Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Extension Point Management','View Extensions', NOW(), uuid_nil())",c1330df4-1bbe-4d5d-8828-f4bd9ee989e5,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('c1330df4-1bbe-4d5d-8828-f4bd9ee989e5','Extension Point Management','Extensibility','Extensions','View Extensions','View all extensions on the extension page', NOW(), uuid_nil())",X,TRUE -Users,View All Kubernetes Clusters,View all configured Kubernetes clusters,X,X,X,,X,X,,,,Lifecycle management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle management','View All Kubernetes Clusters', NOW(), uuid_nil())",b99a9a0a-2cb9-4be7-8251-14a249e4038e,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('b99a9a0a-2cb9-4be7-8251-14a249e4038e','Lifecycle management','Identity & Access Management','Users','View All Kubernetes Clusters','View all configured Kubernetes clusters', NOW(), uuid_nil())",X,TRUE -Teams,View Team,See only teams to which you are a member. See all other members within those teams.,X,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','View Team', NOW(), uuid_nil())",27447fb0-be46-4497-8366-c34e24920f22,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('27447fb0-be46-4497-8366-c34e24920f22','Team Management','Identity & Access Management','Teams','View Team','See only teams to which you are a member. See all other members within those teams.', NOW(), uuid_nil())",X,FALSE -Teams,View Teams,See all teams of which you are an administrator. See all members of those teams.,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','View Teams', NOW(), uuid_nil())",6ecbbe79-c392-43bd-b7b6-ecdec019e24c,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('6ecbbe79-c392-43bd-b7b6-ecdec019e24c','Team Management','Identity & Access Management','Teams','View Teams','See all teams of which you are an administrator. See all members of those teams.', NOW(), uuid_nil())",X,FALSE -Teams,View All Teams,See all teams within an organization. See all members of all teams.,X,X,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','View All Teams', NOW(), uuid_nil())",8b94dd6b-234f-4c89-86cf-b029e0090255,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('8b94dd6b-234f-4c89-86cf-b029e0090255','Organization Management','Identity & Access Management','Teams','View All Teams','See all teams within an organization. See all members of all teams.', NOW(), uuid_nil())",X,FALSE -Teams,Add User to Team,Directly create a new user account within a team.,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Add User to Team', NOW(), uuid_nil())",88b9a857-d012-4c6d-a129-4ce65b63b018,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('88b9a857-d012-4c6d-a129-4ce65b63b018','Team Management','Identity & Access Management','Teams','Add User to Team','Directly create a new user account within a team.', NOW(), uuid_nil())",X,FALSE -Teams,Invite User to Team,Send a request for a user to join a team.,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Invite User to Team', NOW(), uuid_nil())",f224ecf3-b105-4d81-9886-77127073a6ca,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('f224ecf3-b105-4d81-9886-77127073a6ca','Team Management','Identity & Access Management','Teams','Invite User to Team','Send a request for a user to join a team.', NOW(), uuid_nil())",X,FALSE -Teams,Remove User from Team,Discontinue user membership of a team and team resources.,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Remove User from Team', NOW(), uuid_nil())",e996c998-a50f-4cb8-ae7b-77127073a6ca,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('e996c998-a50f-4cb8-ae7b-77127073a6ca','Team Management','Identity & Access Management','Teams','Remove User from Team','Discontinue user membership of a team and team resources.', NOW(), uuid_nil())",X,FALSE -Teams,Create Team,Establish new team for organizing groups of users and resource access.,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Create Team', NOW(), uuid_nil())",41a9eb36-b99b-4715-8140-780f97d3c6a0,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('41a9eb36-b99b-4715-8140-780f97d3c6a0','Team Management','Identity & Access Management','Teams','Create Team','Establish new team for organizing groups of users and resource access.', NOW(), uuid_nil())",X,FALSE -Teams,Delete Team,Dissolve a team and all user memberships. Leave associated resources intact.,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Delete Team', NOW(), uuid_nil())",bbb691b6-8664-44c7-8ea7-9c46b1ca1e8b,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('bbb691b6-8664-44c7-8ea7-9c46b1ca1e8b','Team Management','Identity & Access Management','Teams','Delete Team','Dissolve a team and all user memberships. Leave associated resources intact.', NOW(), uuid_nil())",X,FALSE -Teams,Edit Team,Edit a team and add new members to it. ,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Edit Team', NOW(), uuid_nil())",6cf69881-0be0-4723-b5f0-031b7847509a,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('6cf69881-0be0-4723-b5f0-031b7847509a','Team Management','Identity & Access Management','Teams','Edit Team','Edit a team and add new members to it. ', NOW(), uuid_nil())",X,FALSE -Teams,Remove Roles from Team members,Remove roles from users in a team,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Remove Roles from Team members', NOW(), uuid_nil())",ed3dbd2d-52f8-4608-87e0-7f2999a4518c,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('ed3dbd2d-52f8-4608-87e0-7f2999a4518c','Team Management','Identity & Access Management','Teams','Remove Roles from Team members','Remove roles from users in a team', NOW(), uuid_nil())",X,FALSE -Teams,Assign Roles to Team members,Assign roles to users in a team,,X,X,,X,X,,,,Team Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Team Management','Assign Roles to Team members', NOW(), uuid_nil())",06f33eca-950c-4daa-b46d-e73af39e0868,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('06f33eca-950c-4daa-b46d-e73af39e0868','Team Management','Identity & Access Management','Teams','Assign Roles to Team members','Assign roles to users in a team', NOW(), uuid_nil())",X,FALSE -Teams,Open Team Invite,"This governs the team's invitation permissions, determining whether the team is allowed to extend invitations to new individuals to join through open invite link.",,X,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Open Team Invite', NOW(), uuid_nil())",6086c0a5-cd79-48ca-8c9f-a0e0ad75343c,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('6086c0a5-cd79-48ca-8c9f-a0e0ad75343c','Organization Management','Identity & Access Management','Teams','Open Team Invite','This governs the team's invitation permissions, determining whether the team is allowed to extend invitations to new individuals to join through open invite link.', NOW(), uuid_nil())",X,FALSE -Organizations,Create Organization,"Establish new organization for organizing teams, users, and resource access.",,,,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Create Organization', NOW(), uuid_nil())",17a6fa82-cdab-46db-a7ce-a9d0a1bbf40f,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('17a6fa82-cdab-46db-a7ce-a9d0a1bbf40f','Organization Management','Identity & Access Management','Organizations','Create Organization','Establish new organization for organizing teams, users, and resource access.', NOW(), uuid_nil())",X,FALSE -Organizations,Edit Organization,Edit organiaztions and add teams to it,,,,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Edit Organization', NOW(), uuid_nil())",d39a34fb-0ccf-4c80-8a6c-b545c8db869a,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('d39a34fb-0ccf-4c80-8a6c-b545c8db869a','Organization Management','Identity & Access Management','Organizations','Edit Organization','Edit organiaztions and add teams to it', NOW(), uuid_nil())",X,FALSE -Organizations,Add User to Organization,Directly create a new user account within an organization.,,,,X,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Add User to Organization', NOW(), uuid_nil())",33bf7a57-f787-4208-b01c-ad9b9d9c6b6c,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('33bf7a57-f787-4208-b01c-ad9b9d9c6b6c','Organization Management','Identity & Access Management','Organizations','Add User to Organization','Directly create a new user account within an organization.', NOW(), uuid_nil())",X,FALSE -Organizations,Invite User to Organization,Send a request for a user to join an organization.,,,,X,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Invite User to Organization', NOW(), uuid_nil())",c8489026-11ab-4753-a445-8e20fc032c38,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('c8489026-11ab-4753-a445-8e20fc032c38','Organization Management','Identity & Access Management','Organizations','Invite User to Organization','Send a request for a user to join an organization.', NOW(), uuid_nil())",X,FALSE -Organizations,Remove User from Organization,"Discontinue user access to organization, teams and resources; cease billing accrual.",,,,X,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Remove User from Organization', NOW(), uuid_nil())",3ed858e4-418d-4220-9d4c-a217fd466d86,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('3ed858e4-418d-4220-9d4c-a217fd466d86','Organization Management','Identity & Access Management','Organizations','Remove User from Organization','Discontinue user access to organization, teams and resources; cease billing accrual.', NOW(), uuid_nil())",X,FALSE -Organizations,Promote or Demote User to Org Admin,Elevate or remove organization level administrative privileges.,,,,X,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Promote or Demote User to Org Admin', NOW(), uuid_nil())",0ddd82df-27ed-4781-a91a-ec1dbeb620d0,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('0ddd82df-27ed-4781-a91a-ec1dbeb620d0','Organization Management','Identity & Access Management','Organizations','Promote or Demote User to Org Admin','Elevate or remove organization level administrative privileges.', NOW(), uuid_nil())",X,FALSE -Organizations,View Org,See only organizations to which you are a member. See all other members within your membership teams.,X,X,X,X,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','View Org', NOW(), uuid_nil())",49f02947-0c8d-4b2d-af53-f50ce18f8861,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('49f02947-0c8d-4b2d-af53-f50ce18f8861','Organization Management','Identity & Access Management','Organizations','View Org','See only organizations to which you are a member. See all other members within your membership teams.', NOW(), uuid_nil())",X,FALSE -Organizations,View Organizations,See all organizations of which you are an administrator. See all members of those organizations.,,,,X,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','View Organizations', NOW(), uuid_nil())",172fa7d3-0d8a-4646-a789-bf64f52ba40b,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('172fa7d3-0d8a-4646-a789-bf64f52ba40b','Organization Management','Identity & Access Management','Organizations','View Organizations','See all organizations of which you are an administrator. See all members of those organizations.', NOW(), uuid_nil())",X,FALSE -Organizations,View All Organizations,"See all organizations within a Layer5 Cloud deployment. See all organizations, teams, and users.",,,,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','View All Organizations', NOW(), uuid_nil())",e996c998-a50f-4cb8-ae7b-f2f1b523c971,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('e996c998-a50f-4cb8-ae7b-f2f1b523c971','Organization Management','Identity & Access Management','Organizations','View All Organizations','See all organizations within a Layer5 Cloud deployment. See all organizations, teams, and users.', NOW(), uuid_nil())",X,FALSE -Organizations,Remove Roles from Organization members,Remove roles from users in an organization,,,,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Remove Roles from Organization members', NOW(), uuid_nil())",8a003a11-a909-425a-bd23-d8ba14972c89,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('8a003a11-a909-425a-bd23-d8ba14972c89','Organization Management','Identity & Access Management','Organizations','Remove Roles from Organization members','Remove roles from users in an organization', NOW(), uuid_nil())",X,FALSE -Organizations,Assign Roles to Organization members,Assign roles to users in an organization,,,,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Assign Roles to Organization members', NOW(), uuid_nil())",0d455711-6205-422b-9de7-05933fe2aeb2,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('0d455711-6205-422b-9de7-05933fe2aeb2','Organization Management','Identity & Access Management','Organizations','Assign Roles to Organization members','Assign roles to users in an organization', NOW(), uuid_nil())",X,FALSE -Connections,Add cluster,Add Kubernetes cluster,,,X,,X,X,,,,Lifecycle Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle Management','Add cluster', NOW(), uuid_nil())",fce15b20-78ac-42af-b79c-b8f19bdb0802,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('fce15b20-78ac-42af-b79c-b8f19bdb0802','Lifecycle Management','Lifecycle Management','Connections','Add cluster','Add Kubernetes cluster', NOW(), uuid_nil())",X,TRUE -Connections,Change connection state,Change connection state,,,X,,X,X,,,,Lifecycle Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle Management','Change connection state', NOW(), uuid_nil())",14ac9622-3170-4580-8403-ed7a584f90ef,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('14ac9622-3170-4580-8403-ed7a584f90ef','Lifecycle Management','Lifecycle Management','Connections','Change connection state','Change connection state', NOW(), uuid_nil())",X,TRUE -Connections,Flush Meshsync data,Clearing the database by clicking on the `Flush MeshSync`,,,X,,X,X,,,,Lifecycle Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle Management','Flush Meshsync data', NOW(), uuid_nil())",8dd4c54a-bccd-4fb3-a18c-269195653a91,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('8dd4c54a-bccd-4fb3-a18c-269195653a91','Lifecycle Management','Lifecycle Management','Connections','Flush Meshsync data','Clearing the database by clicking on the `Flush MeshSync`', NOW(), uuid_nil())",X,TRUE -Connections,Register discovered Meshsync resource,Register discovered Meshsync resource to change state to connection,,,X,,X,X,,,,Lifecycle Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle Management','Register discovered Meshsync resource', NOW(), uuid_nil())",214ad6b1-df4d-44a6-8872-8ad1f751ef68,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('214ad6b1-df4d-44a6-8872-8ad1f751ef68','Lifecycle Management','Lifecycle Management','Connections','Register discovered Meshsync resource','Register discovered Meshsync resource to change state to connection', NOW(), uuid_nil())",X,TRUE -Connections,Delete a connection,Delete a connection,,,X,,X,X,,,,Lifecycle Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle Management','Delete a connection', NOW(), uuid_nil())",61afb8c2-cda6-4175-aad9-74ff87fed323,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('61afb8c2-cda6-4175-aad9-74ff87fed323','Lifecycle Management','Lifecycle Management','Connections','Delete a connection','Delete a connection', NOW(), uuid_nil())",X,TRUE -Settings,View Settings,View settings in Meshery,X,X,X,,X,X,,,,Settings Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Settings Management','View Settings', NOW(), uuid_nil())",fdc038e3-1fdf-403a-af8a-53c0de8d7820,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('fdc038e3-1fdf-403a-af8a-53c0de8d7820','Settings Management','Meshery System','Settings','View Settings','View settings in Meshery', NOW(), uuid_nil())",X,TRUE -Settings,Connect adapter,Configure and connect to Meshery adapters,,,,,X,X,,,,Settings Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Settings Management','Connect adapter', NOW(), uuid_nil())",c93bd211-1dac-42cc-9086-859288826d1b,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('c93bd211-1dac-42cc-9086-859288826d1b','Settings Management','Meshery System','Settings','Connect adapter','Configure and connect to Meshery adapters', NOW(), uuid_nil())",X,TRUE -Settings,Connect Metrics,Configure and connect to metrics like Grafana and Promethues,,,,,X,X,,,,Settings Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Settings Management','Connect Metrics', NOW(), uuid_nil())",b0aee906-c549-445f-be0c-b98b04d47d09,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('b0aee906-c549-445f-be0c-b98b04d47d09','Settings Management','Meshery System','Settings','Connect Metrics','Configure and connect to metrics like Grafana and Promethues', NOW(), uuid_nil())",X,TRUE -Settings,View Metrics,View already configured metrics,X,X,X,,X,X,,,,Settings Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Settings Management','View Metrics', NOW(), uuid_nil())",7fe36f60-fd0a-4fda-84e5-c64a04c3ad06,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('7fe36f60-fd0a-4fda-84e5-c64a04c3ad06','Settings Management','Meshery System','Settings','View Metrics','View already configured metrics', NOW(), uuid_nil())",X,TRUE -Settings,View Registry,Explore entities within capabilities registry ,X,X,X,,X,X,,,,Settings Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Settings Management','View Registry', NOW(), uuid_nil())",cc069117-08cc-44e3-9c61-ae0eeca0bcf1,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('cc069117-08cc-44e3-9c61-ae0eeca0bcf1','Settings Management','Meshery System','Settings','View Registry','Explore entities within capabilities registry ', NOW(), uuid_nil())",X,TRUE -Performance,Add performace profile,Add a new performace profile,,,,,X,X,,,,Performance Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Performance Management','Add performace profile', NOW(), uuid_nil())",b2861578-c573-45fe-a95e-0356d56e1d1b,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('b2861578-c573-45fe-a95e-0356d56e1d1b','Performance Management','Performance Management','Performance','Add performace profile','Add a new performace profile', NOW(), uuid_nil())",X,TRUE -Performance,Run test,Run a test on performance profile,,,,,X,X,,,,Performance Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Performance Management','Run test', NOW(), uuid_nil())",06de2b07-b4f4-4701-b87f-d92ebb66ba42,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('06de2b07-b4f4-4701-b87f-d92ebb66ba42','Performance Management','Performance Management','Performance','Run test','Run a test on performance profile', NOW(), uuid_nil())",X,TRUE -Performance,View Results,View results of performance tests,X,X,X,,X,X,,,,Performance Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Performance Management','View Results', NOW(), uuid_nil())",0c757cc7-4038-4d9b-9b60-fa8d9fc9d27e,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('0c757cc7-4038-4d9b-9b60-fa8d9fc9d27e','Performance Management','Performance Management','Performance','View Results','View results of performance tests', NOW(), uuid_nil())",X,TRUE -Performance,Edit performance test,Edit performance test,,,,,X,X,,,,Performance Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Performance Management','Edit performance test', NOW(), uuid_nil())",33aa5c47-a8aa-4ad5-9950-7c17042c001d,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('33aa5c47-a8aa-4ad5-9950-7c17042c001d','Performance Management','Performance Management','Performance','Edit performance test','Edit performance test', NOW(), uuid_nil())",X,TRUE -Performance,Delete performance test,Delete performance test,,,,,X,X,,,,Performance Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Performance Management','Delete performance test', NOW(), uuid_nil())",84aa9d3c-3d4b-4587-947d-ae17b2dcd5f5,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('84aa9d3c-3d4b-4587-947d-ae17b2dcd5f5','Performance Management','Performance Management','Performance','Delete performance test','Delete performance test', NOW(), uuid_nil())",X,TRUE -Performance,View performance profiles,View all performance profiles,X,X,X,,X,X,,,,Performance Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Performance Management','View performance profiles', NOW(), uuid_nil())",6593ac26-820b-4e87-be32-64ee740ea204,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('6593ac26-820b-4e87-be32-64ee740ea204','Performance Management','Performance Management','Performance','View performance profiles','View all performance profiles', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Manage cloud native infrastructure life cycle,Manage cloud native infrastructure life cycle,,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Manage cloud native infrastructure life cycle', NOW(), uuid_nil())",255fd148-e3fd-4408-a48c-0d157a57d4d9,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('255fd148-e3fd-4408-a48c-0d157a57d4d9','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Manage cloud native infrastructure life cycle','Manage cloud native infrastructure life cycle', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Manage cloud native infrastructure configuration,"Manage cloud native configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info",,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Manage cloud native infrastructure configuration', NOW(), uuid_nil())",0eb0558d-9b21-4e50-b4c6-bd8e9e3414f5,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('0eb0558d-9b21-4e50-b4c6-bd8e9e3414f5','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Manage cloud native infrastructure configuration','Manage cloud native configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Apply cloud native infrastructure configuration,"Configure cloud native with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy",,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Apply cloud native infrastructure configuration', NOW(), uuid_nil())",3f20a106-24f5-4da6-a8eb-6eddaad50944,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('3f20a106-24f5-4da6-a8eb-6eddaad50944','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Apply cloud native infrastructure configuration','Configure cloud native with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Validate cloud native infrastructure configuration,"Validate cloud native configuration against best practices like Analyze Running Configuration, SMI conformance",,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Validate cloud native infrastructure configuration', NOW(), uuid_nil())",8bb93f97-fcfb-4827-9fed-f931fdca7b95,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('8bb93f97-fcfb-4827-9fed-f931fdca7b95','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Validate cloud native infrastructure configuration','Validate cloud native configuration against best practices like Analyze Running Configuration, SMI conformance', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Apply custom cloud native infrastructure configuration,Apply custom cloud native configuration,,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Apply custom cloud native infrastructure configuration', NOW(), uuid_nil())",2f4e2300-4c7e-4d48-95aa-74614a4826fe,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('2f4e2300-4c7e-4d48-95aa-74614a4826fe','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Apply custom cloud native infrastructure configuration','Apply custom cloud native configuration', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Deploy cloud native infrastructure,Deploy cloud native infrastructure,,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Deploy cloud native infrastructure', NOW(), uuid_nil())",f7e70ffb-333d-43b3-a76e-0e6c63b9fbfa,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('f7e70ffb-333d-43b3-a76e-0e6c63b9fbfa','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Deploy cloud native infrastructure','Deploy cloud native infrastructure', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,Undeploy cloud native infrastructure,Undeploy cloud native infrastructure,,,,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','Undeploy cloud native infrastructure', NOW(), uuid_nil())",6e7f6f4f-4321-4e42-9eff-6a8323f32e84,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('6e7f6f4f-4321-4e42-9eff-6a8323f32e84','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','Undeploy cloud native infrastructure','Undeploy cloud native infrastructure', NOW(), uuid_nil())",X,TRUE -Cloud native infrastructure lifecycle,View cloud native infrastructure,View all cloud native infrastructure in Meshery UI,X,X,X,,X,X,,,,Infrastructure Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Infrastructure Management','View cloud native infrastructure', NOW(), uuid_nil())",fdc485dc-f68b-405c-9e54-7b9a7254c282,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('fdc485dc-f68b-405c-9e54-7b9a7254c282','Infrastructure Management','Infrastructure Management','Cloud native infrastructure lifecycle','View cloud native infrastructure','View all cloud native infrastructure in Meshery UI', NOW(), uuid_nil())",X,TRUE -Connections,View Connections,View all connections within an environment,X,X,X,,X,X,,,,Lifecycle management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Lifecycle management','View Connections', NOW(), uuid_nil())",b35c9ce0-e787-4de6-8560-631007b0b947,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('b35c9ce0-e787-4de6-8560-631007b0b947','Lifecycle management','Workspace Management','Connections','View Connections','View all connections within an environment', NOW(), uuid_nil())",X,TRUE -Environments,View Environment,See all environments within an workspace.,X,X,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','View Environment', NOW(), uuid_nil())",e3656bbc-fba2-483d-9996-34f8614cd21b,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('e3656bbc-fba2-483d-9996-34f8614cd21b','Organization Management','Workspace Management','Environments','View Environment','See all environments within an workspace.', NOW(), uuid_nil())",X,FALSE -Environments,Create Environment,Create a new environment,,,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Create Environment', NOW(), uuid_nil())",a97b7f3b-3349-4a86-b917-2ce0b64a540b,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('a97b7f3b-3349-4a86-b917-2ce0b64a540b','Organization Management','Workspace Management','Environments','Create Environment','Create a new environment', NOW(), uuid_nil())",X,TRUE -Environments,Delete Environment,Dissolve environment and all connection memberships. Leave associated resources intact.,,,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Delete Environment', NOW(), uuid_nil())",70747966-dfad-4523-93ce-bd7421258955,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('70747966-dfad-4523-93ce-bd7421258955','Organization Management','Workspace Management','Environments','Delete Environment','Dissolve environment and all connection memberships. Leave associated resources intact.', NOW(), uuid_nil())",X,TRUE -Environments,Edit Environment,Edit environment and it connection membership,,,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Edit Environment', NOW(), uuid_nil())",145ab6ed-b4b6-4e34-ada5-78dada250f89,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('145ab6ed-b4b6-4e34-ada5-78dada250f89','Organization Management','Workspace Management','Environments','Edit Environment','Edit environment and it connection membership', NOW(), uuid_nil())",X,TRUE -Environments,Assign connections to environment,Add new connections to environments,,,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Assign connections to environment', NOW(), uuid_nil())",52cbe0b8-9aa7-4605-8eed-aa37e595adbb,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('52cbe0b8-9aa7-4605-8eed-aa37e595adbb','Organization Management','Workspace Management','Environments','Assign connections to environment','Add new connections to environments', NOW(), uuid_nil())",X,TRUE -Environments,Remove connections from environments,"Remove connections from environment, ",,,X,,X,X,,,,Organization Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Organization Management','Remove connections from environments', NOW(), uuid_nil())",65648682-e47f-43d7-a5ad-dc042803f951,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('65648682-e47f-43d7-a5ad-dc042803f951','Organization Management','Workspace Management','Environments','Remove connections from environments','Remove connections from environment, ', NOW(), uuid_nil())",X,TRUE -Catalog,View Catalog,View all items in catalog,X,X,X,,X,X,,,,User View,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('User View','View Catalog', NOW(), uuid_nil())",0cd05106-36b6-4393-a08e-4222fc10c8de,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('0cd05106-36b6-4393-a08e-4222fc10c8de','User View','Catalog Management','Catalog','View Catalog','View all items in catalog', NOW(), uuid_nil())",X,FALSE -Workspace,View Workspace,See all workspaces within an organisation,X,X,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','View Workspace', NOW(), uuid_nil())",bc9379e8-dc18-4655-b53c-c641271c4ba3,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('bc9379e8-dc18-4655-b53c-c641271c4ba3','Workspace Management','Workspace Management','Workspace','View Workspace','See all workspaces within an organisation', NOW(), uuid_nil())",X,FALSE -Workspace,Delete Workspace,Dissolve workspace and all team and environment memberships. Leave associated resources intact,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Delete Workspace', NOW(), uuid_nil())",09eb0507-2f14-4bc4-92c5-9e26a4efbd5e,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('09eb0507-2f14-4bc4-92c5-9e26a4efbd5e','Workspace Management','Workspace Management','Workspace','Delete Workspace','Dissolve workspace and all team and environment memberships. Leave associated resources intact', NOW(), uuid_nil())",X,TRUE -Workspace,Edit Workspace,Edit workspace and it's team and environment membership,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Edit Workspace', NOW(), uuid_nil())",4112230f-5d1e-4d30-9790-942ad5c1dc50,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('4112230f-5d1e-4d30-9790-942ad5c1dc50','Workspace Management','Workspace Management','Workspace','Edit Workspace','Edit workspace and it's team and environment membership', NOW(), uuid_nil())",X,TRUE -Workspace,Create Workspace,Create new workspace,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Create Workspace', NOW(), uuid_nil())",eb42ac41-a883-465e-843c-d64e962a3a0e,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('eb42ac41-a883-465e-843c-d64e962a3a0e','Workspace Management','Workspace Management','Workspace','Create Workspace','Create new workspace', NOW(), uuid_nil())",X,TRUE -Workspace,Assign team to workspace,Add new team to workspace,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Assign team to workspace', NOW(), uuid_nil())",6ab4263b-0bb3-492e-9878-6936a5b6312f,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('6ab4263b-0bb3-492e-9878-6936a5b6312f','Workspace Management','Workspace Management','Workspace','Assign team to workspace','Add new team to workspace', NOW(), uuid_nil())",X,TRUE -Workspace,Remove team from workspace,Remove team from workspace,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Remove team from workspace', NOW(), uuid_nil())",c4ed82f5-783d-4451-9b34-44f50cae71df,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('c4ed82f5-783d-4451-9b34-44f50cae71df','Workspace Management','Workspace Management','Workspace','Remove team from workspace','Remove team from workspace', NOW(), uuid_nil())",X,TRUE -Workspace,Assign environment to workspace,Add new environment to workspace,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Assign environment to workspace', NOW(), uuid_nil())",f421fc20-c14a-4282-b526-776c6cacfd99,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('f421fc20-c14a-4282-b526-776c6cacfd99','Workspace Management','Workspace Management','Workspace','Assign environment to workspace','Add new environment to workspace', NOW(), uuid_nil())",X,TRUE -Workspace,Remove environment from workspace,Remove environment from workspace,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Remove environment from workspace', NOW(), uuid_nil())",d0657715-80fb-4b00-af27-b78bb0fa56df,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('d0657715-80fb-4b00-af27-b78bb0fa56df','Workspace Management','Workspace Management','Workspace','Remove environment from workspace','Remove environment from workspace', NOW(), uuid_nil())",X,TRUE -Workspace,Assign Designs to Workspaces,Assign designs to workspaces,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Assign Designs to Workspaces', NOW(), uuid_nil())",64a1bad5-30f1-431a-aea0-8073d14a0262,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('64a1bad5-30f1-431a-aea0-8073d14a0262','Workspace Management','Workspace Management','Workspace','Assign Designs to Workspaces','Assign designs to workspaces', NOW(), uuid_nil())",,FALSE -Workspace,Remove Designs from Workspaces,Remove designs from workspaces,,,X,,X,X,,,,Workspace Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Workspace Management','Remove Designs from Workspaces', NOW(), uuid_nil())",076515f1-f696-4211-ae27-58d5463a229e,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('076515f1-f696-4211-ae27-58d5463a229e','Workspace Management','Workspace Management','Workspace','Remove Designs from Workspaces','Remove designs from workspaces', NOW(), uuid_nil())",,FALSE -Settings,Reset Database,Reset Meshery database,,,,,X,X,,,,Settings Management,"INSERT INTO keychains (id, name, created_at, owner) VALUES ('Settings Management','Reset Database', NOW(), uuid_nil())",84fc402c-f33e-4a21-a0e3-e14f9e20b125,"INSERT INTO keys (id, keychain_id, category, subcategory, function, description, created_at, owner) VALUES ('84fc402c-f33e-4a21-a0e3-e14f9e20b125','Settings Management','Meshery System','Settings','Reset Database','Reset Meshery database', NOW(), uuid_nil())",X,TRUE \ No newline at end of file +,,,Authorization,,,,,,Keychain,Keys,, +Category,Function,Feature,User,Team Admin,Workspace Admin,Org Billing Manager,Org Admin,Provider Admin,Keychain ID,Key ID,Inserted,Local Provider +Catalog ,Share Design,"Share design with anyone within your organization, and make your design easily accessible to all relevant team members.",X,X,X,,X,X,Catalog Management,d9ae2b08-762f-418f-916f-43de736b53e2,X,TRUE +Catalog,Clone Design,Clone any published design to customise it according to your use cases,X,X,X,,X,X,Catalog Management,94a12f80-3c45-4a1f-afb2-a68b909d0d7f,X,TRUE +Designs ,View Designs,View all public and published designs of other team members and private of signed-in user,X,X,X,,X,X,Install extension,3798736d-1f5d-41b3-876f-f3f01453dd15,X,TRUE +Filters,View Filters,View all public and published filters of other team members and private of signed-in user,X,X,X,,X,X,Install extension,df41c45f-7c73-49c2-a055-0584fdcec1c1,X,TRUE +Catalog Requests,View Catalog Requests,View the catalog publication request queue,,,X,,X,X,Chargeback,30b68d69-d199-48fd-b4ff-54b5282c5c03,X,FALSE +Catalog Requests,Approve Catalog Request,Approve catalog publication requests,,,X,,X,X,Chargeback,66fbc8c0-b08a-494b-8c60-68ee1b607176,X,FALSE +Catalog Requests,Deny Catalog Request,Deny catalog publication requests,,,X,,X,X,Chargeback,b9137717-a20a-44e8-a2f9-94dc3d1a6dcb,X,FALSE +Designs,Create new design,Create new Meshery design,X,X,X,,X,X,Catalog Management,14bd933e-83b7-464d-9a4d-d8c8eb9682ab,X,TRUE +Designs,Import Design,Import a design,X,X,X,,X,X,Catalog Management,cc040d21-3160-4a96-8efa-833487a234cd,X,TRUE +Designs,Publish Design,Publish a design,X,X,X,,X,X,Catalog Management,9e66bdec-4177-42f9-8cec-d9eb52a12c38,X,FALSE +Designs,Unpublish Design,Unpublish a design,X,X,X,,X,X,Catalog Management,c1595c90-b85b-4ac7-b921-f08959926db3,X,FALSE +Designs,Validate Design,Validate a design,X,X,X,,X,X,Catalog Management,da5339dd-a4bc-4b91-8865-d8a703656516,X,TRUE +Designs,Deploy Design,Deploy a design,,,X,,X,X,Catalog Management,595b921a-ea1e-4611-83f0-503db0eeb94d,X,TRUE +Designs,Undeploy Design,Retract all resources used in a Meshery design from the cluster,,,X,,X,X,Catalog Management,16b11ffa-7b92-4666-a0ff-191df9cd18b2,X,TRUE +Designs,Details of design,Set design information or details of a design,X,X,X,,X,X,Catalog Management,10a03036-53a0-40b3-9f69-6daab852e434,X,TRUE +Designs,Edit design,Edit a design,X*,X*,X,,X,X,Catalog Management,7f2b7084-4533-4824-b688-50cf35de7ef8,X,TRUE +Designs,Delete a design,Delete a design,X*,X*,X,,X,X,Catalog Management,f024fcf7-3c3d-4521-b83e-6d659353ca0e,X,TRUE +Designs,Download a design,Download a Meshery design in OCI or YAML format,X,X,X,,X,X,Catalog Management,64de96b7-60db-4aab-b311-afc64066b2c4,X,TRUE +Filters,Import Filter,Import a filter,X,X,X,,X,X,Catalog Management,cb79d7fb-19de-45fa-aaf5-0a0afc832bf8,X,TRUE +Filters,Download a WASM filter,Download a WASM filter,X,X,X,,X,X,Catalog Management,24325b2c-5e08-4ba8-809f-8a4a1bf91084,X,TRUE +Filters,Details of WASM Filter,Check information or details of a WASM filter,X,X,X,,X,X,Catalog Management,86c457b5-b9ec-4223-af1f-30a5be67d69d,X,TRUE +Filters,Edit WASM filter,Edit WASM filter,X*,X*,X,,X,X,Catalog Management,88cd144e-806e-472a-a31a-ef6d64643291,X,TRUE +Filters,Clone WASM Filter,"Clone WASM filter from catalog, which allows customizing filter and use it in design",X,X,X,,X,X,Catalog Management,c84718ca-7479-4ad9-a2b7-a5784baa51fb,X,TRUE +Filters,Delete WASM Filter,Delete WASM filter permanently from catalog.,X*,X*,X,,X,X,Catalog Management,9225d5a7-7255-49be-9233-daeabefae306,X,TRUE +Extensions,Install extension,Install or enable or disabble extensions in Meshery,,,,,X,X,Extension Point Management,24f41e98-7ce1-40c4-a82d-4ae0294d237d,X,TRUE +Extensions,View Meshery User Preferences,View all user preferences in Meshery UI ,X,X,X,,X,X,Extension Point Management,cdec6212-bbbf-4cab-b10d-76d12bee7e56,X,TRUE +Extensions,View Extensions,View all extensions on the extension page,X,X,X,,X,X,Extension Point Management,c1330df4-1bbe-4d5d-8828-f4bd9ee989e5,X,TRUE +Users,View All Kubernetes Clusters,View all configured Kubernetes clusters,X,X,X,,X,X,Lifecycle management,b99a9a0a-2cb9-4be7-8251-14a249e4038e,X,TRUE +Teams,View Team,See only teams to which you are a member. See all other members within those teams.,X,X,X,,X,X,Team Management,27447fb0-be46-4497-8366-c34e24920f22,X,FALSE +Teams,View Teams,See all teams of which you are an administrator. See all members of those teams.,,X,X,,X,X,Team Management,6ecbbe79-c392-43bd-b7b6-ecdec019e24c,X,FALSE +Teams,View All Teams,See all teams within an organization. See all members of all teams.,X,X,X,,X,X,Organization Management,8b94dd6b-234f-4c89-86cf-b029e0090255,X,FALSE +Teams,Add User to Team,Directly create a new user account within a team.,,X,X,,X,X,Team Management,88b9a857-d012-4c6d-a129-4ce65b63b018,X,FALSE +Teams,Invite User to Team,Send a request for a user to join a team.,,X,X,,X,X,Team Management,f224ecf3-b105-4d81-9886-77127073a6ca,X,FALSE +Teams,Remove User from Team,Discontinue user membership of a team and team resources.,,X,X,,X,X,Team Management,e996c998-a50f-4cb8-ae7b-77127073a6ca,X,FALSE +Teams,Create Team,Establish new team for organizing groups of users and resource access.,,X,X,,X,X,Team Management,41a9eb36-b99b-4715-8140-780f97d3c6a0,X,FALSE +Teams,Delete Team,Dissolve a team and all user memberships. Leave associated resources intact.,,X,X,,X,X,Team Management,bbb691b6-8664-44c7-8ea7-9c46b1ca1e8b,X,FALSE +Teams,Edit Team,Edit a team and add new members to it. ,,X,X,,X,X,Team Management,6cf69881-0be0-4723-b5f0-031b7847509a,X,FALSE +Teams,Remove Roles from Team members,Remove roles from users in a team,,X,X,,X,X,Team Management,ed3dbd2d-52f8-4608-87e0-7f2999a4518c,X,FALSE +Teams,Assign Roles to Team members,Assign roles to users in a team,,X,X,,X,X,Team Management,06f33eca-950c-4daa-b46d-e73af39e0868,X,FALSE +Teams,Open Team Invite,"This governs the team's invitation permissions, determining whether the team is allowed to extend invitations to new individuals to join through open invite link.",,X,X,,X,X,Organization Management,6086c0a5-cd79-48ca-8c9f-a0e0ad75343c,X,FALSE +Organizations,Create Organization,"Establish new organization for organizing teams, users, and resource access.",,,,,X,X,Organization Management,17a6fa82-cdab-46db-a7ce-a9d0a1bbf40f,X,FALSE +Organizations,Edit Organization,Edit organiaztions and add teams to it,,,,,X,X,Organization Management,d39a34fb-0ccf-4c80-8a6c-b545c8db869a,X,FALSE +Organizations,Add User to Organization,Directly create a new user account within an organization.,,,,X,X,X,Organization Management,33bf7a57-f787-4208-b01c-ad9b9d9c6b6c,X,FALSE +Organizations,Invite User to Organization,Send a request for a user to join an organization.,,,,X,X,X,Organization Management,c8489026-11ab-4753-a445-8e20fc032c38,X,FALSE +Organizations,Remove User from Organization,"Discontinue user access to organization, teams and resources; cease billing accrual.",,,,X,X,X,Organization Management,3ed858e4-418d-4220-9d4c-a217fd466d86,X,FALSE +Organizations,Promote or Demote User to Org Admin,Elevate or remove organization level administrative privileges.,,,,X,X,X,Organization Management,0ddd82df-27ed-4781-a91a-ec1dbeb620d0,X,FALSE +Organizations,View Org,See only organizations to which you are a member. See all other members within your membership teams.,X,X,X,X,X,X,Organization Management,49f02947-0c8d-4b2d-af53-f50ce18f8861,X,FALSE +Organizations,View Organizations,See all organizations of which you are an administrator. See all members of those organizations.,,,,X,X,X,Organization Management,172fa7d3-0d8a-4646-a789-bf64f52ba40b,X,FALSE +Organizations,View All Organizations,"See all organizations within a Layer5 Cloud deployment. See all organizations, teams, and users.",,,,,X,X,Organization Management,e996c998-a50f-4cb8-ae7b-f2f1b523c971,X,FALSE +Organizations,Remove Roles from Organization members,Remove roles from users in an organization,,,,,X,X,Organization Management,8a003a11-a909-425a-bd23-d8ba14972c89,X,FALSE +Organizations,Assign Roles to Organization members,Assign roles to users in an organization,,,,,X,X,Organization Management,0d455711-6205-422b-9de7-05933fe2aeb2,X,FALSE +Connections,Add cluster,Add Kubernetes cluster,,,X,,X,X,Lifecycle Management,fce15b20-78ac-42af-b79c-b8f19bdb0802,X,TRUE +Connections,Change connection state,Change connection state,,,X,,X,X,Lifecycle Management,14ac9622-3170-4580-8403-ed7a584f90ef,X,TRUE +Connections,Flush Meshsync data,Clearing the database by clicking on the `Flush MeshSync`,,,X,,X,X,Lifecycle Management,8dd4c54a-bccd-4fb3-a18c-269195653a91,X,TRUE +Connections,Register discovered Meshsync resource,Register discovered Meshsync resource to change state to connection,,,X,,X,X,Lifecycle Management,214ad6b1-df4d-44a6-8872-8ad1f751ef68,X,TRUE +Connections,Delete a connection,Delete a connection,,,X,,X,X,Lifecycle Management,61afb8c2-cda6-4175-aad9-74ff87fed323,X,TRUE +Settings,View Settings,View settings in Meshery,X,X,X,,X,X,Settings Management,fdc038e3-1fdf-403a-af8a-53c0de8d7820,X,TRUE +Settings,Connect adapter,Configure and connect to Meshery adapters,,,,,X,X,Settings Management,c93bd211-1dac-42cc-9086-859288826d1b,X,TRUE +Settings,Connect Metrics,Configure and connect to metrics like Grafana and Promethues,,,,,X,X,Settings Management,b0aee906-c549-445f-be0c-b98b04d47d09,X,TRUE +Settings,View Metrics,View already configured metrics,X,X,X,,X,X,Settings Management,7fe36f60-fd0a-4fda-84e5-c64a04c3ad06,X,TRUE +Settings,View Registry,Explore entities within capabilities registry ,X,X,X,,X,X,Settings Management,cc069117-08cc-44e3-9c61-ae0eeca0bcf1,X,TRUE +Performance,Add performace profile,Add a new performace profile,,,,,X,X,Performance Management,b2861578-c573-45fe-a95e-0356d56e1d1b,X,TRUE +Performance,Run test,Run a test on performance profile,,,,,X,X,Performance Management,06de2b07-b4f4-4701-b87f-d92ebb66ba42,X,TRUE +Performance,View Results,View results of performance tests,X,X,X,,X,X,Performance Management,0c757cc7-4038-4d9b-9b60-fa8d9fc9d27e,X,TRUE +Performance,Edit performance test,Edit performance test,,,,,X,X,Performance Management,33aa5c47-a8aa-4ad5-9950-7c17042c001d,X,TRUE +Performance,Delete performance test,Delete performance test,,,,,X,X,Performance Management,84aa9d3c-3d4b-4587-947d-ae17b2dcd5f5,X,TRUE +Performance,View performance profiles,View all performance profiles,X,X,X,,X,X,Performance Management,6593ac26-820b-4e87-be32-64ee740ea204,X,TRUE +Cloud native infrastructure lifecycle,Manage cloud native infrastructure life cycle,"This permission grants the user the ability to manage infrastructure life cycles within meshery. Meshery allows users to visualize, work on and manage various cloud native technologies.",,,,,X,X,Infrastructure Management,255fd148-e3fd-4408-a48c-0d157a57d4d9,X,TRUE +Cloud native infrastructure lifecycle,Manage cloud native infrastructure configuration,"Manage infrastructure configuration for applications like EmojiVoto, HTTPBin, Image Hub, Istio Book Info",,,,,X,X,Infrastructure Management,0eb0558d-9b21-4e50-b4c6-bd8e9e3414f5,X,TRUE +Cloud native infrastructure lifecycle,Apply cloud native infrastructure configuration,"Configure infrastructure with some predefined options like Automatic Sidecar injection, Envoy Filter, Policy",,,,,X,X,Infrastructure Management,3f20a106-24f5-4da6-a8eb-6eddaad50944,X,TRUE +Cloud native infrastructure lifecycle,Validate cloud native infrastructure configuration,"Validate cloud native configuration against best practices like Analyze Running Configuration, SMI conformance",,,,,X,X,Infrastructure Management,8bb93f97-fcfb-4827-9fed-f931fdca7b95,X,TRUE +Cloud native infrastructure lifecycle,Apply custom cloud native infrastructure configuration,This permission grants the user the ability to apply custom configuration and customize existing configuration of thier cloud native infrastructure,,,,,X,X,Infrastructure Management,2f4e2300-4c7e-4d48-95aa-74614a4826fe,X,TRUE +Cloud native infrastructure lifecycle,Deploy cloud native infrastructure,"This permission grants the user the ability to deploy thier infrastructure to a cluster through Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies",,,,,X,X,Infrastructure Management,f7e70ffb-333d-43b3-a76e-0e6c63b9fbfa,X,TRUE +Cloud native infrastructure lifecycle,Undeploy cloud native infrastructure,"This permission grants the user the ability to undeploy thier infrastructure from a cluster through Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies",,,,,X,X,Infrastructure Management,6e7f6f4f-4321-4e42-9eff-6a8323f32e84,X,TRUE +Cloud native infrastructure lifecycle,View cloud native infrastructure,"This permission grants the user the ability to view all cloud native infrastructure in Meshery. Meshery allows users to visualize, work on and manage various cloud native technologies.",X,X,X,,X,X,Infrastructure Management,fdc485dc-f68b-405c-9e54-7b9a7254c282,X,TRUE +Connections,View Connections,View all connections within an environment,X,X,X,,X,X,Lifecycle management,b35c9ce0-e787-4de6-8560-631007b0b947,X,TRUE +Environments,View Environment,See all environments within an workspace.,X,X,X,,X,X,Organization Management,e3656bbc-fba2-483d-9996-34f8614cd21b,X,FALSE +Environments,Create Environment,Create a new environment,,,X,,X,X,Organization Management,a97b7f3b-3349-4a86-b917-2ce0b64a540b,X,TRUE +Environments,Delete Environment,Dissolve environment and all connection memberships. Leave associated resources intact.,,,X,,X,X,Organization Management,70747966-dfad-4523-93ce-bd7421258955,X,TRUE +Environments,Edit Environment,Edit environment and it connection membership,,,X,,X,X,Organization Management,145ab6ed-b4b6-4e34-ada5-78dada250f89,X,TRUE +Environments,Assign connections to environment,Add new connections to environments,,,X,,X,X,Organization Management,52cbe0b8-9aa7-4605-8eed-aa37e595adbb,X,TRUE +Environments,Remove connections from environments,"Remove connections from environment, ",,,X,,X,X,Organization Management,65648682-e47f-43d7-a5ad-dc042803f951,X,TRUE +Catalog,View Catalog,View all items in catalog,X,X,X,,X,X,User View,0cd05106-36b6-4393-a08e-4222fc10c8de,X,FALSE +Workspace,View Workspace,See all workspaces within an organisation,X,X,X,,X,X,Workspace Management,bc9379e8-dc18-4655-b53c-c641271c4ba3,X,FALSE +Workspace,Delete Workspace,Dissolve workspace and all team and environment memberships. Leave associated resources intact,,,X,,X,X,Workspace Management,09eb0507-2f14-4bc4-92c5-9e26a4efbd5e,X,TRUE +Workspace,Edit Workspace,Edit workspace and it's team and environment membership,,,X,,X,X,Workspace Management,4112230f-5d1e-4d30-9790-942ad5c1dc50,X,TRUE +Workspace,Create Workspace,Create new workspace,,,X,,X,X,Workspace Management,eb42ac41-a883-465e-843c-d64e962a3a0e,X,TRUE +Workspace,Assign team to workspace,Add new team to workspace,,,X,,X,X,Workspace Management,6ab4263b-0bb3-492e-9878-6936a5b6312f,X,TRUE +Workspace,Remove team from workspace,Remove team from workspace,,,X,,X,X,Workspace Management,c4ed82f5-783d-4451-9b34-44f50cae71df,X,TRUE +Workspace,Assign environment to workspace,Add new environment to workspace,,,X,,X,X,Workspace Management,f421fc20-c14a-4282-b526-776c6cacfd99,X,TRUE +Workspace,Remove environment from workspace,Remove environment from workspace,,,X,,X,X,Workspace Management,d0657715-80fb-4b00-af27-b78bb0fa56df,X,TRUE +Workspace,Assign Designs to Workspaces,Assign designs to workspaces,,,X,,X,X,Workspace Management,64a1bad5-30f1-431a-aea0-8073d14a0262,X,TRUE +Workspace,Remove Designs from Workspaces,Remove designs from workspaces,,,X,,X,X,Workspace Management,076515f1-f696-4211-ae27-58d5463a229e,X,TRUE +Settings,Reset Database,Reset Meshery database,,,,,X,X,Settings Management,84fc402c-f33e-4a21-a0e3-e14f9e20b125,X,TRUE \ No newline at end of file