Skip to content

Commit 89f300b

Browse files
committed
fixes
1 parent 872ee79 commit 89f300b

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ trait KubernetesClientModule
3030
)
3131

3232
override def ivyDeps =
33-
super.ivyDeps() ++ fs2 ++ http4s ++ circe ++ circeYaml ++ bouncycastle ++ collectionCompat ++ logging ++ java8compat
33+
super.ivyDeps() ++ http4s ++ circe ++ circeYaml ++ bouncycastle ++ collectionCompat ++ logging ++ java8compat
3434
override def scalacPluginIvyDeps = super.scalacPluginIvyDeps() ++
3535
(if (isScala3(scalaVersion())) Agg.empty else Agg(ivy"org.typelevel:::kind-projector:0.13.3"))
3636

kubernetes-client/src/com/goyeau/kubernetes/client/KubernetesClient.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ import cats.data.OptionT
55
import cats.effect.*
66
import com.goyeau.kubernetes.client.api.*
77
import com.goyeau.kubernetes.client.crd.{CrdContext, CustomResource, CustomResourceList}
8+
import com.goyeau.kubernetes.client.operation.*
89
import com.goyeau.kubernetes.client.util.SslContexts
910
import com.goyeau.kubernetes.client.util.cache.{AuthorizationParse, ExecToken}
1011
import io.circe.{Decoder, Encoder}
12+
import org.http4s.Request
1113
import org.http4s.client.Client
1214
import org.http4s.headers.Authorization
1315
import org.http4s.jdkhttpclient.{JdkHttpClient, JdkWSClient}
14-
import org.http4s.client.websocket.WSClient
16+
import org.http4s.client.websocket.{WSClient, WSRequest}
1517
import org.typelevel.log4cats.Logger
16-
1718
import java.net.http.HttpClient
1819

1920
class KubernetesClient[F[_]: Async: Logger](

kubernetes-client/src/com/goyeau/kubernetes/client/api/PodsApi.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.goyeau.kubernetes.client.api
22

3-
import cats.effect.{Async, Resource}
3+
import cats.effect.Async
44
import cats.effect.syntax.all.*
55
import cats.syntax.all.*
66
import com.goyeau.kubernetes.client.KubeConfig

project/Dependencies.sc

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,8 @@ lazy val circe = {
1010
)
1111
}
1212

13-
lazy val fs2 = {
14-
val version = "3.9.3"
15-
Agg(
16-
ivy"co.fs2::fs2-core:$version",
17-
ivy"co.fs2::fs2-io:$version",
18-
)
19-
}
20-
21-
lazy val http4s = {
22-
val version = "0.23.30"
13+
lazy val http4s = {
14+
val version = "0.23.30"
2315
val jdkClientVersion = "0.10.0"
2416
Agg(
2517
ivy"org.http4s::http4s-dsl:$version",

0 commit comments

Comments
 (0)