chore(kb): add sources

This commit is contained in:
Michele Cereda
2025-09-24 00:24:42 +02:00
parent 54d42d1192
commit 36a3c3033d
4 changed files with 37 additions and 5 deletions

View File

@@ -430,6 +430,8 @@ Solution: remove all ZFS snapshots in the pool that should be used for the refre
- [PostgreSQL] - [PostgreSQL]
- [Documentation] - [Documentation]
- [`dblab`][dblab] - [`dblab`][dblab]
- [Extended Docker Images with PostgreSQL for Database Lab]
- [SE Docker Images with PostgreSQL]
### Sources ### Sources
@@ -461,7 +463,9 @@ Solution: remove all ZFS snapshots in the pool that should be used for the refre
[Codebase]: https://gitlab.com/postgres-ai/database-lab [Codebase]: https://gitlab.com/postgres-ai/database-lab
[DBLab Engine configuration reference]: https://postgres.ai/docs/reference-guides/database-lab-engine-configuration-reference [DBLab Engine configuration reference]: https://postgres.ai/docs/reference-guides/database-lab-engine-configuration-reference
[Documentation]: https://postgres.ai/docs/ [Documentation]: https://postgres.ai/docs/
[Extended Docker Images with PostgreSQL for Database Lab]: https://gitlab.com/postgres-ai/custom-images
[How to install DBLab manually]: https://postgres.ai/docs/how-to-guides/administration/install-dle-manually [How to install DBLab manually]: https://postgres.ai/docs/how-to-guides/administration/install-dle-manually
[SE Docker Images with PostgreSQL]: https://gitlab.com/postgres-ai/se-images
[Website]: https://postgres.ai/ [Website]: https://postgres.ai/
<!-- Others --> <!-- Others -->

View File

@@ -78,6 +78,7 @@ glab mr list --repo 'someGroup/someNamespace/someRepo'
## Further readings ## Further readings
- [Codebase] - [Codebase]
- [Documentation]
<!-- <!--
Reference Reference
@@ -88,6 +89,7 @@ glab mr list --repo 'someGroup/someNamespace/someRepo'
<!-- Knowledge base --> <!-- Knowledge base -->
<!-- Files --> <!-- Files -->
<!-- Upstream --> <!-- Upstream -->
[codebase]: https://gitlab.com/gitlab-org/cli [Codebase]: https://gitlab.com/gitlab-org/cli
[Documentation]: https://gitlab.com/gitlab-org/cli/-/blob/main/docs/source/index.md
<!-- Others --> <!-- Others -->

View File

@@ -285,7 +285,7 @@ Solution: give that user _developer_ access or have somebody else with enough pr
[customize pipeline configuration]: https://docs.gitlab.com/ee/ci/pipelines/settings.html [customize pipeline configuration]: https://docs.gitlab.com/ee/ci/pipelines/settings.html
[debugging ci/cd pipelines]: https://docs.gitlab.com/ee/ci/debugging.html [debugging ci/cd pipelines]: https://docs.gitlab.com/ee/ci/debugging.html
[pipeline schedules api]: https://docs.gitlab.com/ee/api/pipeline_schedules.html [pipeline schedules api]: https://docs.gitlab.com/ee/api/pipeline_schedules.html
[predefined ci/cd variables reference]: https://docs.gitlab.com/ee/ci/variables/predefined_variables.html [Predefined CI/CD variables reference]: https://docs.gitlab.com/ci/variables/predefined_variables/
[push options]: https://docs.gitlab.com/ee/user/project/push_options.html [push options]: https://docs.gitlab.com/ee/user/project/push_options.html
[specify when jobs run with rules]: https://docs.gitlab.com/ee/ci/jobs/job_rules.html [specify when jobs run with rules]: https://docs.gitlab.com/ee/ci/jobs/job_rules.html
[use ci/cd configuration from other files]: https://docs.gitlab.com/ee/ci/yaml/includes.html [use ci/cd configuration from other files]: https://docs.gitlab.com/ee/ci/yaml/includes.html

View File

@@ -2,7 +2,8 @@
1. [TL;DR](#tldr) 1. [TL;DR](#tldr)
1. [File formats](#file-formats) 1. [File formats](#file-formats)
1. [Browsers integration](#browsers-integration) 1. [Plugins of interest](#plugins-of-interest)
1. [Browser integration](#browser-integration)
1. [Browserpass](#browserpass) 1. [Browserpass](#browserpass)
1. [Troubleshooting](#troubleshooting) 1. [Troubleshooting](#troubleshooting)
1. [Further readings](#further-readings) 1. [Further readings](#further-readings)
@@ -193,10 +194,22 @@ rm -r "${HOME}/.local/share/gopass/stores/root"
See [secrets], but mostly [features]. See [secrets], but mostly [features].
## Browsers integration ## Plugins of interest
| Plugin | Summary |
| ----------------------- | ----------------------------------------- |
| [browserpass] | Browser integration |
| [gopassbridge] | Browser plugin wrapping `gopass-jsonapi` |
| [gopass-jsonapi] | Communicate with gopass via JSON messages |
| [git-credential-gopass] | Cache git credentials |
| [gopass-hibp] | [haveibeenpwnd.com] integration |
## Browser integration
### Browserpass ### Browserpass
Refer [browserpass extension installation guide].
```sh ```sh
brew tap amar1729/formulae brew tap amar1729/formulae
brew install browserpass brew install browserpass
@@ -214,6 +227,10 @@ See the [FAQ] page.
- GoPass' [website] - GoPass' [website]
- GoPass' [documentation] - GoPass' [documentation]
- [woile's cheatsheet] - [woile's cheatsheet]
- [gopass-jsonapi]
- [gopass-hibp]
- [gopassbridge]
- [git-credential-gopass]
### Sources ### Sources
@@ -221,9 +238,13 @@ See the [FAQ] page.
- [Configuration][config] - [Configuration][config]
<!-- <!--
References Reference
═╬═Time══
--> -->
<!-- In-article sections -->
[browserpass]: #browserpass
<!-- Upstream --> <!-- Upstream -->
[config]: https://github.com/gopasspw/gopass/blob/master/docs/config.md [config]: https://github.com/gopasspw/gopass/blob/master/docs/config.md
[documentation]: https://github.com/gopasspw/gopass/tree/master/docs [documentation]: https://github.com/gopasspw/gopass/tree/master/docs
@@ -234,4 +255,9 @@ See the [FAQ] page.
<!-- Others --> <!-- Others -->
[browserpass extension installation guide]: https://github.com/browserpass/browserpass-extension# [browserpass extension installation guide]: https://github.com/browserpass/browserpass-extension#
[git-credential-gopass]: https://github.com/gopasspw/git-credential-gopass
[gopass-hibp]: https://github.com/gopasspw/gopass-hibp
[gopass-jsonapi]: https://github.com/gopasspw/gopass-jsonapi
[gopassbridge]: https://github.com/gopasspw/gopassbridge
[haveibeenpwnd.com]: https://haveibeenpwned.com/
[woile's cheatsheet]: https://woile.github.io/gopass-cheat-sheet/ [woile's cheatsheet]: https://woile.github.io/gopass-cheat-sheet/