Kanvas Snapshot
Walks in application and takes a shot of your infrastructure using Meshery Extension Kanvas
Kanvas Snapshot is a screenshot service provided via Kanvas for your designs. Visualize changes to your code-base with each pull request made. The SnapShot GitHub Action is configurable from within your Cloud account.
How the SnapShot service works
Functional Sequence Diagram
Installing Kanvas Snapshot: Github Pull Request
Connect MeshMap to your GitHub repo and see changes pull request-to-pull request. Get snapshots of your infrastructure directly in your PRs.
- Step 1: Log in to your Meshery Dashboard.
- Step 2: Navigate to Extensions and Enable GitHub Action: Kanvas Snapshot.
- Step 3: You will be directed to Meshery Cloud.
- Step 4: Click on the "Let's Go" button in the onboarding modal.
- Step 5: Now, select the second option, 'GitOps your infrastructure with Kanvas Snapshot'.
- Step 6: Once that's complete, follow the guided instructions.
Configurating the SnapShot Service
The Snapshot service does not need access to your Meshery deployment. It is a standalone service.
When Infrastructure is located in the file-system
name: "Kanvas Snapshot With File-located in Fs"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- master
- "releases/*"
jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- name: Set PR number # To comment the final status on the Pull-request opened in any repository
run: |
export pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
echo "PULL_NO=$pull_number" >> $GITHUB_ENV
- uses: actions/checkout@v3 # the repository where your infrastructure is located
- uses: actions/checkout@v3 #this step would go and would be no longer needed to be written
with:
path: action
repository: layer5labs/kanvas-snapshot
- id: test_result
uses: layer5labs/MeshMap-Snapshot@v0.0.4
with:
githubToken: $ # github's personal access token example: "ghp_...."
providerToken: $ # Meshery Cloud Authentication token, signin to meshery-cloud to get one, example: ey.....
prNumber: $ # auto-filled from the above step
application_type: "Kubernetes Manifest" # your application type, could be any of three: "Kubernetes Manifest", "Docker Compose", "Helm Chart"
filePath: "action/__tests__/manifest-test" # relative file-path from the root directory in the github-runner env, you might require to checkout the repository as described in step 2
When Infrastructure is identified via URL
name: "Kanvas Snapshot With URL-Upload"
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- master
- "releases/*"
jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- name: Set PR number # To comment the final status on the Pull-request opened in any repository
run: |
export pull_number=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH")
echo "PULL_NO=$pull_number" >> $GITHUB_ENV
- uses: actions/checkout@v3 #this step would go and would be no longer needed to be written
with:
path: action
repository: layer5labs/kanvas-snapshot
- id: test_result
uses: layer5labs/MeshMap-Snapshot@v0.0.4
with:
githubToken: $ # github's personal access token example: "ghp_...."
providerToken: $ # Meshery Cloud Authentication token, signin to meshery-cloud to get one, example: ey.....
prNumber: $ # auto-filled from the above step
application_type: "Helm Chart" # your application type, could be any of three: "Kubernetes Manifest", "Docker Compose", "Helm Chart"
application_url: "https://github.com/meshery/meshery.io/raw/master/charts/meshery-v0.6.88.tgz"
FileSystem Approach Notes
The filesystem-approach asks for your relative file-path and automatically merges all the yaml files together to bundle up into one. So you might like to give the root directory where all the yamls are located. It doesnβt move recursevely in internal folders, so only the first level yaml files are checked.
List of Input variables supported:
designId: # id of input #deprecated
description: "The design uuid, example: 3c116d0a-49ea-4294-addc-d9ab34210662"
required: false
default: "{}"
applicationId: #deprecated
description: "The application uuid, example: 3c116d0a-49ea-4294-addc-d9ab34210662"
required: false
githubToken:
description: "Github PAT token"
required: true
providerToken:
description: "Meshery Authentication Provider Token"
required: true
prNumber:
description: "The Pull request on which comment has to be made"
required: false
default: 0
filePath:
description: "The relative filepath of the location where the manifests are stored"
required: false
application_type:
description: "Application upload type, any of the three, Kubernetes Manifest, Docker Compose, Helm Chart"
required: true
application_url:
description: "Application's source url where the manifests or data is stored"
required: false
Customizing Snapshot Workflow Triggers in Kanvas Snapshot
You can configure your workflows to run when specific activity on GitHub happens, at a scheduled time, or when an event outside of GitHub occurs.
About events that trigger workflows
GitHub Actions provides a variety of events that can trigger workflows, allowing you to automate your software development process. Each event corresponds to a specific activity, such as creating a pull request, pushing code to a repository, or releasing a new version.
Supported Events
The Kanvas Snapshot Action supports all of the events listed in the GitHub documentation: For detailed information about each event, including its properties and payloads, refer to the GitHub Actions documentation.
Workflow Syntax for Event Filtering
When defining workflows, you can use the on
keyword to specify which events trigger the workflow. You can further filter the triggering conditions by using the types
, branches
, tags
, and other options. For example:
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
Specific events that are relevant to the Kanvas Snapshot Action are:
- push: This event is triggered when code is pushed to the repository. It is the most common event used to trigger workflows.
-
pull_request: This event is triggered when a pull request is opened or updated. It is often used to trigger workflows that run tests or linters on the pull requestβs code.
- workflow_dispatch: This event is triggered when a workflow is manually triggered. It can be used to trigger workflows on demand, such as for publishing a new release or addressing critical bugs.
For a comprehensive list of events that can be used in GitHub Actions, please refer to the Supported Events section above.
What Happens to Workflow Customizations on Upgrade?
Customizations to the trigger criteria for the Kanvas Snapshot actions are preserved when upgrading to a new version of the action. However, there may be some cases where customizations are lost, such as when the syntax for specifying the trigger criteria changes in a new version of the action.
Here are some examples of cases where customizations may be lost:
-
You currently have a workflow that is triggered on the push event, and the syntax for specifying the push event changes in a new version of the action.
-
You have a workflow that is triggered on a custom event, and the custom event is no longer supported in a new version of the action.
It is always a good practice to test your workflows after upgrading to a new version of the Kanvas Snapshot Action to make sure that your customizations are still working as expected.
Usage:
After testing you can create a v1 tag to reference the stable and latest V1 action
General Upgrade Guide
- id: test_result
uses: layer5labs/MeshMap-Snapshot@v0.0.5 # <-- Update the version to latest from the Kanvas-Snapshot release page
with:
...
Upgrade/Migrate Guide - For Meshery
- Given changes done in
action.yml
in Kanvas Snapshot, updating the workflows is required. - Given changes done other than in
action.yml
in Kanvas Snapshot, the update in the.github/worflows
is not a hard requirement, but doesnt hurt.
Suggested Reading
- Component Shape Guide - Kubernetes architecture deployment and architecture diagramming tool for cloud native applications - Kanvas.
- Edges Style Guide - Visualize and manage complex cloud-native relationships with Kanvas' dynamic edge styling in Kubernetes architecture.
- Importing existing applications - Import your existing applications into Meshery.
- Importing a Design - Import your existing application definitions and infrastructure configuration into Meshery.
- Kanvas - Collaborative cloud native visual designer to design and manage infrastructure and applications.
- Merging Designs - Treat other designs as templates or building blocks and combine your designs with others and power-up your designs.
- Publishing a Design - Publishing a design lets you make your content visible to any anonymous visitor with the link.
- Sharing a Design - Sharing a design lets you make your content visible to any anonymous visitor of meshery.io/catalog and any Meshery Cloud user.
- Working with Tags - Tags can be used to visually group components.