Commit Graph

607 Commits

Author SHA1 Message Date
Joao Fernandes 39074a34b5
Bump Engine, UCP, DTR (#6260)
* Bump UCP to 2.2.6
* Bump DTR to 2.4.3
* Bump EE engine to 17.06.2-ee-7
* Address feedback
2018-03-19 11:18:18 -07:00
Michael 5edf2f07d9 Update "configure local computer" for SUSE SLES 12 2018-03-15 11:52:39 -07:00
Akim Demaille 14b53b68c3 Jekyll: don't put {% raw %} directives in pre blocks
Replace all occurrences of

    ```foo
    {% raw %}
    bar
    {% endraw %}
    ```

(which generates spurious empty lines in the rendered pre block) with

    {% raw %}
    ```foo
    bar
    ```
    {% endraw %}

Also, fix some occurrences where the raw section is too large and
prevented interpretation of Jekyll directives.

This is the syntax used in the documentation of Jekyll itself:

https://raw.githubusercontent.com/jekyll/jekyll/master/docs/_docs/templates.md

FTR, done with two perl substitutions:

    '^([\t ]*```[^\n]*
    )([ \t]*\{% raw %\}[^\n]*
    )' '$2$1'

and

    '^([ \t]*\{% endraw %\}[^\n]*
    )([\t ]*```[^\n]*
    )' '$2$1'

and manually tweaks.  A mechanical check would be most useful.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>
2018-03-13 10:28:29 -07:00
Trapier Marshall 6211d325e8 indicate units on ucp metrics intervals
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2018-03-12 14:17:54 -07:00
Steven Showers 09aebb8a42 Update use-domain-names-to-access-services.md
Per https://github.com/docker/escalation/issues/467#issuecomment-370944782, it is not possible to redirect HTTPS to HTTP. A customer requested that we note this in the documentation (see Salseforce ticket 00040429).
2018-03-08 16:49:58 -08:00
Joao Fernandes 8f8427f04f Improve wording for UCP 2.2.5 release notes 2018-03-01 11:51:18 -08:00
Abhinand Jinugu d82e8c955a HRM and Window Servers (#5962)
* HRM and Window Servers

Note:- Windows Server doesn't support Swarm Mode Routing Mesh yet (not considering Windows Server version 1709 which will be out soon). This means the hrm service is exposed only through the manager node's ip (since Windows Server cannot be a manager node). Therefore the DNS entry for the host name ('wordpress.example.org' in this example) should be mapped to the manager node and not to any of the Windows worker nodes.

* HRM with Windows Server

HRM with Windows Server
2018-02-21 13:17:09 -08:00
Joao Fernandes 22b970c642 Address feedback on UCP 2.2.5 known issues 2018-02-15 15:55:01 -08:00
Joao Fernandes 0e0eecf1d5 Make sure users encrypt UCP backups 2018-02-15 15:54:47 -08:00
Joao Fernandes 2480222b4e Release UCP 2.1.7, DTR 2.2.11, 2.3.6, 2.4.2 2018-02-13 11:22:01 -08:00
Joao Fernandes e3f27df7af Add known issue to UCP 2.5 2018-02-09 13:28:39 -08:00
ada 0bdd490620 Removed "encryption" detail from unencrypted example (#5921) 2018-02-07 16:17:33 -08:00
Joao Fernandes 0b73d7b02b Fix broken link 2018-02-01 13:25:14 -08:00
Jim Galasyn 391549728c
Add PowerShell command to UCP client bundle topic (#5857) 2018-01-29 09:13:08 -08:00
Misty Stanley-Jones a55ddf60a9
Move /engine/installation to /install (#5651)
* Move /engine/installation to /install

* Add Docker for IBM Cloud to the matrix
2018-01-26 10:29:14 -08:00
Misty Stanley-Jones a4f5e30249
Various copyedits to reduce future tense, wordiness, and use of 'please' (#5788)
* Reword lots of instances of 'will'

* Reword lots of instances of won't

* Reword lots of instances of we'll

* Eradicate you'll

* Eradicate 'be able to' type of phrases

* Eradicate 'unable to' type of phrases

* Eradicate 'has / have to' type of phrases

* Eradicate 'note that' type of phrases

* Eradicate 'in order to' type of phrases

* Redirect to official Chef and Puppet docs

* Eradicate gratuitous 'please'

* Reduce use of e.g.

* Reduce use of i.e.

* Reduce use of N.B.

* Get rid of 'sexagesimal' and correct some errors
2018-01-25 17:37:23 -08:00
Joao Fernandes b68eee92b0
Update how to get support (#5801)
* Update how to get support

* Address feedback
2018-01-23 16:11:34 -08:00
Joao Fernandes 21505eb604 Revert "Remove release notes for UCP 2.2.5"
This reverts commit 9d577bf552.
2018-01-17 08:26:35 -08:00
Joao Fernandes 9d577bf552 Remove release notes for UCP 2.2.5 2018-01-16 18:11:38 -08:00
Joao Fernandes 07f34e677d Release UCP 2.2.5, 2.1.6 2018-01-16 15:58:17 -08:00
Jim Galasyn f89605478d
Fix typo (#5693) 2018-01-08 08:54:52 -08:00
Jim Galasyn be82c97805
Fix typo (#5692) 2018-01-08 08:35:41 -08:00
Michael Pereira d6536e9ddc Fix link to LDAP configuration for UCP (#5645)
I suppose that the document for LDAP configuration was moved into the admin subfolder and this page wasn't updated as part of this commit: 623478bb56
2018-01-07 09:35:44 -08:00
Jim Galasyn 350d6f0846
Add sudo to CLI-based access snippet (#5652) 2018-01-02 12:20:33 -08:00
Steven Showers 7e102360d5 Update system-requirements.md
Added:

Note that, when planning for host storage, workflows based around `docker pull` through UCP will result in higher storage requirements on manager nodes, since `docker pull` through UCP results in the image being pulled on all nodes.

This has become an issue for some customers who did not plan to make additional storage available on UCP managers.
2018-01-02 10:07:30 -08:00
Aaron Thomas 47f9a8cf70 Added AWS IdleTimeout recommendations
@vikstrous: this change deals with some long-running DTR operations that required a 600 second idle timeout and missing for AWS LBs. The added change was sourced from: http://docs.aws.amazon.com/cli/latest/reference/elb/modify-load-balancer-attributes.html. Thanks!
2018-01-02 10:06:33 -08:00
Jim Galasyn 3ef9318fa1 Remove PS> prompts from Windows snippets (#5538) 2017-12-15 15:49:27 -08:00
Jim Galasyn 3869e764e3
Remove issue numbers from relnotes (#5490) 2017-12-11 11:26:24 -08:00
Joao Fernandes 6cfcb5439b Remove path-based routing 2017-12-07 13:58:53 -08:00
Jim Galasyn 0efab6dd8f
Fix broken link (#5452) 2017-12-06 15:41:02 -08:00
Michael Friis d10979f508 update system requirements (#5437)
* update system requirements

* just link to compat matrix
2017-12-06 14:52:45 -08:00
Michael Friis a047d2e9b2 add known issue for swarm admin UI bug (#5399)
* add known issue for swarm admin UI bug

* elaborate on new known issue
2017-11-27 15:35:26 -08:00
Brian Walker 1d39f3d624 Added Language regarding FW Ports (#5127)
* Added Language regarding FW Ports

Added additional language regarding system requirements and firewall ports to UCP installation.

* Update url to be relative instead of absolute
2017-11-20 09:59:07 -08:00
Michael Friis 1be0f9ce58 two decimal places not required for memory requirements (#5317) 2017-11-16 11:24:13 -08:00
Joao Fernandes 40c6a99757
Improve script to reset user password (#5298)
* Improve script to reset user password

* Update UCP recover pass
2017-11-14 11:05:54 -08:00
Jim Galasyn 3454f7753e
Fixup PowerShell code blocks (#5306) 2017-11-14 09:16:36 -08:00
Alex Seymour 738d87c1bf Correct sync_schedule in ucp-description-file.md (#5274)
* Correct sync_schedule in ucp-description-file.md

The sync_schedule parameter in the auth.ldap section of the UCP Configuration file contains a seconds field, whilst the existing documentation claims this is omitted. Should explicitly call out inclusion of seconds field here, as this is usually omitted in a standard CRON entry.

* Update UCP config

Make explicit that the `sync_schedule` needs to include the seconds field, but it always needs to be zero.
2017-11-10 13:12:18 -08:00
Trapier Marshall 6b21538aa3 clarify backup relationship between ucp and swarm (#5276)
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-11-10 09:21:13 -08:00
ollypom ee2dae0ebf Added correct UCP Header 2017-11-06 17:38:25 -08:00
Michael Friis 343db1ae44 fix date some more 2017-11-06 17:31:08 -08:00
ollypom 1c9f514a01 Added UCP 224 --data-path 2017-11-06 17:30:42 -08:00
Joao Fernandes 3990f601cd Introduce UCP 2.2.4 2017-11-02 09:31:55 -07:00
Trapier Marshall 82a7f716fc ucp hrm does not require publishing a port (#5181)
For UCP versions 2.1.2 and later HRM does not require `--publish`ing a
port.

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-11-01 18:17:54 -07:00
Trapier Marshall 76294fb7fd ucp: indicate how to validate client bundle communication (#5178)
* ucp: indicate how to validate client bundle loaded

Recommends using `docker version` to confirm UCP client certificate
bundle has been sourced and the client is successfully able to reach UCP.

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>

* Add raw/endraw Liquid tags
2017-11-01 14:05:57 -07:00
Vivek Saraswat ae8068f22f Run only signed images change (#5172)
* Run only signed images change

It turns out the "run only signed images" feature only works by selecting teams in the `docker-datacenter` org.  This became an issue in UCP 2.2 which has multiple org support.
2017-10-31 09:53:24 -07:00
Jim Galasyn 7ada9fdfcd
Fix raw tag (#5176) 2017-10-30 16:32:32 -07:00
Jim Galasyn f802229908
Add note about signing policy (#5171) 2017-10-30 16:01:20 -07:00
Michael Irwin 5e92b2ef43 Typos fixes in "Use Trusted Images for CI" (#5163)
Fixed a few typos. No real content changes.

Signed-off-by: Michael Irwin mikesir87@gmail.com
2017-10-30 09:51:19 -07:00
Jim Galasyn ae01237488
Add lb examples to UCP (#5160) 2017-10-27 16:26:59 -07:00
Jim Galasyn d73e595a7e
Add uninstall UCP steps for Windows Server (#5154) 2017-10-27 15:55:20 -07:00
Joao Fernandes aa0bf8c18e Edit snippet to be more verboe (#5147) 2017-10-27 14:28:19 -07:00
Jim Galasyn c46c1c7c46 Add quotes around env.sh subshell (#5132) 2017-10-26 16:41:28 -07:00
Jim Galasyn 82d7a8aa5e Add tcp port (#5124) 2017-10-26 09:10:25 -07:00
Frank Taillandier 2e2a148fe4 Fix liquid warning (#5109) 2017-10-25 12:49:00 -07:00
Jim Galasyn a9c76215e9 New topic on pulling IBM z images for UCP (#5085)
* New topic on pulling IBM z images for UCP

* Incorporate feedback

* Add table for os-dependent image names

* Add ucp-dsinfo to UCP components tables
2017-10-23 18:32:14 -07:00
Joao Fernandes 84e78883c7 Add known issue to UCP (#5086) 2017-10-23 16:32:16 -07:00
Bradley Cloete 02e0a52010 Update index.md (#5037)
Small grammatical change.
2017-10-19 15:47:22 -07:00
Jim Galasyn eb75097db8 Fix port in domain name topic (#5016) 2017-10-17 17:02:28 -07:00
Jim Galasyn 3c3319860e Move task states topic to Engine (#4961) 2017-10-13 16:00:10 -07:00
Jim Galasyn c497dbf42e Remove old note about custom tls certs and compose (#4954) 2017-10-13 15:01:11 -07:00
Jim Galasyn 552e7df058 Note about upgrade paths (#4922) 2017-10-12 13:39:09 -07:00
Jim Galasyn ec23f1e8d8 Add note on NTP sync (#4919) 2017-10-12 10:40:18 -07:00
Wang Jie 43e33e0e1d Update backups-and-disaster-recovery.md (#4906) 2017-10-12 08:34:49 -07:00
Wang Jie ac71789dcb Update index.md (#4855) 2017-10-10 07:12:30 -07:00
Wang Jie 58da38a288 Update release-notes.md (#4856) 2017-10-10 07:11:56 -07:00
Wang Jie c37f8c3e1a Update index.md (#4849) 2017-10-09 10:22:19 -07:00
Wang Jie e2097289c7 Update cli-based-access.md (#4848) 2017-10-09 10:21:53 -07:00
Wang Jie 9cc3b1e5b4 Update create-and-manage-users.md (#4846) 2017-10-09 10:20:19 -07:00
Wang Jie 6d01b64094 Update index.md (#4845) 2017-10-09 10:19:43 -07:00
Wang Jie d4a19be08b Update upgrade.md (#4844) 2017-10-09 10:18:42 -07:00
Wang Jie e757b1b3e7 Update uninstall-ucp.md (#4843) 2017-10-09 10:18:04 -07:00
Wang Jie 60314965ee Update restore.md (#4842) 2017-10-09 10:17:16 -07:00
Wang Jie 52c6a2be0c Update backup.md (#4825) 2017-10-06 16:58:47 -07:00
Wang Jie 4a9e36966c Update install.md (#4826) 2017-10-06 16:58:27 -07:00
Jim Galasyn 5698ef7c4f Add note about stack deploy for image pulls (#4815) 2017-10-05 15:01:51 -07:00
Jim Galasyn 3599a96ad5 Move redirects to latest versions (#4804) 2017-10-04 18:16:35 -07:00
Jim Galasyn a40f89d856 [WIP] Add feedback on UCP disaster recovery (#4690)
* Add feedback on UCP disaster recovery

* Add table of backed up UCP data

* Add orgs to backup table

* Add feedback from Wayne and Josh
2017-10-02 16:09:48 -07:00
Vivek Saraswat 66bbbeab95 HEAD vs GET for ping (#4758)
Adding a description of https://github.com/docker/orca/issues/9701 until we can get this fixed
2017-10-02 11:50:25 -07:00
Jeff Anderson 74a05028c7 Document the HRM default backend behaviors (#4748) 2017-10-02 10:54:22 -07:00
Wang Jie aa674631d4 Update index.md (#4771) 2017-10-02 10:50:09 -07:00
Wang Jie b5ab50f927 Update backups-and-disaster-recovery.md (#4770) 2017-10-02 10:49:42 -07:00
Wang Jie a602fac14c Update troubleshoot-configurations.md (#4769) 2017-10-02 10:48:32 -07:00
Wang Jie c685515a35 Update use-node-local-network-in-swarm.md (#4768) 2017-10-02 10:47:33 -07:00
Wang Jie 7eb41aa0c0 Update ucp-configuration-file.md (#4767) 2017-10-02 10:46:29 -07:00
Wang Jie 220f8e7676 Update store-logs-in-an-external-system.md (#4766) 2017-10-02 10:44:15 -07:00
Wang Jie d983f72fdc Update set-up-high-availability.md (#4765) 2017-10-02 10:43:45 -07:00
Wang Jie 7c7cbd9395 Update integrate-with-dtr.md (#4763) 2017-10-02 10:43:18 -07:00
Wang Jie 49ef1e5828 Update set-session-timeout.md (#4764) 2017-10-02 10:42:45 -07:00
Wang Jie 7f40428fa0 Update join-windows-worker-nodes.md (#4762) 2017-10-02 10:42:15 -07:00
Wang Jie d77ebe6bfc Update system-requirements.md (#4750) 2017-09-29 03:37:49 -07:00
Wang Jie 31521bdc36 Update upgrade.md (#4753) 2017-09-29 03:37:20 -07:00
Wang Jie 0736779d2a Update plan-installation.md (#4752) 2017-09-29 03:36:24 -07:00
Jim Carroll 9de1f5ed49 Updated broken path (#4715)
Updated path to reflect current location of manage-access-with-collections.md
2017-09-28 17:16:28 -07:00
Wang Jie 50a99c7dd2 Update architecture.md (#4744) 2017-09-28 10:53:16 -07:00
Joao Fernandes 95a5f2bfd7 Remove docker/ucp fingerprint (#4703) 2017-09-22 15:19:50 -07:00
Brett Inman 273a9448fd Update RAM recommendation for UCP managers (#4689)
* Update RAM recommendation for UCP managers
2017-09-22 11:57:50 -07:00
Jim Galasyn e6bc5dd69a Update required CentOS version (#4678) 2017-09-20 13:42:54 -07:00
Jim Galasyn 34d55ca951 Update required CentOS version (#4676) 2017-09-19 15:54:04 -07:00
Jim Galasyn fa2b58f766 Add note about HA and load balancers (#4671) 2017-09-19 13:54:15 -07:00
Andy Clemenko c976c02331 remove the recommendation of 7 nodes. (#4657)
removing the recommendation of 7 managers nodes based guidance from engineering. they claimed 7 manager nodes was less performative then 5.
2017-09-18 17:00:11 -07:00
Jim Galasyn b576e23bf5 Update ElasticSearch command (#4659) 2017-09-18 14:45:21 -07:00
Jim Galasyn 5e99cfe339 Add note about manager node minimum requirements (#4653) 2017-09-18 10:00:10 -07:00
Jim Galasyn e0bfcf33d5 Add note about IP protocol 50 (ESP) traffic (#4650) 2017-09-15 17:18:26 -07:00
Trapier Marshall 102684b047 UCP: operationalize config file editing (#4605)
Made instructions for editing UCP config copy-pastable with in-line
comments. This removes the need to copy-part-of-a-line,
paste-some-output-from-another-command, copy-next-part-of-a-line,
repeat, until a command is complete.

Also moved the "Example config" below "Inspect and modify" to improve
readability as "Inspect and modify" is a more common workflow.

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-09-15 15:44:03 -07:00
Jim Galasyn aaf90c9dfc WIP: Add topic on stacks and collections (#4623)
Add topic on stacks and collections
2017-09-14 18:10:06 -07:00
Javier Arellano be0e410f24 Fix example (#4631)
Fix sudo command in example
2017-09-14 11:51:38 -07:00
Joao Fernandes 8120e83429 Add HRM with path-based routing (#4632) 2017-09-14 11:48:30 -07:00
Joao Fernandes b7a44e15b4 Update UCP system requirements (#4600) 2017-09-13 15:57:23 -07:00
Trapier Marshall f42f2a9858 ucp: correct agent config change command (#4595)
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-09-13 15:55:21 -07:00
Trapier Marshall cfad72023b ucp: fix support dump --log-driver arp placement (#4619)
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-09-13 15:50:01 -07:00
Joao Fernandes 898270c233 Release UCP 2.2.3 (#4621) 2017-09-13 15:34:49 -07:00
Joao Fernandes 3f0c3c3297 Replace Datacenter with Docker EE (#4566) 2017-09-11 17:08:22 -07:00
Trapier Marshall b6137ace7c indicate how to modify ucp config file (#4508)
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-09-11 17:01:17 -07:00
Trapier Marshall 5fe6bc542a syntax: docker config create for ucp (#4494)
`--name` is not a valid argument on `docker config create`

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-09-11 16:37:20 -07:00
Jim Galasyn 7da2baedef Use ucp_ver for dsinfo-win label (#4585)
* Use ucp_ver for dsinfo-win label

* Refactor win_server_zip_url
2017-09-11 14:59:01 -07:00
Victoria Bialas 7e9234338b Fix broken links on UCP links and TOC on 2.1 (#4573)
* fix UCP links and TOC on 2.1

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* re-organized 2.1 TOC to put TLS certs at end like for 2.2

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fix links per Joao's comments

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-09-11 14:32:53 -07:00
Jim Galasyn f207a54260 Add LDAP description and example (#4581) 2017-09-11 11:53:49 -07:00
ada 66b83257d7 Upgrade UCP & Where to go Next links to wrong page (#4472) 2017-09-11 09:46:56 -07:00
Aaron Miller 8b819ddd2c Fix Windows support dump to use version number (#4467)
latest tag does not work
2017-09-11 09:45:48 -07:00
Jim Galasyn 809708d42b Add latest versions of CentOS and RHEL (#4567) 2017-09-08 12:01:39 -07:00
Joao Fernandes 78cd5a3ecf Fix issues around UCP, DTR, content trust (#4558)
* Explain behavior with UCP and DCT

* Disable DCT before upgrading DTR
2017-09-08 10:48:47 -07:00
Joao Fernandes 02a7613696 Fix typo (#4514) 2017-09-07 18:06:54 -07:00
Jim Galasyn 1979162614 Fix node state message (#4555) 2017-09-07 16:31:58 -07:00
Jim Galasyn 9f15cba3c7 Remove superfluous cd (#4551) 2017-09-07 13:50:15 -07:00
Jim Galasyn 36910ffc1d Update Add Node screenshot (#4550) 2017-09-07 13:30:16 -07:00
Jim Galasyn fbd515db0e Add explanation of default role for new users (#4515)
* Add explanation of default role for new users

* Incorporate feedback
2017-09-05 18:08:38 -07:00
Jim Galasyn e9101f07d2 Add topic on session settings (#4511)
* Add topic on session settings

* Incorporated feedback
2017-09-05 12:43:14 -07:00
Jim Galasyn 115ccf10b4 Add es tag (#4482) 2017-08-31 16:44:50 -07:00
Jim Galasyn aeb506b3ca Add note about swarm mode (#4478) 2017-08-31 15:24:46 -07:00
Jim Galasyn 9995dd4b2f Fix link (#4475) 2017-08-31 13:18:11 -07:00
Jim Galasyn 665225de15 Add helpful links and notes to UCP upgrade (#4474) 2017-08-31 12:39:40 -07:00
Joao Fernandes 8f1ba11746 Release UCP 2.2.2 (#4456) 2017-08-30 18:04:57 -07:00
Jim Galasyn c6d413a8c4 Update LDAP screenshot and UI descriptions (#4435) 2017-08-29 17:09:38 -07:00
Joao Fernandes 843d8ab430 Fix broken link (#4432) 2017-08-29 15:55:05 -07:00
Jim Galasyn 623478bb56 Fix link to LDAP topic (#4428) 2017-08-29 11:34:57 -07:00
Jim Galasyn c316fd3f2c Fix link to DTR install topic (#4383) 2017-08-25 13:58:14 -07:00
Jim Galasyn eac03a4597 Add UCP network latencies table (#4382) 2017-08-25 13:19:59 -07:00
Joao Fernandes 2912b2c475 Update UCP known issues 2017-08-25 11:27:10 -07:00
Joao Fernandes fe52c96fd7 Revert "Add release notes for UCP 2.2.1"
This reverts commit 25da2e5e13.
2017-08-25 11:25:08 -07:00
Jim Galasyn 6b42871da9 Update roles graphic (#4376) 2017-08-25 10:33:16 -07:00
Joao Fernandes 2a7a19afb8 Fix UCP 2.1 screenshots 2017-08-25 09:56:49 -07:00
Joao Fernandes 0a0e58ef68 Add release notes for UCP 2.2.1 2017-08-24 15:37:01 -07:00
Jim Galasyn e4f6a87c56 Add links to UCP on Windows topic (#4340) 2017-08-23 14:51:03 -07:00
Jim Galasyn 91c7923e02 Update UCP upgrade screenshots (#4338) 2017-08-23 13:11:28 -07:00
Joao Fernandes cdddbbe31f Fix broken link 2017-08-22 16:33:16 -07:00
Jim Galasyn 0fb0104497 Add --log-driver option to UCP/DTR backup commands (#4326) 2017-08-22 15:15:26 -07:00
Jim Galasyn 4a9a44c574 Update UCP API ref (#4311) 2017-08-21 14:56:26 -07:00
Joao Fernandes 768fd32262 Remove internal flag from UCP 2017-08-21 09:44:52 -07:00
Jim Galasyn 973ea916f3 Add cool rbac graphics (#4289) 2017-08-18 16:55:17 -07:00
Joao Fernandes 32384dd12d Update UCP release notes with known issues (#4251) 2017-08-18 08:20:46 -07:00
Jim Galasyn 8e75de2ab1 Fix two rbac images (#4250) 2017-08-17 13:42:24 -07:00
Joao Fernandes 9d41a5db2d Update UCP support dump command (#4226) 2017-08-17 09:56:24 -07:00
Joao Fernandes 1fa5f5988d Refactor rbac topics (#4229)
* Refactor rbac topics

* Make headings sentence case
2017-08-17 08:36:18 -07:00
Alex Mavrogiannis 4e31cef646 Remove period from UCP 2.2 release notes
Signed-off-by: Alex Mavrogiannis <alex.mavrogiannis@docker.com>
2017-08-16 16:21:20 -07:00
Joao Fernandes b8599978ef Remove mentions of beta in DDC articles 2017-08-15 23:40:09 -07:00
Joao Fernandes 667320282c Updates UCP 2.2.0 release notes (#236) 2017-08-15 23:31:15 -07:00
Jim Galasyn fa7b36c629 Update versions to GA; remove Beta admonitions (#232) 2017-08-15 23:31:15 -07:00
Jim Galasyn b231266993 First drafts of rbac tutorials (#227) 2017-08-15 23:31:15 -07:00
Joao Fernandes e0e03bcf12 Fix broken link (#223) 2017-08-15 23:31:15 -07:00
Jim Galasyn 3de302c121 Bump ee version (#221) 2017-08-15 23:31:15 -07:00
Jim Galasyn 636ebdbbe6 Add note about node IPs and certs (#216) 2017-08-15 23:31:15 -07:00
Jim Galasyn e9cd784732 Update rbac diagrams (#214)
* Update rbac diagrams

* Add Liquid tags to images
2017-08-15 23:31:15 -07:00
Jim Galasyn 19387c2caa Add grant diagram to authentication topic (#213) 2017-08-15 23:31:15 -07:00
Jim Galasyn c6f004efd0 Add diagram to teams rbac topic (#212) 2017-08-15 23:31:15 -07:00
Jim Galasyn 60e11a92aa Incorporate feedback in macvlan topic (#211) 2017-08-15 23:31:15 -07:00
Jim Galasyn cc4547ff42 Add screenshot for custom role (#210) 2017-08-15 23:31:15 -07:00
Jim Galasyn f722b2134d Add view-only rbac diagram (#208) 2017-08-15 23:31:15 -07:00
Jim Galasyn b001712037 Update fonts in diagrams (#207) 2017-08-15 23:31:15 -07:00
Jim Galasyn 6ef9fd3a9b Add nodes rbac diagram (#205) 2017-08-15 23:31:15 -07:00
Jim Galasyn fa9c3cece6 Add config network topic, incl. macvlan ui (#203)
* Draft of macvlan topic

* Add topic on config networks

* Incorporate feedback
2017-08-15 23:31:15 -07:00
Jim Galasyn cca5f739c2 Add rbac images (#202)
* Add first draft of collections diagram

* Add diagram for node rbac

* Add diagram for node rbac

* Add diagram for volume rbac
2017-08-15 23:31:15 -07:00
Jim Galasyn df6ce4d7b8 Add note about default org and grants (#199) 2017-08-15 23:31:15 -07:00
Jim Galasyn d9c66b50bc Fix typo 2017-08-15 23:31:15 -07:00
Jim Galasyn 3869696e5c Tweak secrets workflow (#197) 2017-08-15 23:31:15 -07:00
Jim Galasyn a2cb4642d6 Update secrets user topics workflow and screenshots (#196) 2017-08-15 23:31:15 -07:00
Jim Galasyn d05f123ee5 Add new image showing the UCP grant model (#195) 2017-08-15 23:31:15 -07:00
Jim Galasyn 1199c61ee8 Update node scheduler topic (#194) 2017-08-15 23:31:15 -07:00
Jim Galasyn 72353b5d69 Add para about stacks (#191) 2017-08-15 23:31:15 -07:00
Joao Fernandes 2fcdaf107e Update metadata in DDC articles (#187) 2017-08-15 23:31:15 -07:00
Jim Galasyn 186f54c48f Add note about dsinfo directory (#189) 2017-08-15 23:31:15 -07:00
Jim Galasyn a90c60c20c Add support dump command for Windows (#188) 2017-08-15 23:31:15 -07:00
Jim Galasyn efe4df6515 Incorporate feedback for UCP API ref (#185) 2017-08-15 23:31:15 -07:00
Jim Galasyn 412406e316 Update UCP API ref (#183)
Testing whether new "description" fields render correctly.
2017-08-15 23:31:15 -07:00
Jim Galasyn fa6346958e Add table with task states (#181)
* Add table with task states

* Incorporate feedback on task states
2017-08-15 23:31:15 -07:00
Jim Galasyn b9984077a6 Update UCP command line examples to use full form (#180) 2017-08-15 23:31:15 -07:00
Jim Galasyn c72fd6e2d2 Update workflow and add screenshots for rbac view-only topic (#178)
* Update workflow and add screenshots

* Add screenshots
2017-08-15 23:31:15 -07:00
Jim Galasyn 86f35eb4a4 Update workflow and add screenshots (#177)
* Update workflow and add screenshots

* Incorporate feedback
2017-08-15 23:31:15 -07:00
Jim Galasyn 67e98a014f Update node isolation topic per feedback (#176)
* Update node isolation topic per feedback

* Incorporated feedback
2017-08-15 23:31:15 -07:00
Jim Galasyn b8ffacac81 Update screenshots for Beta (#175) 2017-08-15 23:31:15 -07:00
Jim Galasyn 775a5f0473 Add stub topic for collections and stacks (#174) 2017-08-15 23:31:15 -07:00
Jim Galasyn 732dddce51 Add outline of steps for configuring LDAP (#171)
* Add outline of steps for configuring LDAP

* Change title per feedback
2017-08-15 23:31:15 -07:00
Jim Galasyn d972775968 Add link to CLI LDAP config topic 2017-08-15 23:31:15 -07:00
Joao Fernandes c76e8e3fed Add known issues to UCP (#163) 2017-08-15 23:31:15 -07:00
Joao Fernandes 8f8dc11c5f Update UCP/DTR offline instructions 2017-08-15 23:31:15 -07:00
Joao Fernandes e3d7d2b577 Remove redirect from UCP 2017-08-15 23:31:15 -07:00
Joao Fernandes 3b66acf7d0 Refactor image names and versions (#159)
* Refactor org/repo:version for DTR

* Refactor org/repo:version for UCP
2017-08-15 23:31:15 -07:00
Jim Galasyn 5641b2deb1 Update UCP and DTR versions for Beta (#168)
* Update UCP and DTR versions for Beta

* Use new version schema
2017-08-15 23:31:15 -07:00
Joao Fernandes 74206493e1 Add UCP 2.2 release notes 2017-08-15 23:31:15 -07:00
Joao Fernandes 0171781f10 Delete old UCP release notes 2017-08-15 23:31:15 -07:00
Jim Galasyn 002094215e Add note for Beta testing (#138) 2017-08-15 23:31:15 -07:00