Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/linters/.yamllint.yml
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
# list of files that changed across commits
fetch-depth: 0
submodules: true
persist-credentials: false

- name: Run ansible-lint
uses: ansible/ansible-lint@e98f9b38769d45cbe3c55a23b2eb25631babe7c4 # v25.4.0
Expand All @@ -41,7 +42,7 @@ jobs:
if: always()

- name: Run super-linter
uses: super-linter/super-linter@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2 # v7.3.0
uses: super-linter/super-linter/slim@9e863354e3ff62e0727d37183162c4a88873df41 # v8.6.0
if: always()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42 changes: 21 additions & 21 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
---
name: Build and test PR
name: Build and test PR

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
types:
- opened
- synchronize
- ready_for_review
- reopened
branches:
- main
'on':
pull_request:
types:
- opened
- synchronize
- ready_for_review
- reopened
branches:
- main

jobs:
lint:
uses: ./.github/workflows/lint.yml
jobs:
lint:
uses: ./.github/workflows/lint.yml
2 changes: 1 addition & 1 deletion roles/cluster_infra/templates/resources.tf.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#####
##### The identity scope we are operating in
##### Used to add tge OpenStack user name to instance metadata
##### Used to add the OpenStack user name to instance metadata
#####
data "openstack_identity_auth_scope_v3" "scope" {
name = "{{ cluster_name }}"
Expand Down
23 changes: 20 additions & 3 deletions super-linter.env
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
# Exclude vendor submodules
FILTER_REGEX_EXCLUDE=.*vendor/.*

# Detect that default branch is main when running locally
DEFAULT_BRANCH=main

# Don't validate JSCPD
VALIDATE_JSCPD=false

# Don't validate JS standard because it conflicts with JS prettier
VALIDATE_JAVASCRIPT_STANDARD=false

# Don't validate Ansible because ansible-lint is more flexible
VALIDATE_ANSIBLE=false

# Don't validate YAML prettier because yamllint is sufficient
VALIDATE_YAML_PRETTIER=false

# Set to the default filename for yamllint
YAML_CONFIG_FILE=.yamllint.yml

VALIDATE_BIOME_FORMAT=false

VALIDATE_BIOME_LINT=false

VALIDATE_TRIVY=false

# Only use ruff for python linting and formatting
VALIDATE_PYTHON=false
VALIDATE_PYTHON_BLACK=false
VALIDATE_PYTHON_FLAKE8=false
VALIDATE_PYTHON_ISORT=false
VALIDATE_PYTHON_MYPY=false
VALIDATE_PYTHON_PYLINT=false
3 changes: 2 additions & 1 deletion ui-meta/workstation-external-ssh-fast-volume-type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ usage_template: |-

Monitoring dashboards for the workstation are available using the [Monitoring service]({{ monitoring.url }}).

Documentation on Workstation features such as EESSI and Podman can be found [here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).
Documentation on Workstation features such as EESSI and Podman can be found
[here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).


services:
Expand Down
3 changes: 2 additions & 1 deletion ui-meta/workstation-external-ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ usage_template: |-

Monitoring dashboards for the workstation are available using the [Monitoring service]({{ monitoring.url }}).

Documentation on Workstation features such as EESSI and Podman can be found [here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).
Documentation on Workstation features such as EESSI and Podman can be found
[here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).


services:
Expand Down
3 changes: 2 additions & 1 deletion ui-meta/workstation-fast-volume-type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ usage_template: |-

Monitoring dashboards for the workstation are available using the [Monitoring service]({{ monitoring.url }}).

Documentation on Workstation features such as EESSI and Podman can be found [here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).
Documentation on Workstation features such as EESSI and Podman can be found
[here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).


services:
Expand Down
3 changes: 2 additions & 1 deletion ui-meta/workstation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ usage_template: |-

Monitoring dashboards for the workstation are available using the [Monitoring service]({{ monitoring.url }}).

Documentation on Workstation features such as EESSI and Podman can be found [here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).
Documentation on Workstation features such as EESSI and Podman can be found
[here](https://azimuth-cloud.github.io/azimuth-user-docs/platforms/linux-workstation/).


services:
Expand Down
Loading