Skip to content
Snippets Groups Projects
Select Git revision
  • 9074bd297b94087168ef961dc938a85e4929154f
  • master default protected
  • v2.28.0
  • v2.27.0
  • v2.25.1
  • v2.24.3
  • v2.26.0
  • v2.24.2
  • v2.25.0
  • v2.24.1
  • v2.22.2
  • v2.23.3
  • v2.24.0
  • v2.23.2
  • v2.23.1
  • v2.23.0
  • v2.22.1
  • v2.22.0
  • v2.21.0
  • v2.20.0
  • v2.19.1
  • v2.18.2
22 results

weave.md

Blame
    • Cristian Calin's avatar
      360aff4a
      Rename ansible groups to use _ instead of - (#7552) · 360aff4a
      Cristian Calin authored
      * rename ansible groups to use _ instead of -
      
      k8s-cluster -> k8s_cluster
      k8s-node -> k8s_node
      calico-rr -> calico_rr
      no-floating -> no_floating
      
      Note: kube-node,k8s-cluster groups in upgrade CI
            need clean-up after v2.16 is tagged
      
      * ensure old groups are mapped to the new ones
      Rename ansible groups to use _ instead of - (#7552)
      Cristian Calin authored
      * rename ansible groups to use _ instead of -
      
      k8s-cluster -> k8s_cluster
      k8s-node -> k8s_node
      calico-rr -> calico_rr
      no-floating -> no_floating
      
      Note: kube-node,k8s-cluster groups in upgrade CI
            need clean-up after v2.16 is tagged
      
      * ensure old groups are mapped to the new ones
    setup.cfg 1.58 KiB
    [metadata]
    name = ansible-freeipa
    summary = Ansible roles for FreeIPA
    description-file =
        README.md
    home-page = https://github.com/freeipa/ansible-freeipa
    classifier =
        Intended Audience :: Developers
        Intended Audience :: System Administrators
        Operating System :: POSIX :: Linux
    
    [pbr]
    warnerrors = True
    
    [wheel]
    universal = 1
    
    [files]
    data_files =
        /usr/share/ansible/roles/ipaclient = roles/ipaclient/*
        /usr/share/ansible/roles/ipaserver = roles/ipaserver/*
        /usr/share/ansible/roles/ipareplica = roles/ipareplica/*
    
    [flake8]
    extend-ignore = E203, D1, D212, D203, D400, D401
    exclude = .git,__pycache__,.tox,.venv
    per-file-ignores =
        plugins/*:E402
        roles/*:E402
    
    [pydocstyle]
    inherit = false
    ignore = D1,D212,D203
    
    [pylint.MASTER]
    disable =
        c-extension-no-member,
        missing-module-docstring,
        missing-class-docstring,
        missing-function-docstring,
        wrong-import-order,
        ungrouped-imports,
        wrong-import-position,
        protected-access,
        no-name-in-module,
        too-many-arguments,
        too-many-statements,
        too-many-lines,
        raise-missing-from,
        duplicate-code,
        broad-except,
        too-many-branches,
        too-many-locals,
        fixme
    
    [pylint.BASIC]
    good-names = ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode
    
    [pylint.IMPORTS]
    ignored-modules =
        ansible.module_utils.ansible_freeipa_module,
        ipalib, ipalib.config, ipalib.constants, ipalib.krb_utils, ipalib.errors,
        ipapython.ipautil, ipapython.dn, ipapython.version, ipapython.dnsutil,
        ipaplatform.paths
    
    [pylint.REFACTORING]
    max-nested-blocks = 9
    
    [pylint.FORMAT]
    max-line-length = 80