Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixops
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b7cac119a04e
Choose a base ref
...
head repository: NixOS/nixops
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 284924c223fa
Choose a head ref
  • 13 commits
  • 245 files changed
  • 5 contributors

Commits on Jul 8, 2019

  1. Initial nixops plugin architecture restructuring

    This commit makes modifications to move backend
    code to pluggy plugins which will exist in other
    repos.  The exception to this is the None backend
    type which remains present.  Modifications in
    this initial restructuring include:
    
    - Deletion of files to be moved to other repos
    
    - Addition of files related to pluggy hooks
      - Ex: nixops/plugins/* files
    
    - Modification of files to utilize pluggy hooks
      and pluggy resources
      - Ex: eval-machine-info.nix
    
    - release.nix changes to enable using nixops
      with plugins using CLI patterns of:
    
    nix-build release.nix -A build.x86_64-linux --arg p "(p: [ p.plugin1 ])"
    
    ./dev-shell --arg p "(p: [ p.plugin1 p.plugin2 ])"
    
    ./dev-shell --arg p "(p: [ (p.callPackage ../myplugin/release.nix {}) ])"
    
    - Modification of scripts/nixops to include a
      new command:
    
    nixops list-plugins [-v]
    johnalotoski committed Jul 8, 2019
    Copy the full SHA
    0072173 View commit details
  2. Add parser pluggy hook for CLI extensibility

    To enable plugin CLI extensibility, this commit extracts
    the function definitions out of scripts/nixops and places
    them in nixops/script_defs.py.  Explicit argument passing
    is now done where global variables were initially utilized
    in the script.  This way, script functions are now
    available to plugins for extensibility purposes.
    johnalotoski committed Jul 8, 2019
    Copy the full SHA
    ce2649d View commit details

Commits on Jul 22, 2019

  1. Initial nixops plugin architecture restructuring

    This commit makes modifications to move backend
    code to pluggy plugins which will exist in other
    repos.  The exception to this is the None backend
    type which remains present.  Modifications in
    this initial restructuring include:
    
    - Deletion of files to be moved to other repos
    
    - Addition of files related to pluggy hooks
      - Ex: nixops/plugins/* files
    
    - Modification of files to utilize pluggy hooks
      and pluggy resources
      - Ex: eval-machine-info.nix
    
    - release.nix changes to enable using nixops
      with plugins using CLI patterns of:
    
    nix-build release.nix -A build.x86_64-linux --arg p "(p: [ p.plugin1 ])"
    
    ./dev-shell --arg p "(p: [ p.plugin1 p.plugin2 ])"
    
    ./dev-shell --arg p "(p: [ (p.callPackage ../myplugin/release.nix {}) ])"
    
    - Modification of scripts/nixops to include a
      new command:
    
    nixops list-plugins [-v]
    johnalotoski authored and AmineChikhaoui committed Jul 22, 2019
    Copy the full SHA
    acb2ab1 View commit details
  2. Add parser pluggy hook for CLI extensibility

    To enable plugin CLI extensibility, this commit extracts
    the function definitions out of scripts/nixops and places
    them in nixops/script_defs.py.  Explicit argument passing
    is now done where global variables were initially utilized
    in the script.  This way, script functions are now
    available to plugins for extensibility purposes.
    johnalotoski authored and AmineChikhaoui committed Jul 22, 2019
    Copy the full SHA
    9d37421 View commit details
  3. add pkgs to config exporters scope

    also make the exported nix expressions from the plugins part of the
    search path which useful for backends such as VirtualBox.
    AmineChikhaoui committed Jul 22, 2019
    Copy the full SHA
    b5b8052 View commit details

Commits on Jul 23, 2019

  1. Copy the full SHA
    051f431 View commit details

Commits on Jul 29, 2019

  1. Merge pull request #1 from AmineChikhaoui/amine-nixops-core-pr

    nixops-core-pr update
    johnalotoski authored Jul 29, 2019
    Copy the full SHA
    7f1bc97 View commit details

Commits on Aug 15, 2019

  1. 1
    Copy the full SHA
    b33d5c0 View commit details
  2. Copy the full SHA
    8d70c69 View commit details

Commits on Sep 3, 2019

  1. Removes virtualbox doc section from overview.xml

    * To be migrated to the virtualbox plugin
    johnalotoski committed Sep 3, 2019
    Copy the full SHA
    40eb96a View commit details

Commits on Sep 4, 2019

  1. Copy the full SHA
    baa765b View commit details
  2. Copy the full SHA
    66b0a7c View commit details
  3. Merge pull request #1179 from input-output-hk/nixops-core-pr

    Nixops Core, Plugin Restructuring PR
    AmineChikhaoui authored Sep 4, 2019
    Copy the full SHA
    284924c View commit details
Showing with 1,184 additions and 33,153 deletions.
  1. +20 −8 README.md
  2. +16 −0 all-plugins.txt
  3. +17 −0 data.nix
  4. +15 −11 doc/manual/default.nix
  5. +0 −577 doc/manual/manual.xml
  6. +0 −1,752 doc/manual/overview.xml
  7. +2 −2 doc/manual/resource.nix
  8. +0 −43 examples/apache-azure.nix
  9. +0 −32 examples/apache-ec2-multizone.nix
  10. +0 −15 examples/apache-ec2.nix
  11. +0 −13 examples/apache-vbox.nix
  12. +0 −52 examples/apache.nix
  13. +0 −23 examples/cloudwatch-logs.nix
  14. +0 −36 examples/cloudwatch-metric-alarm.nix
  15. +0 −20 examples/datadog-monitor.nix
  16. +0 −46 examples/datadog-screenboard.nix
  17. +0 −42 examples/datadog-timeboard.nix
  18. +0 −58 examples/drbd.nix
  19. +0 −9 examples/ec2-info-example.nix
  20. +0 −35 examples/ec2-rds-dbinstance.nix
  21. +0 −46 examples/elastic-file-system.nix
  22. +0 −25 examples/encryption-test.nix
  23. +0 −52 examples/gce-route.nix
  24. +0 −81 examples/geodistributed-azure.nix
  25. +0 −15 examples/mediawiki-ec2.nix
  26. +0 −12 examples/mediawiki-single-vbox.nix
  27. +0 −38 examples/mediawiki-single.nix
  28. +0 −94 examples/mediawiki.nix
  29. +0 −52 examples/nix-homepage.nix
  30. +0 −194 examples/rmq-gce.nix
  31. +0 −104 examples/route53.nix
  32. +0 −47 examples/s3-bucket.nix
  33. +0 −21 examples/sns-topic.nix
  34. +0 −8 examples/terminal-server-ec2.nix
  35. +0 −16 examples/terminal-server.nix
  36. +0 −26 examples/trivial-azure-disks.nix
  37. +0 −16 examples/trivial-azure.nix
  38. +0 −10 examples/trivial-container-in-vbox.nix
  39. +0 −5 examples/trivial-container.nix
  40. +0 −13 examples/trivial-digital-ocean.nix
  41. +0 −55 examples/trivial-ec2-ebs.nix
  42. +0 −8 examples/trivial-ec2.nix
  43. +0 −26 examples/trivial-gce.nix
  44. +0 −14 examples/trivial-vbox.nix
  45. +0 −6 examples/trivial-virtd.nix
  46. +0 −7 examples/trivial.nix
  47. +0 −15 examples/vault-approle.nix
  48. +0 −126 examples/vpc.nix
  49. +0 −17 examples/webdslorg-lb-ec2.nix
  50. +0 −62 examples/webdslorg-lb.nix
  51. +0 −31 nix/aws-vpn-connection-route.nix
  52. +0 −45 nix/aws-vpn-connection.nix
  53. +0 −35 nix/aws-vpn-gateway.nix
  54. +0 −64 nix/azure-availability-set.nix
  55. +0 −56 nix/azure-blob-container.nix
  56. +0 −122 nix/azure-blob.nix
  57. +0 −77 nix/azure-directory.nix
  58. +0 −60 nix/azure-dns-record-set.nix
  59. +0 −39 nix/azure-dns-zone.nix
  60. +0 −108 nix/azure-express-route-circuit.nix
  61. +0 −128 nix/azure-file.nix
  62. +0 −94 nix/azure-gateway-connection.nix
  63. +0 −366 nix/azure-load-balancer.nix
  64. +0 −57 nix/azure-local-network-gateway.nix
  65. +0 −57 nix/azure-mgmt-credentials.nix
  66. +0 −154 nix/azure-network-security-group.nix
  67. +0 −44 nix/azure-queue.nix
  68. +0 −76 nix/azure-reserved-ip-address.nix
  69. +0 −33 nix/azure-resource-group.nix
  70. +0 −42 nix/azure-share.nix
  71. +0 −52 nix/azure-signed-identifiers.nix
  72. +0 −151 nix/azure-storage.nix
  73. +0 −38 nix/azure-table.nix
  74. +0 −176 nix/azure-traffic-manager-profile.nix
  75. +0 −82 nix/azure-virtual-network-gateway.nix
  76. +0 −96 nix/azure-virtual-network.nix
  77. +0 −438 nix/azure.nix
  78. +0 −39 nix/cloudwatch-log-group.nix
  79. +0 −38 nix/cloudwatch-log-stream.nix
  80. +0 −200 nix/cloudwatch-metric-alarm.nix
  81. +0 −49 nix/common-ebs-options.nix
  82. +0 −21 nix/common-ec2-auth-options.nix
  83. +0 −18 nix/common-ec2-options.nix
  84. +0 −16 nix/common-gce-options.nix
  85. +0 −12 nix/container-base.nix
  86. +0 −38 nix/container.nix
  87. +0 −79 nix/datadog-monitor.nix
  88. +0 −78 nix/datadog-screenboard.nix
  89. +0 −77 nix/datadog-timeboard.nix
  90. +0 −58 nix/digital-ocean.nix
  91. +0 −59 nix/ebs-volume.nix
  92. +0 −30 nix/ec2-keypair.nix
  93. +0 −35 nix/ec2-placement-group.nix
  94. +0 −185 nix/ec2-properties.nix
  95. +0 −97 nix/ec2-rds-dbinstance.nix
  96. +0 −65 nix/ec2-rds-dbsecurity-group.nix
  97. +0 −116 nix/ec2-security-group.nix
  98. +0 −534 nix/ec2.nix
  99. +0 −49 nix/elastic-file-system-mount-target.nix
  100. +0 −25 nix/elastic-file-system.nix
  101. +0 −39 nix/elastic-ip.nix
  102. +22 −228 nix/eval-machine-info.nix
  103. +0 −35 nix/gce-credentials.nix
  104. +0 −79 nix/gce-disk.nix
  105. +0 −92 nix/gce-forwarding-rule.nix
  106. +0 −80 nix/gce-http-health-check.nix
  107. +0 −34 nix/gce-image.nix
  108. +0 −114 nix/gce-network.nix
  109. +0 −77 nix/gce-routes.nix
  110. +0 −52 nix/gce-static-ip.nix
  111. +0 −60 nix/gce-target-pool.nix
  112. +0 −449 nix/gce.nix
  113. +0 −30 nix/generate-ec2-properties.py
  114. +0 −229 nix/gse-bucket.nix
  115. +0 −150 nix/hetzner-bootstrap.nix
  116. +0 −116 nix/hetzner.nix
  117. +0 −33 nix/iam-role.nix
  118. +0 −89 nix/libvirtd-image.nix
  119. +0 −161 nix/libvirtd.nix
  120. +1 −9 nix/options.nix
  121. +0 −189 nix/route53-health-check.nix
  122. +0 −83 nix/route53-hosted-zone.nix
  123. +0 −126 nix/route53-recordset.nix
  124. +0 −84 nix/route53.nix
  125. +0 −79 nix/s3-bucket.nix
  126. +0 −67 nix/sns-topic.nix
  127. +0 −49 nix/sqs-queue.nix
  128. 0 nix/templates/.keep
  129. +0 −8 nix/templates/container.nix
  130. +0 −8 nix/templates/virtualbox.nix
  131. +0 −163 nix/vault-approle.nix
  132. +0 −43 nix/virtualbox-image-nixops.nix
  133. +0 −187 nix/virtualbox.nix
  134. +0 −40 nix/vpc-customer-gateway.nix
  135. +0 −68 nix/vpc-dhcp-options.nix
  136. +0 −27 nix/vpc-egress-only-internet-gateway.nix
  137. +0 −50 nix/vpc-endpoint.nix
  138. +0 −27 nix/vpc-internet-gateway.nix
  139. +0 −35 nix/vpc-nat-gateway.nix
  140. +0 −121 nix/vpc-network-acl.nix
  141. +0 −52 nix/vpc-network-interface-attachment.nix
  142. +0 −84 nix/vpc-network-interface.nix
  143. +0 −33 nix/vpc-route-table-association.nix
  144. +0 −36 nix/vpc-route-table.nix
  145. +0 −97 nix/vpc-route.nix
  146. +0 −66 nix/vpc-subnet.nix
  147. +0 −77 nix/vpc.nix
  148. +0 −554 nixops/azure_common.py
  149. +0 −1,342 nixops/backends/azure_vm.py
  150. +0 −209 nixops/backends/container.py
  151. +0 −206 nixops/backends/digital_ocean.py
  152. +0 −1,584 nixops/backends/ec2.py
  153. +0 −944 nixops/backends/gce.py
  154. +0 −760 nixops/backends/hetzner.py
  155. +0 −381 nixops/backends/libvirtd.py
  156. +0 −472 nixops/backends/virtualbox.py
  157. +0 −90 nixops/datadog_utils.py
  158. +19 −17 nixops/deployment.py
  159. +0 −196 nixops/ec2_utils.py
  160. +0 −201 nixops/gce_common.py
  161. +1 −1 nixops/parallel.py
  162. +11 −0 nixops/plugins/__init__.py
  163. +23 −0 nixops/plugins/hookspecs.py
  164. +9 −0 nixops/resource_plugin.py
  165. +4 −1 nixops/resources/__init__.py
  166. +0 −126 nixops/resources/aws_vpn_connection.py
  167. +0 −108 nixops/resources/aws_vpn_connection_route.py
  168. +0 −134 nixops/resources/aws_vpn_gateway.py
  169. +0 −140 nixops/resources/azure_availability_set.py
  170. +0 −282 nixops/resources/azure_blob.py
  171. +0 −146 nixops/resources/azure_blob_container.py
  172. +0 −173 nixops/resources/azure_directory.py
  173. +0 −155 nixops/resources/azure_dns_record_set.py
  174. +0 −147 nixops/resources/azure_dns_zone.py
  175. +0 −244 nixops/resources/azure_express_route_circuit.py
  176. +0 −241 nixops/resources/azure_file.py
  177. +0 −204 nixops/resources/azure_gateway_connection.py
  178. +0 −460 nixops/resources/azure_load_balancer.py
  179. +0 −137 nixops/resources/azure_local_network_gateway.py
  180. +0 −209 nixops/resources/azure_network_security_group.py
  181. +0 −134 nixops/resources/azure_queue.py
  182. +0 −162 nixops/resources/azure_reserved_ip_address.py
  183. +0 −109 nixops/resources/azure_resource_group.py
  184. +0 −121 nixops/resources/azure_share.py
  185. +0 −339 nixops/resources/azure_storage.py
  186. +0 −123 nixops/resources/azure_table.py
  187. +0 −285 nixops/resources/azure_traffic_manager_profile.py
  188. +0 −193 nixops/resources/azure_virtual_network.py
  189. +0 −248 nixops/resources/azure_virtual_network_gateway.py
  190. +0 −126 nixops/resources/cloudwatch_log_group.py
  191. +0 −133 nixops/resources/cloudwatch_log_stream.py
  192. +0 −167 nixops/resources/cloudwatch_metric_alarm.py
  193. +0 −133 nixops/resources/datadog-monitor.py
  194. +0 −131 nixops/resources/datadog-screenboard.py
  195. +0 −140 nixops/resources/datadog-timeboard.py
  196. +0 −180 nixops/resources/ebs_volume.py
  197. +0 −69 nixops/resources/ec2_common.py
  198. +0 −138 nixops/resources/ec2_keypair.py
  199. +0 −127 nixops/resources/ec2_placement_group.py
  200. +0 −337 nixops/resources/ec2_rds_dbinstance.py
  201. +0 −165 nixops/resources/ec2_rds_dbsecurity_group.py
  202. +0 −265 nixops/resources/ec2_security_group.py
  203. +0 −17 nixops/resources/efs_common.py
  204. +0 −157 nixops/resources/elastic_file_system.py
  205. +0 −178 nixops/resources/elastic_file_system_mount_target.py
  206. +0 −141 nixops/resources/elastic_ip.py
  207. +0 −127 nixops/resources/gce_disk.py
  208. +0 −172 nixops/resources/gce_forwarding_rule.py
  209. +0 −152 nixops/resources/gce_http_health_check.py
  210. +0 −111 nixops/resources/gce_image.py
  211. +0 −249 nixops/resources/gce_network.py
  212. +0 −182 nixops/resources/gce_route.py
  213. +0 −120 nixops/resources/gce_static_ip.py
  214. +0 −178 nixops/resources/gce_target_pool.py
  215. +0 −277 nixops/resources/gse_bucket.py
  216. +0 −237 nixops/resources/iam_role.py
  217. +0 −195 nixops/resources/route53_health_check.py
  218. +0 −143 nixops/resources/route53_hosted_zone.py
  219. +0 −264 nixops/resources/route53_recordset.py
  220. +0 −199 nixops/resources/s3_bucket.py
  221. +0 −167 nixops/resources/sns_topic.py
  222. +0 −133 nixops/resources/sqs_queue.py
  223. +0 −179 nixops/resources/vault_approle.py
  224. +0 −244 nixops/resources/vpc.py
  225. +0 −123 nixops/resources/vpc_customer_gateway.py
  226. +0 −160 nixops/resources/vpc_dhcp_options.py
  227. +0 −104 nixops/resources/vpc_egress_only_internet_gateway.py
  228. +0 −145 nixops/resources/vpc_endpoint.py
  229. +0 −121 nixops/resources/vpc_internet_gateway.py
  230. +0 −159 nixops/resources/vpc_nat_gateway.py
  231. +0 −211 nixops/resources/vpc_network_acl.py
  232. +0 −203 nixops/resources/vpc_network_interface.py
  233. +0 −181 nixops/resources/vpc_network_interface_attachment.py
  234. +0 −156 nixops/resources/vpc_route.py
  235. +0 −152 nixops/resources/vpc_route_table.py
  236. +0 −119 nixops/resources/vpc_route_table_association.py
  237. +0 −219 nixops/resources/vpc_subnet.py
  238. +798 −0 nixops/script_defs.py
  239. +0 −43 nixops/vault_common.py
  240. +22 −54 release.nix
  241. +46 −810 scripts/nixops
  242. +10 −1 setup.cfg
  243. +2 −2 setup.py
  244. +5 −0 tests/__init__.py
  245. +141 −0 update-all
28 changes: 20 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -16,25 +16,37 @@ machines in a network or cloud.
To start developing on nixops, you can run:

```bash
$ ./dev-shell
$ ./dev-shell --arg p "(p: [ p.plugin1 ])"
```

Where plugin1 can be any available nixops plugin, and where
none or more than one can be specified, including local plugins. An example is:


```bash
$ ./dev-shell --arg p "(p: [ p.aws p.packet (p.callPackage ../myplugin/release.nix {})])"
```

To update the available nixops plugins, edit the
all-plugins.txt file with any new plugin repos and
then execute the update-all script. This will refresh
the data.nix file.

## Building from source

The command to build NixOps depends on your platform:
The command to build NixOps depends on your platform and which plugins you choose:

- `nix-build release.nix -A build.x86_64-linux` on 64 bit linux.
- `nix-build release.nix -A build.i686-linux` on 32 bit linux.
- `nix-build release.nix -A build.x86_64-darwin` on OSX.
- `nix-build release.nix -A build.x86_64-linux --arg p "(p: [ p.plugin1 ])"` on 64 bit linux.
- `nix-build release.nix -A build.i686-linux --arg p "(p: [ p.plugin1 ])"` on 32 bit linux.
- `nix-build release.nix -A build.x86_64-darwin --arg p "(p: [ p.plugin1 ])"` on OSX.

Similarly, using NixOps from another project (for instance a
nix-shell) can be done using:
Similarly, using NixOps from another project (for instance a nix-shell) can be done using:

```nix
stdenv.mkDerivation {
name = "my-nixops-env";
buildInputs = [
(import /path/to/nixops/release.nix {}).build.x86_64-linux
(import /path/to/nixops/release.nix { p = (p: [ p.plugin1 ]); }).build.x86_64-linux
];
}
```
16 changes: 16 additions & 0 deletions all-plugins.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# lines starting with a # are comments

# The accepted format (double escape all grep expresssions):
# <organisation> [grep-expression] [grep-v-expression] - include all repositories in the organisation.
# grep-expression: filter repo matching the expression
# grep-v-expression: filter repo not matching the expression
# <organisation>/<repo> - include only the named repository.

# include all nixos providers
# nixos nixops-\\(aws\\|packet\\)

# include nixops-aws
nixos/nixops-aws

# include nixops-hetzner
nixos/nixops-hetzner
17 changes: 17 additions & 0 deletions data.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated with ./update-all
{
aws =
{
owner = "nixos";
repo = "nixops-aws";
version = "1.0.0";
sha256 = "1if6spscsgd6ckivgvbqza5fvvn5hbafi1n8q0fw98s3xpz2hjfm";
};
hetzner =
{
owner = "nixos";
repo = "nixops-hetzner";
version = "1.0.0";
sha256 = "0cxfjpk2daczv3m7q5bsgfvd30qgmm1y7dnvz6nd7s7l7l0gsvas";
};
}
26 changes: 15 additions & 11 deletions doc/manual/default.nix
Original file line number Diff line number Diff line change
@@ -13,16 +13,20 @@ let
options = pkgs.lib.filter (opt: opt.visible && !opt.internal)
(pkgs.lib.optionAttrSetToDocList systemModule.options);

optionsXML = builtins.toFile "options.xml" (builtins.unsafeDiscardStringContext
(builtins.toXML options));
backwardsCompat = { options }: let
optionsXML = builtins.toFile "options.xml" (builtins.unsafeDiscardStringContext
(builtins.toXML options));
in {
optionsDocBook = pkgs.runCommand "options-db.xml" {} ''
${pkgs.libxslt.bin or pkgs.libxslt}/bin/xsltproc \
--stringparam revision '${revision}' \
--stringparam program 'nixops' \
-o intermediate.xml ${nixpkgs + "/nixos/doc/manual/options-to-docbook.xsl"} ${optionsXML}
${pkgs.libxslt.bin or pkgs.libxslt}/bin/xsltproc \
-o $out ${nixpkgs + "/nixos/doc/manual/postprocess-option-descriptions.xsl"} intermediate.xml
''; };

optionsDocBook = pkgs.runCommand "options-db.xml" {} ''
${pkgs.libxslt.bin or pkgs.libxslt}/bin/xsltproc \
--stringparam revision '${revision}' \
--stringparam program 'nixops' \
-o intermediate.xml ${nixpkgs + /nixos/doc/manual/options-to-docbook.xsl} ${optionsXML}
${pkgs.libxslt.bin or pkgs.libxslt}/bin/xsltproc \
-o $out ${nixpkgs + /nixos/doc/manual/postprocess-option-descriptions.xsl} intermediate.xml
'';

in optionsDocBook
in (pkgs.nixosOptionsDoc or backwardsCompat) {
inherit options;
}
Loading