Skip to content

Commit 65c962b

Browse files
authored
feat: add candidate jikkou (#661)
1 parent 073e160 commit 65c962b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package io.sdkman.changelogs
2+
3+
import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
4+
import com.mongodb.client.MongoDatabase
5+
6+
@ChangeLog(order = "083")
7+
class JikkouMigrations {
8+
9+
@ChangeSet(
10+
order = "001",
11+
id = "001_add_jikkou_candidate",
12+
author = "fhussonnois"
13+
)
14+
def migration001(implicit db: MongoDatabase) =
15+
Candidate(
16+
candidate = "jikkou",
17+
name = "Jikkou",
18+
description =
19+
"Jikkou is a command-line client for efficient management, automation and provisioning of resources for Kafka, Schema Registry, etc. " +
20+
"Inspired by kubectl and the Kubernetes resource definition files, it offers an intuitive, user-friendly approach to configuration management.",
21+
websiteUrl = "https://streamthoughts.github.io/jikkou/"
22+
).insert()
23+
}

0 commit comments

Comments
 (0)