generated from canonical/is-charms-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create the initial version of the Penpot charm (#4)
- Loading branch information
1 parent
c6e6404
commit 5807899
Showing
25 changed files
with
7,095 additions
and
133 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# penpot | ||
CVE-2022-31159 | ||
CVE-2020-36518 | ||
CVE-2021-46877 | ||
CVE-2022-42003 | ||
CVE-2022-42004 | ||
CVE-2022-25647 | ||
CVE-2024-5971 | ||
CVE-2024-6162 | ||
CVE-2023-5685 | ||
CVE-2021-37714 | ||
CVE-2022-1471 | ||
CVE-2024-21634 | ||
# nodejs | ||
CVE-2024-37890 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ignore_files: | ||
- lib/charms/redis_k8s/v0/redis.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,6 @@ | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
type: charm | ||
bases: | ||
- build-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: [amd64] | ||
run-on: | ||
- name: ubuntu | ||
channel: "24.04" | ||
architectures: [amd64] | ||
|
||
name: penpot | ||
title: Penpot | ||
description: | | ||
|
@@ -24,3 +13,77 @@ links: | |
source: https://github.com/canonical/penpot-operator | ||
contact: | ||
- https://launchpad.net/~canonical-is-devops | ||
|
||
config: | ||
options: | ||
smtp-from-address: | ||
description: >- | ||
The default "from" address penpot uses to send emails. | ||
If unspecified, it is automatically derived from the SMTP integration, typically `<user>@<domain>`, | ||
or `no-reply@<domain>` if the SMTP username is not provided in the SMTP integration. | ||
For more detailed information on SMTP integration, visit https://charmhub.io/smtp-integrator/configuration. | ||
type: string | ||
|
||
actions: | ||
create-profile: | ||
description: Create a new penpot user. | ||
params: | ||
email: | ||
type: string | ||
fullname: | ||
type: string | ||
|
||
delete-profile: | ||
description: Delete an existing penpot user. | ||
params: | ||
email: | ||
type: string | ||
|
||
peers: | ||
penpot_peer: | ||
interface: penpot_peer | ||
|
||
requires: | ||
postgresql: | ||
interface: postgresql_client | ||
limit: 1 | ||
redis: | ||
interface: redis | ||
limit: 1 | ||
s3: | ||
interface: s3 | ||
limit: 1 | ||
ingress: | ||
interface: ingress | ||
limit: 1 | ||
smtp: | ||
interface: smtp | ||
limit: 1 | ||
optional: true | ||
|
||
resources: | ||
penpot-image: | ||
type: oci-image | ||
description: OCI image for penpot | ||
|
||
containers: | ||
penpot: | ||
resource: penpot-image | ||
|
||
type: charm | ||
base: [email protected] | ||
build-base: [email protected] | ||
platforms: | ||
amd64: | ||
|
||
parts: | ||
charm: | ||
build-packages: | ||
- cargo | ||
- libffi-dev | ||
- libssl-dev | ||
- pkg-config | ||
- rustc | ||
|
||
assumes: | ||
- juju >= 3.4 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.