File tree Expand file tree Collapse file tree 6 files changed +7
-5
lines changed
tests/KubeOps.TestOperator/Controller Expand file tree Collapse file tree 6 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 8
8
using KubeOps . Operator . Finalizer ;
9
9
using KubeOps . Operator . Queue ;
10
10
using KubeOps . Operator . Serialization ;
11
+ using KubeOps . Operator . Services ;
11
12
using KubeOps . Operator . Watcher ;
12
13
using Microsoft . Extensions . DependencyInjection ;
13
14
using Microsoft . Extensions . Diagnostics . HealthChecks ;
Original file line number Diff line number Diff line change 8
8
using KubeOps . Operator . Client ;
9
9
using KubeOps . Operator . Finalizer ;
10
10
using KubeOps . Operator . Queue ;
11
+ using KubeOps . Operator . Services ;
11
12
using Microsoft . Extensions . Logging ;
12
13
13
14
namespace KubeOps . Operator . Controller
Original file line number Diff line number Diff line change 8
8
using KubeOps . Operator . Queue ;
9
9
using Microsoft . Extensions . Logging ;
10
10
11
- namespace KubeOps . Operator . Controller
11
+ namespace KubeOps . Operator . Services
12
12
{
13
13
public interface IResourceServices < TEntity >
14
14
where TEntity : IKubernetesObject < V1ObjectMeta >
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using Microsoft . Extensions . DependencyInjection ;
3
3
4
- namespace KubeOps . Operator
4
+ namespace KubeOps . Operator . Services
5
5
{
6
- public class LazyService < T > : Lazy < T >
6
+ internal class LazyService < T > : Lazy < T >
7
7
where T : class
8
8
{
9
9
public LazyService ( IServiceProvider provider )
Original file line number Diff line number Diff line change 6
6
using KubeOps . Operator . Client ;
7
7
using KubeOps . Operator . Finalizer ;
8
8
using KubeOps . Operator . Queue ;
9
- using KubeOps . Operator . Watcher ;
10
9
using Microsoft . Extensions . Logging ;
11
10
12
- namespace KubeOps . Operator . Controller
11
+ namespace KubeOps . Operator . Services
13
12
{
14
13
internal class ResourceServices < TEntity > : IResourceServices < TEntity >
15
14
where TEntity : IKubernetesObject < V1ObjectMeta >
Original file line number Diff line number Diff line change 2
2
using System . Threading . Tasks ;
3
3
using KubeOps . Operator . Controller ;
4
4
using KubeOps . Operator . Rbac ;
5
+ using KubeOps . Operator . Services ;
5
6
using KubeOps . TestOperator . Entities ;
6
7
using KubeOps . TestOperator . Finalizer ;
7
8
using KubeOps . TestOperator . TestManager ;
You can’t perform that action at this time.
0 commit comments