-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathmkdocs.yml
More file actions
516 lines (511 loc) · 30 KB
/
mkdocs.yml
File metadata and controls
516 lines (511 loc) · 30 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
# General
site_name: Shippable Docs
repo_url: https://github.com/Shippable/docs
# Paths
docs_dir: sources
theme_dir: theme/saas
#detect broken links and break the build
strict: true
#Google Analytics
google_analytics: ['UA-50610279-1', 'auto']
# Pages
pages:
- Getting started:
- Overview:
- What is Shippable?: index.md
- What do we support?: getting-started/what-is-supported.md
- How much does it cost?: getting-started/billing-overview.md
- Quickstarts:
- Kubernetes tutorials: getting-started/kubernetes-tutorials.md
- Amazon ECS tutorials: getting-started/amazon-ecs-tutorials.md
- GKE tutorials: getting-started/gke-tutorials.md
- Run CI/CD samples:
- Run your first CI build: getting-started/ci-sample.md
- Deploy your first app: getting-started/cd-sample.md
- FAQ: getting-started/support.md
- CI:
- CI overview: ci/why-continuous-integration.md
- Enabling a project: ci/enable-project.md
- Triggering your CI job: ci/trigger-job.md
- Tutorials index: ci/tutorials.md
- Configuration:
- Yml structure: ci/yml-structure.md
- Preparing your environment:
- Setting language and runtime: ci/set-language.md
- Choosing a build image: ci/build-image.md
- Specifying branches/tags to build: ci/specify-branches.md
- Working with env variables: ci/env-vars.md
- Working with services:
- Overview: ci/services-overview.md
- Cassandra: ci/cassandra.md
- CouchDB: ci/couchdb.md
- Elasticsearch: ci/elasticsearch.md
- Memcached: ci/memcached.md
- MongoDB: ci/mongodb.md
- MySQL: ci/mysql.md
- Neo4j: ci/neo4j.md
- PostgreSQL: ci/postgresql.md
- RabbitMQ: ci/rabbitmq.md
- Redis: ci/redis.md
- Riak: ci/riak.md
- RethinkDB: ci/rethinkdb.md
- Selenium: ci/selenium.md
- SQLite: ci/sqlite.md
- Building and testing your project:
- Configuring CI commands: ci/build-and-test.md
- Building Docker images: ci/build-docker-images.md
- Running tests in parallel: ci/parallelize-tests.md
- Status code: ci/build_status.md
- Configuring test/code coverage:
- Basic config: ci/test-code-coverage-reports.md
- JaCoCo reports: ci/jacoco-reports.md
- Sending notifications:
- Overview: ci/send-notifications.md
- Sending messages to Slack: ci/slack-notifications.md
- Sending messages to Email: ci/email-notifications.md
- Sending messages to Hipchat: ci/hipchat-notifications.md
- Sending messages to IRC: ci/irc-notifications.md
- Pushing artifacts:
- Overview: ci/push-artifacts.md
- Push artifacts to S3: ci/push-to-s3.md
- Push to JFrog Artifactory: ci/push-to-artifactory.md
- Push Docker image to Docker Hub: ci/push-docker-hub.md
- Push Docker image to Amazon ECR: ci/push-amazon-ecr.md
- Push Docker image to GCR: ci/push-gcr.md
- Push Docker image to Quay: ci/push-quay.md
- Push Docker image to Docker registry: ci/push-docker-registry.md
- Deployments:
- Overview: ci/deployment-overview.md
- Heroku: ci/deploy-to-heroku.md
- Amazon EC2: ci/deploy-to-ec2.md
- AWS Opsworks: ci/deploy-to-aws-opsworks.md
- AWS EBS: ci/deploy-to-aws-beanstalk.md
- Digital Ocean: ci/deploy-to-digital-ocean.md
- Advanced config:
- Caching: ci/caching.md
- Using a custom Docker image: ci/custom-docker-image.md
- Running Docker Compose: ci/docker-compose.md
- Building pull requests: ci/pull-request-builds.md
- Skipping a build: ci/skip-builds.md
- Using git submodules: ci/git-submodules.md
- Retrying a command: ci/retry-command.md
- Running Tests in Parallel: ci/running-parallel-tests.md
- Using SSH keys: ci/ssh-keys.md
- Canceling builds: ci/cancel-builds.md
- Customizing timeouts: ci/custom-timeouts.md
- Console logs: ci/console-logs.md
- Build badges: ci/build-badges.md
- Scheduled builds: ci/scheduled-builds.md
- Running builds as non-root user: ci/non-root.md
- Triggering webhooks: ci/webhook.md
- Triggering parallel jobs: ci/matrix-builds.md
- Making CI part of Assembly Line workflows: ci/trigger-pipeline-jobs.md
- Managing roles and permissions: ci/permissions.md
- Using shallow clone: ci/shallow-clone.md
- Using git config: ci/set-git-config.md
- Using multiple nodePools: ci/runtime-config.md
- Using vote: ci/set-vote.md
- Language guide:
- Overview: ci/supported-languages.md
- Node.js: ci/nodejs-continuous-integration.md
- Python: ci/python-continuous-integration.md
- Java: ci/java-continuous-integration.md
- Ruby: ci/ruby-continuous-integration.md
- Go: ci/go-continuous-integration.md
- Scala: ci/scala-continuous-integration.md
- PHP: ci/php-continuous-integration.md
- Clojure: ci/clojure-continuous-integration.md
- C/C++: ci/cpp-continuous-integration.md
- Unsupported languages: ci/unsupported-languages.md
- Debugging:
- SSH Access to Build Machine: ci/ssh-access.md
- Troubleshooting: ci/troubleshooting.md
- Tutorials:
- Build and push Docker image to Docker Hub: ci/tutorial/build-push-image-to-docker-hub.md
- Building a custom Docker image to use for CI: ci/tutorial/build-custom-ci-image.md
- Build and Push Java War to Nexus: ci/tutorial/build-push-java-war-nexus-maven.md
- Build and Push image to Jfrog: ci/tutorial/build-push-image-to-jfrog.md
- CD:
- Overview: deploy/continuous-delivery.md
- Tutorials index: deploy/tutorials.md
- Custom deployments with CLIs/SDKs/tools:
- Custom deployments overview: deploy/custom-deployments-overview.md
- Deploy to Amazon ECS: deploy/deploy-amazon-ecs-cloud-native-cli.md
- Deploy to Kubernetes: deploy/tutorial/deploy-to-self-kube-kubectl.md
- Deploy to GKE: deploy/tutorial/deploy-to-gcp-gke-kubectl.md
- Deploy to AWS EC2: deploy/tutorial/deploy-war-nexus-ec2-ansible.md
- Deploy to AWS Elastic Beanstalk:
- Using EB CLI- Single container: deploy/aws-elastic-beanstalk.md
- Using EB CLI- Multiple containers: deploy/aws-elastic-beanstalk-multiple-containers.md
- Using EB CLI- Multi-stage deployments: deploy/aws-elastic-beanstalk-multiple-environments.md
- Shippable managed deployments:
- Overview: deploy/deploy-docker-overview.md
- Deploying a simple application: deploy/continuous-delivery-single-container-docker-application.md
- Using load balancers:
- Overview: deploy/lb-overview.md
- Amazon ECS Classic Load Balancer: deploy/lb-amazon-ecs-classic.md
- Amazon ECS Application Load Balancer: deploy/lb-amazon-ecs-app.md
- Kubernetes: deploy/lb-kubernetes.md
- GKE: deploy/lb-gke.md
- Advanced topics:
- Deploying private images: deploy/deploy-private-images.md
- Deploying multiple containers: deploy/deploy-multiple-containers.md
- Multi-stage deployments: deploy/multi-stage-deployments.md
- Gated deployments: deploy/gated-deployments.md
- Specifying deployment methods: deploy/deployment-methods-overview.md
- Specifying the version to deploy: deploy/deploying-specific-version.md
- Rolling back deployments: deploy/rollback.md
- Sending notifications upon deployments: deploy/deployment-notifications.md
- Customizing container options: deploy/tutorial/customizing-container-options.md
- Setting environment variables: deploy/tutorial/set-environment-deployed-container.md
- Scaling service instances: deploy/tutorial/scaling-services.md
- Managing releases with semantic versioning: release/devops-release-management.md
- Customizing deployed service names: deploy/customize-service-names.md
- Pausing deployments: deploy/pause-deployments.md
- Deleting a deployed service: deploy/deleting-a-service.md
- Resetting a deploy job: deploy/amazon-ecs-deploy-reset.md
#- Deploying app packages to VMs:
#- From S3: deploy/vm-basic.md
#- S3 to multiple VM clusters: deploy/vm-multiple-environments.md
# - From JFrog Artifactory: deploy/vm-jfrog.md
# - From Nexus: deploy/tutorial/deploy-war-nexus-ec2-ansible.md
# - From Git: deploy/vm-gitRepo.md
- Running test suites:
- Overview: validate/devops-validate.md
- Running performance tests with Nouvola: validate/nouvola.md
- Running integration tests with Sauce Labs: validate/sauce-labs.md
- Shippable Server:
- Before you start:
- Overview: platform/server/overview.md
- Installation instructions:
- Onebox pilot: platform/server/install-onebox.md
- Small to mid-sized teams: platform/server/install-two-server.md
- Enterprise installations: platform/server/enterprise.md
- Upgrading Shippable Server: platform/server/upgrade.md
- Troubleshooting: platform/server/troubleshooting.md
- Installer reference: platform/server/install.md
- Configuration:
- Database: platform/server/install-db.md
- Secrets: platform/server/install-vault.md
- Message queue: platform/server/install-rabbitmq.md
- State Storage:
- Overview: platform/server/install-state.md
- GitLab: platform/server/install-gitlab.md
- S3: platform/server/install-s3-state.md
- Redis: platform/server/install-redis.md
- Swarm: platform/server/install-swarm-workers.md
- Self-signed SSL certificates: platform/server/selfsigned-certificates.md
- Auth and source control: platform/server/auth-source-control.md
- Build config: platform/server/build-config.md
- System settings: platform/server/system-settings.md
- Services: platform/server/services.md
- Integrations: platform/server/integrations.md
- Manage admins: platform/server/superuser.md
- Dedicated APIs: platform/server/configure-dedicated-apis.md
- IT Ops:
- Overview: provision/why-infrastructure-provisioning.md
- Tutorials index: provision/tutorials.md
- AWS infrastructure:
- Provision EC2 machines:
- Ansible: provision/tutorial/provision-aws-ec2-ansible.md
- Terraform: provision/tutorial/provision-aws-ec2-terraform.md
- Provision a VPC:
- Ansible: provision/tutorial/provision-aws-vpc-ansible.md
- Terraform: provision/tutorial/provision-aws-vpc-terraform.md
- Provision an ECS cluster:
- Terraform: provision/tutorial/provision-aws-ecs-terraform.md
- Build VM images:
- Packer: provision/tutorial/build-aws-ec2-ami-packer.md
- Google Cloud infrastructure:
- Provision GKE cluster:
- Gcloud SDK: provision/tutorial/provision-gcp-gke-gcloud.md
- Provision VM:
- Ansible: provision/tutorial/provision-gcp-vm-ansible.md
- Build VM images:
- Packer: provision/tutorial/build-google-compute-engine-image-packer.md
- Microsoft Azure infrastructure:
- Ansible:
- Provision with Ansible: provision/microsoft-azure-with-ansible.md
- Terraform:
- Virtual Network: provision/tutorial/provision-azure-vnet-terraform.md
- Digital Ocean infrastructure:
- Provision with Ansible: provision/digital-ocean-with-ansible.md
- Platform:
- Overview: platform/overview.md
- Reference: platform/reference.md
- Tutorials index: platform/tutorials.md
- Configuration:
#- Overview: platform/workflow/overview.md
- YAML structure: platform/workflow/config.md
- Resources:
- Overview: platform/workflow/resource/overview.md
- ciRepo: platform/workflow/resource/cirepo.md
- cliConfig: platform/workflow/resource/cliconfig.md
- cluster: platform/workflow/resource/cluster.md
- dockerOptions: platform/workflow/resource/dockeroptions.md
- externalCIServer: platform/workflow/resource/externalciserver.md
- file: platform/workflow/resource/file.md
- gitRepo: platform/workflow/resource/gitrepo.md
- image: platform/workflow/resource/image.md
- integration: platform/workflow/resource/integration.md
- loadBalancer: platform/workflow/resource/loadbalancer.md
- notification: platform/workflow/resource/notification.md
- params: platform/workflow/resource/params.md
- replicas: platform/workflow/resource/replicas.md
- state: platform/workflow/resource/state.md
- syncRepo: platform/workflow/resource/syncrepo.md
- time: platform/workflow/resource/time.md
- trigger: platform/workflow/resource/trigger.md
- version: platform/workflow/resource/version.md
- webhook: platform/workflow/resource/webhook.md
- Jobs:
- Overview: platform/workflow/job/overview.md
- deploy: platform/workflow/job/deploy.md
- externalCI: platform/workflow/job/externalci.md
- manifest: platform/workflow/job/manifest.md
- provision: platform/workflow/job/provision.md
- release: platform/workflow/job/release.md
- runCI: platform/workflow/job/runci.md
- runSh: platform/workflow/job/runsh.md
- runCLI: platform/workflow/job/runcli.md
- rSync: platform/workflow/job/rsync.md
- Integrations:
- Overview: platform/integration/overview.md
- Airbrake: platform/integration/airBrakeKey.md
- AWS IAM: platform/integration/aws-iam.md
- AWS Keys: platform/integration/aws-keys.md
- Azure: platform/integration/azure-keys.md
- Azure DC/OS: platform/integration/azureDcosKey.md
- Bitbucket: platform/integration/bitbucket.md
- Digital Ocean: platform/integration/do.md
- Docker Cloud: platform/integration/dclKey.md
- Docker Datacenter: platform/integration/ddcKey.md
- Docker Registry: platform/integration/dockerRegistryLogin.md
- Webhook: platform/integration/webhook.md
- Git Credential: platform/integration/git-credential.md
- GitHub: platform/integration/github.md
- GitHub Enterprise: platform/integration/github-enterprise.md
- GitLab: platform/integration/gitlab.md
- Google Cloud: platform/integration/gcloudKey.md
- HipChat: platform/integration/hipchatKey.md
- JFrog Artifactory: platform/integration/jfrog-artifactoryKey.md
- Jira: platform/integration/jira.md
- Joyent Triton: platform/integration/joyentTritonKey.md
- Key-value: platform/integration/key-value.md
- Kubernetes: platform/integration/kubernetes.md
- NewRelic: platform/integration/newRelicKey.md
- Node Cluster: platform/integration/nodeCluster.md
- PEM Keys: platform/integration/pemKey.md
- Quay.io: platform/integration/quayLogin.md
- Slack: platform/integration/slackKey.md
- SSH Keys: platform/integration/sshKey.md
- Deprecated integrations: platform/integration/deprecated-integrations.md
- State:
- Overview: platform/workflow/state/overview.md
- Tutorials: platform/workflow/workflow-tutorials.md
- Runtime:
- Overview: platform/runtime/overview.md
- Nodes: platform/runtime/nodes.md
- Machine image:
- Overview: platform/runtime/machine-image/ami-overview.md
- OS versions: platform/runtime/machine-image/os-versions.md
- Language versions: platform/runtime/machine-image/language-versions.md
- CLI versions: platform/runtime/machine-image/cli-versions.md
- Services versions: platform/runtime/machine-image/services-versions.md
- AMI v7.2.4 (latest): platform/runtime/machine-image/ami-v724.md
- AMI v7.1.4 : platform/runtime/machine-image/ami-v714.md
- AMI v6.12.4: platform/runtime/machine-image/ami-v6124.md
- AMI v6.10.4: platform/runtime/machine-image/ami-v6104.md
- AMI v6.9.4: platform/runtime/machine-image/ami-v694.md
- AMI v6.8.4: platform/runtime/machine-image/ami-v684.md
- AMI v6.7.4: platform/runtime/machine-image/ami-v674.md
- AMI v6.6.4: platform/runtime/machine-image/ami-v664.md
- AMI v6.5.4: platform/runtime/machine-image/ami-v654.md
- AMI v6.4.4: platform/runtime/machine-image/ami-v644.md
- AMI v6.3.4: platform/runtime/machine-image/ami-v634.md
- AMI v6.2.4: platform/runtime/machine-image/ami-v624.md
- AMI v6.1.4: platform/runtime/machine-image/ami-v614.md
- AMI v5.10.4: platform/runtime/machine-image/ami-v5104.md
- AMI v5.8.2: platform/runtime/machine-image/ami-v582.md
- AMI v5.7.3: platform/runtime/machine-image/ami-v573.md
- AMI v5.6.1: platform/runtime/machine-image/ami-v561.md
- AMI v5.5.1: platform/runtime/machine-image/ami-v551.md
- AMI v5.4.1: platform/runtime/machine-image/ami-v541.md
- AMI v5.3.2: platform/runtime/machine-image/ami-v532.md
- AMI stable: platform/runtime/machine-image/ami-stable.md
- Caching: platform/runtime/caching.md
- Tutorials: platform/runtime/runtime-tutorials.md
- Visibility:
- Overview: platform/visibility/overview.md
- Single Pane of Glass: platform/visibility/single-pane-of-glass-spog.md
- Account:
- Default View: platform/visibility/account/default-view.md
- Custom View: platform/visibility/account/custom-view.md
- Subscription:
- Dashboard: platform/visibility/subscription/dashboard.md
- Project:
- Dashboard: platform/visibility/project/dashboard.md
- Badges: platform/visibility/project/badges.md
- Console: platform/visibility/project/console.md
- Resource:
- Dashboard: platform/visibility/resource/dashboard.md
- Job:
- Dashboard: platform/visibility/job/dashboard.md
- Settings: platform/visibility/job/settings.md
- Console: platform/visibility/job/console.md
- Security:
- Overview: platform/security/overview.md
- Permissions and RBAC: platform/security/ci-cd-permissions.md
- Credentials management: platform/security/credential-mgmt.md
- Management:
- Overview: platform/management/overview.md
- Account:
- Set account email: platform/management/account/set-email.md
- Sync your account: platform/management/account/sync.md
- Manually Added Repositories(Shippable Server): platform/management/account/add-projects-manually.md
- Manage git identities: platform/management/account/git-identities.md
- Manage integrations: platform/management/account/integrations.md
- Manage credit cards: platform/management/account/manage-payment-methods.md
- Create API tokens: platform/management/account/api-tokens.md
- Delete account: platform/management/account/delete.md
- Subscription:
- Manage your plan: platform/management/subscription/billing.md
- Manage node pools: platform/management/subscription/node-pools.md
- Manage nodes: platform/management/subscription/nodes.md
- Manage settings: platform/management/subscription/settings.md
- Set up Integrations: platform/management/subscription/integrations.md
- Project:
- Settings: platform/management/project/settings.md
- API:
- Overview: platform/api/api-overview.md
- Tokens: platform/api/api-tokens.md
- Tutorials:
- Workflow:
- Working with Resources: platform/tutorial/workflow/crud-resource.md
- Working with Triggers: platform/tutorial/workflow/crud-trigger.md
- Working with Jobs: platform/tutorial/workflow/crud-job.md
- Add Assembly Line: platform/tutorial/workflow/add-assembly-line.md
- Delete Assembly Line (remove syncRepo): platform/tutorial/workflow/delete-assembly-line.md
- Move jobs/resources to a different repo: platform/tutorial/workflow/migrate-jobs-resources.md
- Reading data from an IN resource: platform/tutorial/workflow/access-resource-data.md
- Writing to an OUT resource: platform/tutorial/workflow/writing-keyvalues-to-output-resource.md
- Using central state: platform/tutorial/workflow/using-central-state.md
- Sharing information across jobs: platform/tutorial/workflow/share-info-across-jobs.md
- Setting environment variables in jobs: platform/tutorial/workflow/set-env-vars-in-job.md
- Sending pull request status to source control: platform/tutorial/workflow/sending-status-to-scm.md
- shipctl utility reference: platform/tutorial/workflow/using-shipctl.md
- runSh Usecases: platform/tutorial/workflow/using-runSh.md
- Run job directly on node: platform/tutorial/workflow/run-job-on-node.md
- Run job on a specific node pool: platform/tutorial/workflow/run-job-on-specific-node-pool.md
- Execute a job against specific IN versions: platform/tutorial/workflow/pin-versions.md
- Using a custom Docker image: platform/tutorial/workflow/use-custom-image.md
- Creating Jira issues from CI and assembly line jobs: platform/tutorial/workflow/create-jira-issues.md
- Filtering your SPOG view: platform/tutorial/workflow/filter-spog-view.md
- Viewing version history for job/resource: platform/tutorial/workflow/view-version-history.md
- Breaking up your workflow into jobs: platform/tutorial/workflow/break-workflow-into-jobs.md
- Running jobs on Windows Server 2016: platform/tutorial/workflow/jobs-windows.md
- Running jobs on Mac OS: platform/tutorial/workflow/jobs-macos.md
- Running jobs on CentOS: platform/tutorial/workflow/jobs-centos.md
- Running jobs on Arm: platform/tutorial/workflow/run-ci-builds-on-arm.md
- Integrations:
- Managing integrations: platform/tutorial/integration/subscription-integrations.md
- Runtime:
- Turn on node caching: platform/tutorial/runtime/turn-on-node-caching.md
- Managing node pools: platform/tutorial/runtime/manage-node-pools.md
- BYON Nodes: platform/tutorial/runtime/manage-byon-nodes.md
- Security:
- Encrypting information: platform/tutorial/security/encrypt-vars.md
- Glossary:
- Complete list of terms: platform/tutorial/glossary.md
- howTo:
- Tutorials: getting-started/tutorials.md
- Completed:
- Build and Push Java War to Nexus: ci/tutorial/build-push-java-war-nexus-maven.md
- Provision AWS VPC using Ansible: provision/tutorial/provision-aws-vpc-ansible.md
- Provision AWS VPC with Terraform: provision/tutorial/provision-aws-vpc-terraform.md
- Provision AWS EC2 machine using Ansible: provision/tutorial/provision-aws-ec2-ansible.md
- Provision AWS EC2 virtual machines with Terraform: provision/tutorial/provision-aws-ec2-terraform.md
- Build and Push image to Docker Hub: ci/tutorial/build-push-image-to-docker-hub.md
- Build a custom CI Image: ci/tutorial/build-custom-ci-image.md
- Build and Push image to Jfrog: ci/tutorial/build-push-image-to-jfrog.md
- Build Google Compute Engine Image with Packer: provision/tutorial/build-google-compute-engine-image-packer.md
- Deploying to Google Kubernetes Engine (GKE) using kubectl: deploy/tutorial/deploy-to-gcp-gke-kubectl.md
- Deploying Java WAR from Nexus to EC2 VM using Ansible: deploy/tutorial/deploy-war-nexus-ec2-ansible.md
- Build AWS EC2 AMI using Packer: provision/tutorial/build-aws-ec2-ami-packer.md
- Creating a kubeconfig file for a self-hosted Kubernetes cluster: deploy/tutorial/create-kubeconfig-for-self-hosted-kubernetes-cluster.md
- Deploying to a self-hosted Kubernetes cluster using kubectl: deploy/tutorial/deploy-to-self-kube-kubectl.md
- Adding an Assembly Line: platform/tutorial/workflow/add-assembly-line.md
- Testing your Assembly Line: platform/tutorial/workflow/test-assembly-line-config.md
#- Triggering jobs: platform/tutorial/workflow/trigger-job.md
- Scheduling workflows to trigger at a specific time: platform/tutorial/workflow/scheduled-triggers.md
- Inserting approval gates: platform/tutorial/workflow/insert-approval-gate.md
- Sending job status notifications: platform/tutorial/workflow/send-job-status-notifications.md
- Setting job timeout: platform/tutorial/workflow/set-job-timeout.md
- Inserting secrets in jobs: platform/tutorial/workflow/insert-secrets-in-job.md
- Deploying to AWS ECS using Shippable: deploy/tutorial/deploy-to-amazon-ecs-shippable.md
- Provision GCP virtual machines with Ansible: provision/tutorial/provision-gcp-vm-ansible.md
- Provision an Amazon ECS cluster with Terraform: provision/tutorial/provision-aws-ecs-terraform.md
- Provision GCP GKE cluster with gcloud: provision/tutorial/provision-gcp-gke-gcloud.md
- Deploying to Google Kubernetes Engine (GKE) using Shippable managed jobs: deploy/tutorial/deploy-to-gcp-gke-shippable.md
- Accessing images from private Docker images from Kubernetes : deploy/tutorial/access-private-docker-image-from-kubernetes.md
- Provision Sonatype Nexus with Gcloud cli: provision/tutorial/provision-nexus-with-gcloudcli.md
- Provision Amazon ElastiCache Memcached with Terraform: provision/tutorial/provision-aws-memcached-terraform.md
- Provision Amazon ElastiCache Redis with Terraform: provision/tutorial/provision-aws-redis-terraform.md
- Provision Amazon Relational Database Service (RDS) with Terraform: provision/tutorial/provision-aws-rds-terraform.md
- Configure Chatops with Slack: platform/tutorial/integration/howto-configure-chatops-with-slack.md
- Provision Elasticsearch on AWS EC2: provision/tutorial/provision-elasticsearch-aws-ec2.md
- Drafts:
- Using a custom alpine image with runSh jobs: platform/tutorial/workflow/use-alpine-custom-image-runsh.md
- Deploy to Amazon ECS Fargate using AWS CLI: deploy/tutorial/deploy-to-amazon-ecs-fargate-awscli.md
- Deploy to Amazon ECS using AWS CLI: deploy/tutorial/deploy-to-amazon-ecs-awscli.md
- Templates:
- Deploying to Google Kubernetes Engine (GKE) using Helm: deploy/tutorial/deploy-to-gcp-gke-helm.md
- Provision GCP virtual machines with Terraform: provision/tutorial/provision-gcp-vm-terraform.md
- Using KOPS to provision a self-hosted Kubernetes cluster on AWS: provision/tutorial/provision-self-kube-on-aws-with-kops.md
- Using KOPS to provision a self-hosted Kubernetes cluster on GCP: provision/tutorial/provision-self-kube-on-gcp-with-kops.md
- Using AWS CLI to provision a self-hosted Kubernetes cluster on AWS: provision/tutorial/provision-self-kube-with-awscli.md
- Deploying to a self-hosted Kubernetes cluster using Helm: deploy/tutorial/deploy-to-self-kube-helm.md
- Deploying to a self-hosted Kubernetes cluster using Shippable managed jobs: deploy/tutorial/deploy-to-self-kube-shippable.md
- Future:
- Provision Azure Virtual Network with Ansible: provision/tutorial/provision-azure-vnet-ansible.md
- Provision Azure Virtual Network with Terraform: provision/tutorial/provision-azure-vnet-terraform.md
- Provision Azure virtual machines with Ansible: provision/tutorial/provision-azure-vm-ansible.md
- Provision Azure virtual machines with Terraform: provision/tutorial/provision-azure-vm-terraform.md
- Build Azure Virtual Hard Disk(VHD) using Packer: provision/tutorial/build-azure-virtual-hard-disk-packer.md
- Using Azure CLI to provision a self-hosted Kubernetes cluster on Azure: provision/tutorial/provision-self-kube-with-azurecli.md
- Deploying to Azure Kubernetes Service (AKS) using kubectl: deploy/tutorial/continuous-deployment-to-aks-kubectl.md
- Deploying to Azure Kubernetes Service (AKS) using Helm: deploy/tutorial/continuous-deployment-to-aks-helm.md
- Deploying to Azure Kubernetes Service (AKS) using Shippable managed jobs: deploy/tutorial/continuous-deployment-to-aks-shippable.md
- Using KOPS to provision a self-hosted Kubernetes cluster on Azure: provision/tutorial/provision-self-kube-on-azure-with-kops.md
- Deploying to Amazon EKS using Shippable managed jobs: deploy/tutorial/continuous-deployment-to-amazon-eks-shippable.md
- Deploying to Amazon EKS using Helm: deploy/tutorial/continuous-deployment-to-amazon-eks-helm.md
- Deploying to Amazon EKS using kubectl: deploy/tutorial/continuous-deployment-to-amazon-eks-kubectl.md
- Typography:
- Typography page: ci/typography.md
- Indirect Links:
- Deprecated:
- Amazon ECR: platform/integration/deprecated/aws-ecr.md
- Amazon ECS: platform/integration/deprecated/aws-ecs.md
- Amazon Web Services: platform/integration/deprecated/aws.md
- Azure DC/OS: platform/integration/deprecated/azure-dcos.md
- Azure: platform/integration/deprecated/azure.md
- Docker Cloud: platform/integration/deprecated/docker-cloud.md
- Docker Datacenter : platform/integration/deprecated/docker-datacenter.md
- Docker Hub: platform/integration/deprecated/docker-hub.md
- Docker Trusted Registry: platform/integration/deprecated/docker-trusted-registry.md
- Docker Private Registry: platform/integration/deprecated/docker-private-registry.md
- Email: platform/integration/deprecated/email.md
- Event Trigger: platform/integration/deprecated/event-trigger.md
- Google Cloud: platform/integration/deprecated/gce.md
- Google Container Registry: platform/integration/deprecated/gcr.md
- Google Container Engine: platform/integration/deprecated/gke.md
- HipChat: platform/integration/deprecated/hipchat.md
- IRC: platform/integration/deprecated/irc.md
- JFrog Artifactory: platform/integration/deprecated/jfrog-artifactory.md
- PEM Keys: platform/integration/deprecated/key-pem.md
- SSH Keys: platform/integration/deprecated/key-ssh.md
- Kubernetes: platform/integration/deprecated/kubernetes.md
- Node Cluster: platform/integration/deprecated/node-cluster.md
- Quay.io: platform/integration/deprecated/quay.md
- Slack: platform/integration/deprecated/slack.md
- Joyent Triton: platform/integration/deprecated/tripub.md