Skip to content

Commit 22d707f

Browse files
author
Christoph Bühler
committed
chore: rename namespaces
1 parent b6f1f37 commit 22d707f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+101
-104
lines changed

DotnetOperatorSdk.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{95F3A6DD-B421-441D-B263-1B34A1465FF5}"
44
EndProject
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dos", "src\Dos\Dos.csproj", "{D7AB6CB9-94B6-4FEB-B7D8-D8AA793BD2A4}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KubeOps", "src\KubeOps\KubeOps.csproj", "{D7AB6CB9-94B6-4FEB-B7D8-D8AA793BD2A4}"
66
EndProject
77
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{50E9B964-68F7-4B9F-BEA8-165CE45BC5C6}"
88
EndProject
9-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dos.Test", "tests\Dos.Test\Dos.Test.csproj", "{A33D30D0-AC1B-48F8-8A5A-36E569981793}"
9+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KubeOps.Test", "tests\KubeOps.Test\KubeOps.Test.csproj", "{A33D30D0-AC1B-48F8-8A5A-36E569981793}"
1010
EndProject
1111
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "build\_build.csproj", "{D47717CB-A02E-4B12-BAA8-1D7F8BAE9BBD}"
1212
EndProject

src/KubeOps/Build/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Threading.Tasks;
2-
using Dos.Operator;
2+
using KubeOps.Operator;
33

4-
namespace Dos.Build
4+
namespace KubeOps.Build
55
{
66
internal static class Program
77
{

src/KubeOps/KubeOps.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<Authors>Christoph Bühler</Authors>
99
<Company>smartive AG</Company>
1010
<Owner>cbuehler</Owner>
11-
<RootNamespace>Dos</RootNamespace>
1211
</PropertyGroup>
1312

1413
<PropertyGroup>

src/KubeOps/Operator/Caching/CacheComparisonResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Dos.Operator.Caching
1+
namespace KubeOps.Operator.Caching
22
{
33
internal enum CacheComparisonResult
44
{

src/KubeOps/Operator/Caching/EntityCache.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System.Collections.Generic;
22
using System.Linq;
3-
using Dos.Operator.Entities;
43
using k8s;
54
using k8s.Models;
65
using KellermanSoftware.CompareNetObjects;
6+
using KubeOps.Operator.Entities;
77

8-
namespace Dos.Operator.Caching
8+
namespace KubeOps.Operator.Caching
99
{
1010
internal class EntityCache<TEntity>
1111
where TEntity : IKubernetesObject<V1ObjectMeta>

src/KubeOps/Operator/Client/ClientUrlFixer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading;
55
using System.Threading.Tasks;
66

7-
namespace Dos.Operator.Client
7+
namespace KubeOps.Operator.Client
88
{
99
internal class ClientUrlFixer : DelegatingHandler
1010
{

src/KubeOps/Operator/Client/IKubernetesClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
using System.Collections.Generic;
33
using System.Threading;
44
using System.Threading.Tasks;
5-
using Dos.Operator.Client.LabelSelectors;
65
using k8s;
76
using k8s.Models;
7+
using KubeOps.Operator.Client.LabelSelectors;
88

9-
namespace Dos.Operator.Client
9+
namespace KubeOps.Operator.Client
1010
{
1111
public interface IKubernetesClient
1212
{

src/KubeOps/Operator/Client/KubernetesClient.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
using System.Net;
55
using System.Threading;
66
using System.Threading.Tasks;
7-
using Dos.Operator.Client.LabelSelectors;
8-
using Dos.Operator.Entities;
97
using k8s;
108
using k8s.Models;
9+
using KubeOps.Operator.Client.LabelSelectors;
10+
using KubeOps.Operator.Entities;
1111
using Microsoft.Rest;
1212
using Newtonsoft.Json.Linq;
1313

14-
namespace Dos.Operator.Client
14+
namespace KubeOps.Operator.Client
1515
{
1616
internal class KubernetesClient : IKubernetesClient
1717
{

src/KubeOps/Operator/Client/LabelSelectors/EqualsSelector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace Dos.Operator.Client.LabelSelectors
3+
namespace KubeOps.Operator.Client.LabelSelectors
44
{
55
public class EqualsSelector : ILabelSelector
66
{

src/KubeOps/Operator/Client/LabelSelectors/ExistsSelector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Dos.Operator.Client.LabelSelectors
1+
namespace KubeOps.Operator.Client.LabelSelectors
22
{
33
public class ExistsSelector : ILabelSelector
44
{

0 commit comments

Comments
 (0)