Skip to content

Commit

Permalink
Merge pull request #80 from charmed-kubernetes/feature/relation/tls-c…
Browse files Browse the repository at this point in the history
…ertificates

integrate with the tls certificates relation
  • Loading branch information
addyess authored Aug 1, 2023
2 parents 2d1284a + 99f7b43 commit a43e363
Show file tree
Hide file tree
Showing 15 changed files with 2,496 additions and 131 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ venv/
*.orig
.coverage
**/__pycache__/
.tox
.tox
juju-crashdump*
3 changes: 2 additions & 1 deletion .jujuignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/venv
*.py[cod]
*.charm
*.charm
juju-crashdump*
50 changes: 44 additions & 6 deletions charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,57 @@
type: charm
bases:
- build-on:
- name: ubuntu
channel: "20.04"
- name: "ubuntu"
channel: "22.04"
architectures: ["amd64"]
run-on:
- name: ubuntu
channel: "20.04"
- name: "ubuntu"
channel: "22.04"
architectures:
- amd64
- arm64
- build-on:
- name: "ubuntu"
channel: "22.04"
architectures: ["armhf"]
run-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- armhf
- ppc64
- build-on:
- name: "ubuntu"
channel: "22.04"
architectures: ["arm64"]
run-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- arm64
- build-on:
- name: "ubuntu"
channel: "22.04"
architectures: ["ppc64el"]
run-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- ppc64el
- build-on:
- name: "ubuntu"
channel: "22.04"
architectures: ["s390x"]
run-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- s390x
parts:
charm:
charm-python-packages: [setuptools, pip]
build-packages:
- git
- libffi-dev
- libssl-dev
- pkg-config
- rustc
- cargo
Loading

0 comments on commit a43e363

Please sign in to comment.