Skip to content
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
1 change: 0 additions & 1 deletion src/openapi/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ AppList:
- prometheus
- rabbitmq
- tekton
- thanos
- sealed-secrets
- trivy

Expand Down
4 changes: 0 additions & 4 deletions src/openapi/settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,6 @@ Settings:
type: string
$ref: 'definitions.yaml#/wordCharacterPattern'
default: gitea
thanos:
type: string
$ref: 'definitions.yaml#/wordCharacterPattern'
default: thanos
kubeflow-pipelines:
type: string
$ref: 'definitions.yaml#/wordCharacterPattern'
Expand Down
3 changes: 1 addition & 2 deletions src/otomi-stack.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CoreV1Api, User as k8sUser, KubeConfig, V1ObjectReference } from '@kubernetes/client-node'
import { CoreV1Api, KubeConfig, User as k8sUser, V1ObjectReference } from '@kubernetes/client-node'
import Debug from 'debug'

import { getRegions, ObjectStorageKeyRegions } from '@linode/api-v4'
Expand Down Expand Up @@ -322,7 +322,6 @@ export default class OtomiStack {
harbor: `lke${lkeClusterId}-harbor`,
loki: `lke${lkeClusterId}-loki`,
gitea: `lke${lkeClusterId}-gitea`,
thanos: `lke${lkeClusterId}-thanos`,
'kubeflow-pipelines': `lke${lkeClusterId}-kubeflow-pipelines`,
}
const objectStorageClient = new ObjectStorageClient(data.apiToken)
Expand Down
1 change: 0 additions & 1 deletion src/validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ export const OBJ_STORAGE_APPS = json({
default: [
{ appId: 'harbor', required: false },
{ appId: 'loki', required: false },
{ appId: 'thanos', required: true },
{ appId: 'kubeflow-pipelines', required: true },
],
})
Expand Down
18 changes: 0 additions & 18 deletions test/apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,24 +228,6 @@ appsInfo:
license: Apache 2.0
about: Sealed Secrets is a Kubernetes Custom Resource Definition Controller which allows you to store even sensitive information in Git repositories.
integration: APL uses Sealed Secrets to provide a secure way to store Kubernetes secrets in Git repositories. Sealed Secrets can be used to store secrets in the values repository.
thanos:
title: Thanos
appVersion: 0.36.1
repo: https://github.com/thanos-io/thanos
maintainers: Thanos
relatedLinks:
- https://thanos.io
license: Apache 2.0
dependencies: Prometheus, Grafana
about: Thanos is a tool to set up a Highly Available Prometheus with long-term storage capabilities.
integration: APL installs and configures Thanos using sidecars and leverages the central object storage configuration.
isDeprecated: true
deprecationInfo:
message: Thanos is being deprecated.
reasons:
- Since most users opt to store metrics externally, thanos saw limited adoption.
options:
- Click 'I understand' to continue using Thanos
trivy:
title: Trivy Operator
appVersion: 0.28.0
Expand Down
13 changes: 0 additions & 13 deletions test/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ k8s:
- name: kyverno
app: kyverno
disableIstioInjection: true
- name: thanos
app: thanos
disableIstioInjection: true
disablePolicyChecks: true
- name: tekton-pipelines
disableIstioInjection: true
disablePolicyChecks: true
Expand Down Expand Up @@ -223,15 +219,6 @@ adminApps:
auth: true
removeRequestHeaders:
- authorization
- name: thanos
tags: [metrics, observability]
ownHost: true
ingress:
- svc: thanos-query
port: 9090
namespace: thanos
type: public
auth: true
- name: loki
tags: [logging, telemetry, observability]
deps: [grafana, prometheus]
Expand Down
Loading