Skip to content

Commit

Permalink
feat: add candidate jikkou (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois authored Oct 6, 2023
1 parent 073e160 commit 65c962b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/main/scala/io/sdkman/changelogs/JikkouMigrations.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package io.sdkman.changelogs

import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
import com.mongodb.client.MongoDatabase

@ChangeLog(order = "083")
class JikkouMigrations {

@ChangeSet(
order = "001",
id = "001_add_jikkou_candidate",
author = "fhussonnois"
)
def migration001(implicit db: MongoDatabase) =
Candidate(
candidate = "jikkou",
name = "Jikkou",
description =
"Jikkou is a command-line client for efficient management, automation and provisioning of resources for Kafka, Schema Registry, etc. " +
"Inspired by kubectl and the Kubernetes resource definition files, it offers an intuitive, user-friendly approach to configuration management.",
websiteUrl = "https://streamthoughts.github.io/jikkou/"
).insert()
}

0 comments on commit 65c962b

Please sign in to comment.