Skip to content

Commit 041c115

Browse files
authored
Merge pull request linode#144 from linode/release-1.1.12
Release 1.1.12
2 parents 1021ac4 + 0a3bf92 commit 041c115

22 files changed

+89
-32
lines changed

src/components/2_molecules/tools.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
import React from "react";
22
import { StaticQuery, graphql } from "gatsby";
33

4-
const Tools = ({ data }) => (
4+
const Library = ({ data }) => (
55
<React.Fragment>
66
{data.allMarkdownRemark.edges.map(edge => {
77
const { frontmatter } = edge.node;
88
return (
99
<article
1010
key={edge.node.id}
11-
className="item lib-item w-full md:w-1/2 px-4 mb-4 md:mb-8"
11+
className={`item lib-item w-full md:w-1/2 px-4 mb-4 md:mb-8 ${
12+
frontmatter.origin
13+
}`}
1214
>
1315
<div className="p-8 h-full bg-ThemeCell tile">
16+
<div
17+
className={`origin mb-2 text-xs uppercase font-semibold ${frontmatter.origin ===
18+
"linode" && "text-BaseGreen"}`}
19+
>
20+
{frontmatter.origin}
21+
</div>
1422
<header>
1523
<h3 className="mt-0">
1624
<a
@@ -50,13 +58,14 @@ export default props => (
5058
html
5159
frontmatter {
5260
title
61+
origin
5362
external_url
5463
}
5564
}
5665
}
5766
}
5867
}
5968
`}
60-
render={data => <Tools data={data} {...props} />}
69+
render={data => <Library data={data} {...props} />}
6170
/>
6271
);
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: '4.13.0: 2020-01-27'
3+
date: 2020-01-27T05:00:00.000Z
4+
version: 4.13.0
5+
changelog:
6+
- API
7+
---
8+
### Changed
9+
- Updated [OAuth section](https://developers.linode.com/api/v4/#o-auth) with detailed private and public workflows.
10+
11+
- Updated `Create Kubernetes Cluster` ([POST /lke/clusters](https://developers.linode.com/api/v4/lke-clusters/#post)) endpoint to include multiple node pools in the CLI code example.
12+
13+
- Argument order is imperative. The arguments must be in sequential order `--node_pools.type [type]` followed by `--node_pools.count [count]` for each node pool.
14+
15+
- You may add one or more node pool to each cluster.
16+
17+
### Fixed
18+
- Fixed a bug with migrations and host information. If the migration is a disk, the `from_host` is the disk, if it's a clone, the `from_host` is the Linode. Users can see migration job information in the event endpoints:
19+
- `List Events` ([GET /account/events](https://developers.linode.com/api/v4/account-events))
20+
- `View Event` ([GET /account/events/{eventId}](https://developers.linode.com/api/v4/account-events-event-id))
21+
22+
- `+and`, `+or`, and `+order_by` filters for tags are now working.
23+
24+
- Longview will now retain more than 12 hours of statistics for users with the Pro plan.
25+
26+
- The `List Networking Information` ([GET /linode/instances/{linodeId}/ips](https://developers.linode.com/api/v4/linode-instances-linode-id-ips)) endpoint has been updated to only output IPv6 addresses for the specified Linode instead of all the IPv6 addresses for the customer.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: Cloud Manager 0.83.0
3+
date: 2020-01-17T05:00:00.000Z
4+
version: 0.83.0
5+
changelog:
6+
- Cloud Manager
7+
---
8+
9+
### Added:
10+
11+
- Longview:
12+
- Apache
13+
- MySQL
14+
- Processes
15+
- "Show All" option on Domain Records
16+
- Ability to edit AXFR for slave Domains
17+
18+
### Changed:
19+
20+
- Hide Backups CTAs from restricted users
21+
- Update Longview graph colors
22+
- Support API requests for up to 200 entities at a time
23+
- Make One-Click apps visible to all users from primary navigation
24+
25+
### Fixed:
26+
27+
- Rounding in Longview line graphs
28+
- Add space to API Tokens HTML title
29+
- Allow rebooting from Rescue mode

src/content/tools/Pharmer.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "Pharmer"
33
description: Pharmer
44
author: linode
5+
origin: community
56
external_url: https://github.com/pharmer/pharmer
67
weight: 15
78
---

src/content/tools/Rancher.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "Rancher"
33
description: Rancher
44
author: linode
5+
origin: linode
56
external_url: https://www.linode.com/docs/applications/containers/how-to-deploy-apps-with-rancher/
67
weight: 3
78
---

src/content/tools/ansible-linode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "Ansible linode_v4 module"
33
description: Ansible linode_v4 module
4-
author: linode
5-
external_url: https://docs.ansible.com/ansible/2.8/modules/linode_v4_module.html
4+
origin: community
5+
external_url: https://docs.ansible.com/ansible/latest/modules/linode_v4_module.html
66
weight: 2
77
---
88

9-
Ansible includes a "linode_v4" module for automating Linode instance provisioning.
9+
Ansible includes a "linode_v4" module for automating Linode instance provisioning by [Luke Murphy](https://github.com/lwm)

src/content/tools/caddy-server.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/content/tools/certbot.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/content/tools/docker-machine-driver-linode.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "docker-machine-driver-linode"
33
description: docker-machine-driver-linode
44
author: linode
5+
origin: linode
56
external_url: https://github.com/linode/docker-machine-driver-linode
67
weight: 17
78
---

src/content/tools/docker-volume-linode.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "docker-volume-linode"
33
description: docker-volume-linode
44
author: linode
5+
origin: linode
56
external_url: https://github.com/linode/docker-volume-linode
67
weight: 18
78
---

src/content/tools/kube-external-dns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Kubernetes External-DNS"
33
description: Kubernetes External-DNS
4-
author: linode
4+
origin: community
55
external_url: https://github.com/kubernetes-incubator/external-dns/blob/master/docs/tutorials/linode.md
66
weight: 9
77
---

src/content/tools/kube-linode.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
title: "kube-linode"
33
description: kube-linode
4-
author: linode
4+
author: Andrew Low
5+
origin: community
56
external_url: https://github.com/kahkhang/kube-linode
67
weight: 16
78
---
89

9-
Provision a Kubernetes/CoreOS cluster on Linode.
10+
Provision a Kubernetes/CoreOS cluster on Linode by [Andrew Low](https://github.com/kahkhang/)

src/content/tools/linode-blockstorage-csi-driver.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "linode-blockstorage-csi-driver"
33
description: linode-blockstorage-csi-driver
44
author: linode
5+
origin: linode
56
external_url: https://github.com/linode/linode-blockstorage-csi-driver
67
weight: 6
78
---

src/content/tools/linode-cloud-controller-manager.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "linode-cloud-controller-manager"
33
description: linode-cloud-controller-manager
44
author: linode
5+
origin: linode
56
external_url: https://github.com/linode/linode-cloud-controller-manager
67
weight: 8
78
---

src/content/tools/packer-builder-linode.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "packer-builder-linode"
33
description: packer-builder-linode
44
author: linode
5+
origin: linode
56
external_url: https://github.com/linode/packer-builder-linode
67
weight: 5
78
---

src/content/tools/pulumi.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "Pulumi"
33
description: Pulumi
44
author: linode
5+
origin: linode
56
external_url: https://github.com/pulumi/pulumi-linode
67
weight: 4
78
---

src/content/tools/terraform-linode-k8s.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "terraform-linode-k8s"
33
description: terraform-linode-k8s
44
author: linode
5+
origin: linode
56
external_url: https://github.com/linode/terraform-linode-k8s
67
weight: 7
78
---

src/content/tools/terraform-provider-acme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "terraform-provider-acme"
33
description: terraform-provider-acme
4-
author: linode
4+
origin: community
55
external_url: https://www.terraform.io/docs/providers/acme/dns_providers/linode.html
66
weight: 12
77
---

src/content/tools/terraform-provider-linode.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: "terraform-provider-linode"
33
description: terraform-provider-linode
44
author: linode
5+
origin: linode
56
external_url: https://terraform.io/docs/providers/linode/
67
weight: 1
78
---

src/content/tools/traefik.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
title: "traefik"
33
description: traefik
44
author: linode
5-
external_url: https://docs.traefik.io/configuration/acme/#acme-challenge
5+
origin: community
6+
external_url: https://docs.traefik.io/v1.4/configuration/acme/
67
weight: 13
78
---
89

src/content/tools/vagrant-linode.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
title: "vagrant-linode"
33
description: vagrant-linode
44
author: linode
5+
origin: community
56
external_url: https://github.com/displague/vagrant-linode
67
weight: 14
78
---
89

9-
Vagrant-linode is a provider plugin for Vagrant that supports the management of Linode instances.
10+
Vagrant-linode is a provider plugin for Vagrant that supports the management of Linode instances by [Marques Johansson](https://github.com/displague)

src/css/components/2_molecules/tile.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
position: absolute;
1111
top: 0;
1212
left: 0;
13-
width: 100%;
14-
height: 100%;
1513
}
1614

1715
.tile section,

0 commit comments

Comments
 (0)