Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [OCA-1189] Sept marketplace release #9596

Merged
merged 14 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/manager/.changeset/pr-9596-added-1693253466611.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Added
---

Sept marketplace release ([#9596](https://github.com/linode/manager/pull/9596))
3 changes: 3 additions & 0 deletions packages/manager/public/assets/nomadclientsocc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/manager/public/assets/nomadocc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/manager/public/assets/white/nomadclientsocc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions packages/manager/public/assets/white/nomadocc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { UserDefinedField } from '@linode/api-v4/lib/stackscripts';
import { styled, Theme } from '@mui/material/styles';
import { Theme, styled } from '@mui/material/styles';
import * as React from 'react';
import { compose } from 'recompose';

Expand Down Expand Up @@ -82,9 +82,10 @@ class SelectAppPanel extends React.PureComponent<Props> {
}

const newApps = appInstances.filter((app) => {
return ['appwrite', 'illa builder', 'owncloud', 'seatable'].includes(
app.label.toLowerCase().trim()
);
return [
'hashicorp nomad clients cluster',
'hashicorp nomad cluster',
].includes(app.label.toLowerCase().trim());
});

const popularApps = appInstances.slice(0, 10);
Expand Down
46 changes: 46 additions & 0 deletions packages/manager/src/features/OneClickApps/oneClickApps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,52 @@ export const oneClickApps: OCA[] = [
summary: 'Cloud native container registry for Kubernetes and more.',
website: 'https://goharbor.io/docs',
},
{
alt_description:
'HashiCorp containerization tool to use instead of or with Kubernetes',
alt_name: 'Container scheduler and orchestrator',
categories: ['Development'],
colors: {
end: '545556',
start: '60dea9',
},
description:
'A simple and flexible scheduler and orchestrator to deploy and manage containers and non-containerized applications across on-prem and clouds at scale.',
logo_url: 'nomad.svg',
name: 'HashiCorp Nomad Cluster',
related_guides: [
{
href:
'https://www.linode.com/docs/products/tools/marketplace/guides/hashicorp-nomad-cluster',
title: 'Deploy HashiCorp Nomad Cluster through the Linode Marketplace',
},
],
summary: 'Flexible scheduling and orchestration for diverse workloads.',
website: 'https://www.nomadproject.io/docs',
},
{
alt_description:
'HashiCorp Nomad clients for horizontally scaling a Nomad One-Click Cluster',
alt_name: 'Container scheduler and orchestrator',
categories: ['Development'],
colors: {
end: '545556',
start: '60dea9',
},
description:
'A simple deployment of multiple clients to horizontally scale an existing Nomad One-Click Cluster.',
logo_url: 'nomad.svg',
name: 'HashiCorp Nomad Clients Cluster',
related_guides: [
{
href:
'https://www.linode.com/docs/products/tools/marketplace/guides/hashicorp-nomad-clients-cluster',
title: 'Deploy HashiCorp Nomad Clients Cluster through the Linode Marketplace',
},
],
summary: 'Flexible scheduling and orchestration for diverse workloads.',
website: 'https://www.nomadproject.io/docs',
},
{
alt_description:
'HashiCorp containerization tool to use instead of or with Kubernetes',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ export const baseApps = {
'1008125': 'Easypanel',
'1017300': 'Kali Linux',
'1037036': 'Budibase',
// uncomment clusters after marketplace release
// '1226544': 'HashiCorp Nomad Cluster',
// '1226545': 'HashiCorp Nomad Clients Cluster',
'1037037': 'HashiCorp Nomad',
'1037038': 'HashiCorp Vault',
'1051714': 'Microweber',
Expand Down