-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skaffolding for the sdcore-pcf operator (#1)
- Loading branch information
Showing
23 changed files
with
3,185 additions
and
1 deletion.
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,13 @@ | ||
# Description | ||
|
||
Please include a summary of the change. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
# Checklist: | ||
|
||
- [ ] My code follows the [style guidelines](/CONTRIBUTING.md) of this project | ||
- [ ] I have performed a self-review of my own code | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] I have added tests that validate the behaviour of the software | ||
- [ ] I validated that new and existing unit tests pass locally with my changes | ||
- [ ] Any dependent changes have been merged and published in downstream modules | ||
- [ ] I have bumped the version of the library |
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,70 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
schedule: | ||
- cron: '25 13 * * 0' | ||
|
||
jobs: | ||
analyze: | ||
name: CodeQL Analysis | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'python' ] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | ||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
|
||
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# queries: security-extended,security-and-quality | ||
|
||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | ||
|
||
# If the Autobuild fails above, remove it and uncomment the following three lines. | ||
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. | ||
|
||
# - run: | | ||
# echo "Run, Build Application using script" | ||
# ./location_of_script_within_repo/buildscript.sh | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
with: | ||
category: "/language:${{matrix.language}}" |
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,42 @@ | ||
name: Integration test | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
integration-test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup LXD | ||
uses: canonical/setup-lxd@main | ||
with: | ||
channel: 5.12/stable | ||
- name: Setup operator environment | ||
uses: charmed-kubernetes/actions-operator@main | ||
with: | ||
juju-channel: 3.1/stable | ||
provider: microk8s | ||
channel: 1.27-strict/stable | ||
- name: Run integration tests | ||
run: tox -e integration | ||
- name: Archive Tested Charm | ||
uses: actions/upload-artifact@v3 | ||
if: ${{ github.ref_name == 'main' }} | ||
with: | ||
name: tested-charm | ||
path: .tox/**/sdcore-pcf_ubuntu-22.04-amd64.charm | ||
retention-days: 5 | ||
- name: Archive charmcraft logs | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: charmcraft-logs | ||
path: /home/runner/.local/state/charmcraft/log/*.log | ||
- name: Archive juju crashdump | ||
if: failure() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: juju-crashdump | ||
path: juju-crashdump-*.tar.xz |
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,14 @@ | ||
name: Lint report | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
lint-report: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install tox | ||
run: pip install tox | ||
- name: Run tests using tox | ||
run: tox -e lint |
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,34 @@ | ||
name: Main branch CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint-report: | ||
uses: ./.github/workflows/lint-report.yaml | ||
|
||
static-analysis: | ||
uses: ./.github/workflows/static-analysis.yaml | ||
|
||
unit-tests-with-coverage: | ||
uses: ./.github/workflows/unit-test.yaml | ||
|
||
integration-test: | ||
uses: ./.github/workflows/integration-test.yaml | ||
|
||
publish-charm: | ||
name: Publish Charm | ||
needs: | ||
- lint-report | ||
- static-analysis | ||
- unit-tests-with-coverage | ||
- integration-test | ||
if: ${{ github.ref_name == 'main' }} | ||
uses: ./.github/workflows/publish-charm.yaml | ||
secrets: | ||
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }} |
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,43 @@ | ||
name: Promote Charm | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
promotion: | ||
type: choice | ||
description: Channel to promote from | ||
options: | ||
- edge -> beta | ||
- beta -> candidate | ||
- candidate -> stable | ||
|
||
jobs: | ||
promote: | ||
name: Promote Charm | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Set target channel | ||
env: | ||
PROMOTE_FROM: ${{ github.event.inputs.promotion }} | ||
run: | | ||
if [ "${PROMOTE_FROM}" == "edge -> beta" ]; then | ||
echo "promote-from=edge" >> ${GITHUB_ENV} | ||
echo "promote-to=beta" >> ${GITHUB_ENV} | ||
elif [ "${PROMOTE_FROM}" == "beta -> candidate" ]; then | ||
echo "promote-from=beta" >> ${GITHUB_ENV} | ||
echo "promote-to=candidate" >> ${GITHUB_ENV} | ||
elif [ "${PROMOTE_FROM}" == "candidate -> stable" ]; then | ||
echo "promote-from=candidate" >> ${GITHUB_ENV} | ||
echo "promote-to=stable" >> ${GITHUB_ENV} | ||
fi | ||
- name: Promote Charm | ||
uses: canonical/charming-actions/release-charm@2.2.5 | ||
with: | ||
base-channel: 22.04 | ||
credentials: ${{ secrets.CHARMCRAFT_AUTH }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
destination-channel: latest/${{ env.promote-to }} | ||
origin-channel: latest/${{ env.promote-from }} | ||
charmcraft-channel: latest/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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: publish-charm | ||
|
||
on: | ||
workflow_call: | ||
secrets: | ||
CHARMCRAFT_AUTH: | ||
required: true | ||
|
||
jobs: | ||
publish-charm: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install charmcraft | ||
run: sudo snap install charmcraft --classic | ||
- name: Fetch Tested Charm | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: tested-charm | ||
- name: Move charm in current directory | ||
run: find ./ -name sdcore-pcf_ubuntu-22.04-amd64.charm -exec mv -t ./ {} \; | ||
- name: Select Charmhub channel | ||
uses: canonical/charming-actions/channel@2.2.5 | ||
id: channel | ||
- name: Upload charm to Charmhub | ||
env: | ||
CHARMCRAFT_AUTH: "${{ secrets.CHARMCRAFT_AUTH }}" | ||
run: charmcraft upload ./sdcore-pcf-operator_ubuntu-22.04-amd64.charm --release ${{ steps.channel.outputs.name }} |
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,14 @@ | ||
name: Static analysis | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
static-analysis: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install tox | ||
run: pip install tox | ||
- name: Run tests using tox | ||
run: tox -e static |
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,14 @@ | ||
name: Unit tests | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
unit-tests: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install tox | ||
run: pip install tox | ||
- name: Run tests using tox | ||
run: tox -e unit |
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 @@ | ||
* @canonical/telco |
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,41 @@ | ||
# Contributing | ||
|
||
To make contributions to this charm, you'll need a working [Juju development setup](https://juju.is/docs/sdk/dev-setup). | ||
|
||
You can use the environments created by `tox` for development: | ||
|
||
```shell | ||
tox --notest -e unit | ||
source .tox/unit/bin/activate | ||
``` | ||
|
||
## Testing | ||
|
||
This project uses `tox` for managing test environments. There are some pre-configured environments | ||
that can be used for linting and formatting code when you're preparing contributions to the charm: | ||
|
||
```shell | ||
tox -e lint # code style | ||
tox -e static # static analysis | ||
tox -e unit # unit tests | ||
tox -e integration # integration tests | ||
``` | ||
|
||
## Build | ||
Building charms is done using charmcraft (official documentation [here](https://juju.is/docs/sdk/publishing)). You can install charmcraft using `snap`: | ||
|
||
```bash | ||
sudo snap install charmcraft --channel=classic | ||
``` | ||
|
||
Initialize LXD: | ||
|
||
```bash | ||
lxd init --auto | ||
``` | ||
|
||
Go to the charm directory and run: | ||
|
||
```bash | ||
charmcraft pack | ||
``` |
Oops, something went wrong.