Skip to content

Commit

Permalink
Cherry-pick to stable-3: Fix linters in CI (#873) (#877)
Browse files Browse the repository at this point in the history
SUMMARY
It seems that recent updates in linters break CI. Closes #874 ISSUE TYPE
Bugfix Pull Request
COMPONENT NAME
CI
ADDITIONAL INFORMATION
It's cherry-pick #873 to stable-3 as patch bot failed
Reviewed-by: Mike Graves [email protected]
Reviewed-by: Yuriy Novostavskiy

Reviewed-by: Mike Graves <[email protected]>
  • Loading branch information
yurnov authored Feb 6, 2025
1 parent 8feb564 commit e1b341d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .ansible-lint-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.ansible.com/ansible-lint/docs/rules/
# no-changed-when is not requried for examples
plugins/connection/kubectl.py no-changed-when
# false positive result
plugins/connection/kubectl.py var-naming[no-reserved]
# stable-3 branch support ansible-core>=2.14.0
meta/runtime.yml meta-runtime[unsupported-version]
3 changes: 0 additions & 3 deletions .config/ansible-lint-ignore.txt

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ changelogs/.plugin-cache.yaml
tests/output
tests/integration/cloud-config-*
.cache
.ansible

# Helm charts
tests/integration/*-chart-*.tgz
Expand Down
8 changes: 8 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,24 @@ rules:
braces:
max-spaces-inside: 1
level: error

brackets:
max-spaces-inside: 1
level: error
comments:
min-spaces-from-content: 1
comments-indentation: false
document-start: disable
line-length: disable
truthy: disable
indentation:
spaces: 2
indent-sequences: consistent
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true
ignore: |
.cache
.tox
.ansible
tests/output
2 changes: 1 addition & 1 deletion tests/integration/targets/k8s_manifest_url/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- name: Update directory permissions
file:
path: "{{ manifests_dir.path }}"
mode: 0755
mode: '0755'

- name: Create manifests files
copy:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/targets/lookup_kustomize/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
- name: make script as executable
file:
path: "{{ tmp_dir_path }}/install_kustomize.sh"
mode: 0755
mode: '0755'

- name: Install kustomize
command: "{{ tmp_dir_path }}/install_kustomize.sh"
Expand Down

0 comments on commit e1b341d

Please sign in to comment.