operator-framework / operator-framework/java-operator-sdk
Consider composable non-CRD blocks for workflows / dependencies
まだ誰も着手していません。
- 主要言語
- Java
- スター
- 944
- フォーク
- 242
- 平均マージ
- 1日 4時間
- マージ済み PR(30日)
- 43
説明
Currently, all dependencies using the workflow model (seem to) require either declaring them in their own CRD, or expanding on the blocks used inside a single Reconciler.
It would be nice to be able to define a block of dependencies that is reusable in scope. In my particular case, this is so that we can create separate building blocks for commonly reused entities (see datastores, etc) that do not necessarily meet the case for having a standalone CRD.
This is for two reasons:
- The entities themselves maybe managed by other operators and we are considering dependency / ready states for the particular operator.
- The the individual deployments themselves do not reflect something that is of a desired scope for its own CRD. In several cases, this may be because we are developing an application and the particular implementation under the hood may change, or it is something that doesn't necessarily warrant its own set of description.
- The development of commons libraries for shared patterns between operators or, in the case of multi-controller operators, between different pieces.
Additionally, having a mechanism by which dependencies can be mapped at the level of the individual resource, especially in the case of multiple config maps, secrets, volumeclaims, etc, can then be declared at the point of the dependent resource.
class RedisConfigMap<T: HasMetadata>(val app: App) : AbstractNamedCRUDDependentResource<ConfigMap, T>(ConfigMap::class.java)
{
companion object {
fun <T: HasMetadata> withDiscriminator(app: App) : AbstractNamedCRUDDependentResource<ConfigMap, T> {
return RedisConfigMap<T>(app).withDiscriminator()
}
}
override fun desired(primary: T?, context: Context<T>?): ConfigMap {
return ConfigMapBuilder()
.withNewMetadata()
.withNamespace(primary!!.metadata.name)
.withName(name())
.endMetadata()
.addToData("redis-config", "")
.build()
}
override fun name(): String {
return "${app.appName}-redis-config"
}
Is an example of a piece of code I am working on (it's Kotlin, so, bear with me -- and thank you glasskube!)
It would be nice if, instead of piling the configuration into annotations on the Resolver, individual resources could also support declaring their dependencies.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、issue で参照されている workflow model、Reconciler、Resolver の概念を読み、次に AbstractNamedCRUDDependentResource と RedisConfigMap の例を調査します。現在の CRD ベースおよびアノテーションベースの依存関係宣言を、要求されている再利用可能なブロックおよびリソース単位の依存関係と比較します。完了の条件は、構成可能な依存関係ブロックのサポート範囲と API が定義され、実例で示されていることです。ConfigMaps、Secrets、PersistentVolumeClaims などの再利用されるリソースも対象に含めます。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- java, kotlin, kubernetes
- 領域
- devops, tooling
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- 説明が足りない
- 初心者へのやさしさ
- 25/100