Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: FreeLens compatibility #10

Merged
merged 3 commits into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14
node-version: 16

- name: Install dependencies
run: npm ci

- run: npm run build

- run: npm pack
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ Only PEM formatted single certificated are supported yet.

Pull request for more supported formats like Java Keystore, PKCS#12 are welcome.

## Compatibility

| Version | Extension Version |
|--------------------------------------------------------|-------------------|
| [OpenLens](https://github.com/MuhammedKalkan/OpenLens) | <3 |
| [FreeLens](https://github.com/freelensapp/freelens) | >=4 |

## Installation

### Direct link to Lens
Expand All @@ -25,7 +32,7 @@ Menu > Extensions and search for `lens-certificate-info`.

### Alternatives downloads

#### Github
#### Github
https://github.com/jkroepke/lens-extension-certificate-info/releases/latest/download/lens-certificate-info.tgz

#### NPM
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Main } from "@k8slens/extensions";
import { Main } from "@freelensapp/extensions";


export default class CertificateInfoMainExtension extends Main.LensExtension {}
Loading