Skip to content

Commit 2ecf90f

Browse files
Merge branch 'master' into sangram-rath-member-profile
2 parents 8f938b6 + 75ee6ab commit 2ecf90f

File tree

2,474 files changed

+17853
-10427
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,474 files changed

+17853
-10427
lines changed

.github/workflows/meshmap.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: MeshMap Screenshot Service
2+
'on':
3+
pull_request_target:
4+
types:
5+
- opened
6+
- synchronize
7+
- reopened
8+
workflow_call:
9+
inputs:
10+
fileName:
11+
description: Relative file path from the root directory
12+
required: true
13+
type: string
14+
outputs:
15+
resource_url:
16+
description: The URL of the generated resource.
17+
value: ${{ jobs.MeshMapScreenshot.outputs.resource_url }}
18+
permissions:
19+
actions: read
20+
contents: write
21+
security-events: write
22+
statuses: write
23+
pull-requests: write
24+
id-token: write
25+
jobs:
26+
MeshMapScreenshot:
27+
runs-on: ubuntu-latest
28+
outputs:
29+
resource_url: ${{ steps.test_result.outputs.resource_url }}
30+
steps:
31+
- name: Set PR number
32+
run: |
33+
export pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
34+
echo "PULL_NO=$pull_number" >> $GITHUB_ENV
35+
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v3
37+
with:
38+
path: action
39+
repository: layer5labs/meshmap-snapshot
40+
- id: test_result
41+
uses: ${GITHUB_REF/refs/tags//}
42+
with:
43+
githubToken: ${{ secrets.GITHUB_TOKEN }}
44+
providerToken: ${{ secrets.PROVIDER_TOKEN }}
45+
prNumber: ${{ env.PULL_NO }}
46+
application_type: Kubernetes Manifest
47+
filePath: ${{ inputs.fileName == '' && 'lkjh' || inputs.fileName }}

src/collections/integrations/aad-pod-identity/index.mdx

+25-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,31 @@ description:
88
category: Provisioning
99
subcategory: Security & Compliance
1010
registrant: Artifact Hub
11-
components: []
11+
components: [
12+
{
13+
"name": "azure-assigned-identity",
14+
"colorIcon": "icons/components/azure-assigned-identity/icons/color/azure-assigned-identity-color.svg",
15+
"whiteIcon": "icons/components/azure-assigned-identity/icons/white/azure-assigned-identity-white.svg",
16+
"description": "",
17+
},
18+
{
19+
"name": "azure-identity",
20+
"colorIcon": "icons/components/azure-identity/icons/color/azure-identity-color.svg",
21+
"whiteIcon": "icons/components/azure-identity/icons/white/azure-identity-white.svg",
22+
"description": "",
23+
},
24+
{
25+
"name": "azure-identity-binding",
26+
"colorIcon": "icons/components/azure-identity-binding/icons/color/azure-identity-binding-color.svg",
27+
"whiteIcon": "icons/components/azure-identity-binding/icons/white/azure-identity-binding-white.svg",
28+
"description": "",
29+
},
30+
{
31+
"name": "azure-pod-identity-exception",
32+
"colorIcon": "icons/components/azure-pod-identity-exception/icons/color/azure-pod-identity-exception-color.svg",
33+
"whiteIcon": "icons/components/azure-pod-identity-exception/icons/white/azure-pod-identity-exception-white.svg",
34+
"description": "",
35+
}]
1236
featureList: [
1337
"Use Azure Active Directory pod-managed identities in Azure Kubernetes Service.",
1438
"A maximum of 200 pod-managed identities are allowed for a cluster.",

0 commit comments

Comments
 (0)