summary refs log tree commit diff
path: root/nixos/modules/services/cluster/hadoop/default.nix
Commit message (Collapse)AuthorAge
* hadoop, nixos/hadoop: remove untarDirillustris2023-09-22
|
* nixos/*: md-"convert" empty descriptionspennae2022-08-31
| | | | | for some reason these are not picked up properly by nix-doc-munge, so we'll do this instead.
* nixos/*: convert internal option descriptions to MDpennae2022-08-31
| | | | we'll have to do it eventually, may as well be now.
* nixos/*: automatically convert option descriptionspennae2022-08-31
| | | | | | | | | | | | conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
* Merge pull request #185474 from pennae/option-docs-mdpennae2022-08-12
|\ | | | | nixos/*: more options md conversion
| * nixos/*: automatically convert option docspennae2022-08-06
| |
* | nixos/hadoop: add HBase submoduleillustris2022-08-07
|/
* nixos/hadoop: add module options for commonly used service configsillustris2022-03-11
|
* nixos/hadoop: use CGroups to enforce container limits by defaultillustris2022-03-11
|
* nixos/hadoop: add gateway roleillustris2022-03-11
|
* nixos/hadoop: fix tests for hadoop 2 and 3.2illustris2022-03-11
|
* nixos/hadoop: use FairScheduler by defaultillustris2022-03-11
|
* nixos/hadoop: add HADOOP_CONF_DIR to envillustris2022-03-11
|
* treewide: add defaultText for options with simple interpolation defaultspennae2021-12-09
| | | | | | adds defaultText for all options that use `cfg.*` values in their defaults, but only for interpolations with no extra processing (other than toString where necessary)
* nixos/hadoop: add links for config filesillustris2021-11-04
|
* nixos/hadoop: add HTTPFSillustris2021-11-03
|
* nixos/hadoop: fix yarn, add more service configuration optionsillustris2021-10-25
|
* nixos/doc: clean up defaults and examplesNaïm Favier2021-10-04
|
* nixos/hadoop: add typesScriptkiddi2021-01-29
|
* treewide: fix double quoted strings in meta.descriptionvolth2021-01-24
| | | | Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
* nixos/treewide: Fix incorrectly rendered examplesSilvan Mosberger2020-04-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Many options define their example to be a Nix value without using literalExample. This sometimes gets rendered incorrectly in the manual, causing confusion like in https://github.com/NixOS/nixpkgs/issues/25516 This fixes it by using literalExample for such options. The list of option to fix was determined with this expression: let nixos = import ./nixos { configuration = {}; }; lib = import ./lib; valid = d: { # escapeNixIdentifier from https://github.com/NixOS/nixpkgs/pull/82461 set = lib.all (n: lib.strings.escapeNixIdentifier n == n) (lib.attrNames d) && lib.all (v: valid v) (lib.attrValues d); list = lib.all (v: valid v) d; }.${builtins.typeOf d} or true; optionList = lib.optionAttrSetToDocList nixos.options; in map (opt: { file = lib.elemAt opt.declarations 0; loc = lib.options.showOption opt.loc; }) (lib.filter (opt: if opt ? example then ! valid opt.example else false) optionList) which when evaluated will output all options that use a Nix identifier that would need escaping as an attribute name.
* [bot]: remove unreferenced codevolth2018-07-20
|
* nixos/hadoop: Replace users.extra{Users,Groups}aszlig2018-07-02
| | | | | | | | | | | | | | In fff5923686c21dd147bde62d08e9f1042deadb4f all occurences of users.extraUsers and users.extraGroups have been changed tree-wide to users.users and users.group. In the meantime the hadoop modules were introduced via #41381 (060a98e9f4ad879492e48d63e887b0b6db26299e). Unfortunately those modules still use users.extraUsers, which has been renamed a long time ago (14321ae2431e33f5ed81f1ee43eddd29c7e9d01d, about three years from now), so let's actually rename it accordingly as well. Signed-off-by: aszlig <aszlig@nix.build> Cc: @matthewbauer, @aespinosa
* nixos/hadoop: add hadoop module (hdfs, yarn)Allan Espinosa2018-06-29