Skip to content

Commit

Permalink
Updating k8 namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
afroze9 committed Jan 3, 2024
1 parent 4d51053 commit b8b5ab0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Config/ConfigurationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ namespace Nexus.Config;

public class ConfigurationService
{
public string GetBasePath() => @"C:\source\dotnet\temp";
//public string GetBasePath() => Directory.GetCurrentDirectory();
//public string GetBasePath() => @"C:\source\dotnet\temp";
public string GetBasePath() => Directory.GetCurrentDirectory();

public string GetConfigurationPath()
{
Expand Down Expand Up @@ -85,7 +85,7 @@ public string GetDockerComposePath(RunType runType)
{
RunType.Local => "http://localhost:4317",
RunType.Docker => "http://jaeger:4317",
RunType.K8s => "http://jaeger.nexus.svc.cluster.local:4317",
RunType.K8s => "http://jaeger.monitoring.svc.cluster.local:4317",
_ => "",
};

Expand All @@ -109,7 +109,7 @@ public string GetDockerComposePath(RunType runType)
{
RunType.Local => "https://localhost:9200",
RunType.Docker => "https://es01:9200",
RunType.K8s => "https://elastic.nexus.svc.cluster.local:9200",
RunType.K8s => "https://elasticsearch.monitoring.svc.cluster.local:9200",
_ => "",
};

Expand Down
2 changes: 1 addition & 1 deletion nexus-tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>nexus</ToolCommandName>
<OutputPath>$(SolutionDir)\artifacts\$(Configuration)\</OutputPath>
<Version>0.14.0.0</Version>
<Version>0.15.0.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/afroze9/nexus-tool</PackageProjectUrl>
Expand Down

0 comments on commit b8b5ab0

Please sign in to comment.