Skip to content

Latest commit

 

History

History
311 lines (212 loc) · 19 KB

CHANGELOG.md

File metadata and controls

311 lines (212 loc) · 19 KB

Change Log

Full Changelog

Merged pull requests:

  • Allow to define start_always_users. #108 (olifre)

v2.4.2 (2019-05-21)

Full Changelog

Closed issues:

  • Typo in params.pp #114

Merged pull requests:

v2.4.1 (2019-05-21)

Full Changelog

v2.4.0 (2019-05-21)

Full Changelog

Merged pull requests:

v2.3.1 (2019-05-21)

Full Changelog

Merged pull requests:

  • Move MASTER_NEW_BINARY_RESTART=PEACEFUL to condor_config. #107 (olifre)

v2.3.0 (2019-05-21)

Full Changelog

Merged pull requests:

  • Add support for Debian repos and new versioned repo structure. #106 (olifre)

v2.2.0 (2019-05-21)

Full Changelog

Closed issues:

  • QUEUE_SUPER_USERS not set #97

Merged pull requests:

v2.1.0 (2018-07-17)

Full Changelog

Implemented enhancements:

  • Add general knob turning #57

Merged pull requests:

v2.0.9 (2018-07-17)

Full Changelog

Merged pull requests:

  • CGROUP_MEMORY_LIMIT_POLICY customizable #96 (ccnifo)
  • parameterize healthcheck script path #93 (ccnifo)

v2.0.8 (2018-05-31)

Full Changelog

Closed issues:

  • [Regression] Unable to specify actual expression for SINGULARITY_IMAGE_EXPR since 2.0.7 #91

Merged pull requests:

v2.0.7 (2018-05-31)

Full Changelog

Merged pull requests:

  • Fixing invalid SINGULARITY_IMAGE_EXPR by adding missing double-quotes #90 (kreczko)

v2.0.6 (2018-05-02)

Full Changelog

Merged pull requests:

v2.0.5 (2018-05-02)

Full Changelog

Merged pull requests:

  • Kerberos auth support in security config #88 (ccnifo)

v2.0.4 (2018-02-05)

Full Changelog

Fixed bugs:

  • CGROUPS setup in 20_workernode.config.erb #78

Closed issues:

  • Badly initialized variables #79
  • healhcheck script mode #77
  • Some changes aren't working #73
  • Changes in HTCondor 8.6.1 #58

Merged pull requests:

  • Fixing permissions for worker healthcheck script (issue #77) #87 (kreczko)
  • config::worker Fix puppet lint warning. #86 (olifre)
  • Repair metadata.json syntax. #85 (olifre)
  • Remove MOUNT_UNDER_SCRATCH if no folders are defined #84 (kreczko)
  • Add parameters gpgcheck and gpgkey #83 (wiene)
  • Central manager HA with shared port #82 (wiene)
  • Setting of correct SELinux context for pool directory if we create it. #81 (olifre)

v2.0.3 (2017-11-03)

Full Changelog

Merged pull requests:

  • Fixing CGroup issue and badly initialized variables #80 (kreczko)
  • Add starter environment configuration #76 (olifre)
  • init: Fixup parameter default values. #75 (olifre)
  • Remove bad quotes from MOUNT_UNDER_SCRATCH variable. #74 (olifre)
  • Allow to turn off debug notification. #72 (olifre)
  • Add singularity support. #71 (olifre)
  • security: Change CM authentication to use ALLOW instead of HOSTALLOW. #70 (olifre)

v2.0.2 (2017-07-17)

Full Changelog

Closed issues:

  • Changes in CentOS7 cgroup setup #59

Merged pull requests:

  • updated to version (2.0.2) and added changelog #69 (kreczko)
  • Implement SSL authentication #65 (olifre)
  • htcondor::security Pull CERTIFICATE_MAPFILE out of krb-auth dependency. #64 (olifre)
  • Allow to specify the source for certificate and kerberos map files. #63 (olifre)
  • htcondor::sharedport: Add configuration for condor_shared_port daemon. #62 (olifre)
  • Fix baseurl for yum repositories #61 (wiene)

v2.0.0 (2017-07-14)

Full Changelog

Implemented enhancements:

  • Merging development branch into master #60 (kreczko)

Merged pull requests:

  • Fixing travis tests for Puppet 4.0 #67 (kreczko)

v1.3.1 (2017-05-18)

Full Changelog

Implemented enhancements:

Closed issues:

  • security considerations ? #42
  • wrong permissions if condor user != root #38

Merged pull requests:

v1.3.0 (2016-01-29)

Full Changelog

Implemented enhancements:

  • bumping version to 1.2.0 + tidying up #40 (kreczko)

Closed issues:

  • Publish on Puppet Forge #39
  • Swap repositories for dependency on grid_repos #3

Merged pull requests:

v1.2.0 (2014-11-12)

Full Changelog

Merged pull requests:

  • Added kerberos map file #37 (kreczko)
  • setting default FILESYSTEM_DOMAIN to FQDN (not all WNs have shared FS) #36 (kreczko)
  • Improving auth method setting #35 (kreczko)
  • Condor id fix, better tests and puppet-lint fixes #33 (kreczko)

v1.1.0 (2014-10-16)

Full Changelog

Closed issues:

  • htcondor files ownership #14

Merged pull requests:

v1.0.0 (2014-08-07)

[Full Changelog](https://github.com/hep-puppet/htcondor/compare/New features...v1.0.0)

Closed issues:

  • Generic template for fair shares #8
  • Fix fair shares and groups #4

Merged pull requests:

Version 2.0.0

Version 2.0.0 brought big changes to the module. The biggest change is a structural one. htcondor::params.pp was added to set defaults for all the parameters. In addition, parameters are attempted to be read via hiera first. Full merge support for hashes and arrays is provided. With these changes the htcondor::config.pp was split into six pieces:

  • the main config setting up the rest
  • a common config part
  • the security configuration
  • separate configs for manager, scheduler & worker The full detail of these changes can be seen in PR 53.

New features

  • configure connection broker for private workers (i.e. workers that cannot be reached from the manager or scheduler but can reach the manager).
  • enabled ganglia daemon for schedulers (previously only possible on managers)
  • flag to enable condor reporting, disabed by default
  • added use_anonymous_auth
  • added custom_machine_attributes and custom_machine_attributes which can be used to add classads for STARTD_ATTRS and STARTD_JOB_ATTRS

Bug fixes

  • daemon list would be incorrect for some versions of Ruby. This was due to the use of and and or operators which is incorrect for boolean comparisons.
  • added missing cluster_has_multiple_domains parameter (w.r.t to 2.0.0 beta)
  • removed repository dependency if it is disabled

Other

  • changed config templates to ensure new line at the end of the file and reduced the use of -%>
  • workers are no longer able to write to schedulers by default
  • new formatting for the security config: one line per entry for manager/scheduler/worker
  • removed use_pkg_config parameter.
  • no longer changing /etc/condor/condor_config nor /etc/condor/condor_config.local as recommended by the HTCondor team
  • content previously in /etc/condor/condor_config.local now in /etc/condor/config.d/00_config_local.config

* This Change Log was automatically generated by github_changelog_generator