-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
106 additions
and
72 deletions.
There are no files selected for viewing
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.x/stable |
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 |
---|---|---|
|
@@ -13,13 +13,17 @@ jobs: | |
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
python-version: "3.10" | ||
- id: charmcraft | ||
run: echo "channel=$(cat .charmcraft-channel)" >> $GITHUB_OUTPUT | ||
- name: Setup operator environment | ||
uses: charmed-kubernetes/actions-operator@main | ||
with: | ||
provider: lxd | ||
juju-channel: 3/stable | ||
charm-channel: 3.x/stable | ||
charmcraft-channel: ${{ steps.charmcraft.outputs.channel }} | ||
bootstrap-options: "[email protected]" | ||
- name: Run test | ||
run: tox -e integration | ||
- name: Setup Debug Artifact Collection | ||
|
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,29 @@ | ||
type: charm | ||
|
||
bases: | ||
- build-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: ["amd64"] | ||
run-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: ["amd64", "arm64", "s390x"] | ||
- name: ubuntu | ||
channel: "24.04" | ||
architectures: ["amd64", "arm64", "s390x"] | ||
parts: | ||
charm: | ||
source: src | ||
plugin: reactive | ||
reactive-charm-build-arguments: | ||
- --layer-index | ||
- https://raw.githubusercontent.com/charmed-kubernetes/layer-index/main/ | ||
- --debug | ||
- --force | ||
build-snaps: | ||
- charm/3.x/stable | ||
build-environment: | ||
- CHARM_INTERFACES_DIR: $CRAFT_PROJECT_DIR/interfaces/ | ||
- CHARM_LAYERS_DIR: $CRAFT_PROJECT_DIR/layers/ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
src/metadata.yaml |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,58 @@ | ||
name: etcd | ||
summary: Deploy a TLS terminated ETCD Cluster | ||
maintainers: | ||
- Tim Van Steenburgh <[email protected]> | ||
- George Kraft <[email protected]> | ||
- Rye Terrell <[email protected]> | ||
- Konstantinos Tsakalozos <[email protected]> | ||
- Charles Butler <[email protected]> | ||
description: | | ||
This charm supports deploying Etcd from the upstream binaries with resources. | ||
It will also TLS wrap your service, and distribute client keys to any service | ||
connecting. Etcd is a highly available key/value store. | ||
docs: https://discourse.charmhub.io/t/charm-etcd-docs-index/5592 | ||
provides: | ||
db: | ||
interface: etcd | ||
proxy: | ||
interface: etcd-proxy | ||
prometheus: | ||
interface: prometheus-manual | ||
grafana: | ||
interface: grafana-dashboard | ||
peers: | ||
cluster: | ||
interface: etcd | ||
resources: | ||
snapshot: | ||
type: file | ||
filename: snapshot.tar.gz | ||
description: Tarball snapshot of an etcd clusters data. | ||
core: | ||
type: file | ||
filename: core.snap | ||
description: | | ||
Snap package of core | ||
[DEPRECATED] in favor of using a Snap Store Proxy. | ||
See https://ubuntu.com/kubernetes/docs/proxies for more details. | ||
etcd: | ||
type: file | ||
filename: etcd.snap | ||
description: | | ||
Snap package of etcd | ||
[DEPRECATED] in favor of using a Snap Store Proxy. | ||
See https://ubuntu.com/kubernetes/docs/proxies for more details. | ||
series: | ||
- noble | ||
- jammy | ||
storage: | ||
data: | ||
type: block | ||
description: Data volume to store the Etcd wal file and data. | ||
multiple: | ||
range: 0-1 | ||
minimum-size: 1G | ||
subordinate: false | ||
tags: | ||
- database | ||
- keystore |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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