Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5576b68
Implement code changes to enhance functionality and improve performance
tg123 Aug 29, 2025
1c101ce
chore: update version to 18.0 in version.json
tg123 Aug 29, 2025
fd3b5cc
fix: correct initialization of opblackList in PluralHelper
tg123 Aug 31, 2025
95c79ee
chore: update SDK version to 18.0 in README.md
tg123 Aug 31, 2025
413398e
Fixdocfx (#82)
tg123 Sep 2, 2025
1bdbe0b
refactor: update IKubernetes interface and template for consistency
tg123 Sep 2, 2025
ac6fdad
feat: add Microsoft.CodeAnalysis.CSharp package and improve source no…
tg123 Sep 2, 2025
d4b707b
chore: update package versions in Directory.Packages.props for compat…
tg123 Sep 2, 2025
2091984
chore: update Microsoft.VisualStudio.SlnGen and Nerdbank.GitVersionin…
tg123 Sep 2, 2025
65e688e
Merge branch 'kubernetes-client:master' into master
tg123 Sep 2, 2025
a899aca
Implement code changes to enhance functionality and improve performance
tg123 Aug 29, 2025
f892e88
chore: update version to 18.0 in version.json
tg123 Aug 29, 2025
412d093
fix: correct initialization of opblackList in PluralHelper
tg123 Aug 31, 2025
f1ce09a
chore: update SDK version to 18.0 in README.md
tg123 Aug 31, 2025
5506928
refactor: update IKubernetes interface and template for consistency
tg123 Sep 2, 2025
5a53d6f
feat: add Microsoft.CodeAnalysis.CSharp package and improve source no…
tg123 Sep 2, 2025
6b26209
chore: update package versions in Directory.Packages.props for compat…
tg123 Sep 2, 2025
b362267
chore: update Microsoft.VisualStudio.SlnGen and Nerdbank.GitVersionin…
tg123 Sep 2, 2025
50411fc
chore: downgrade xunit.runner.visualstudio and Xunit.StaFact package …
tg123 Sep 3, 2025
76f33b0
Merge branch 'gen1.34.0' of https://github.com/tg123/csharp into gen1…
tg123 Sep 3, 2025
535f93f
chore: update package versions in Directory.Packages.props for compat…
tg123 Sep 7, 2025
fc1eb5b
style: format code for consistency and readability
tg123 Sep 7, 2025
e3b5b88
feat: update certificate loading logic for .NET 9 compatibility
tg123 Sep 7, 2025
eb6f16b
fix: update certificate loading method for .NET 9 compatibility
tg123 Sep 7, 2025
c41906e
Merge branch 'kubernetes-client:master' into master
tg123 Sep 7, 2025
6e598d3
Merge remote-tracking branch 'origin/master' into gen1.34.0
tg123 Sep 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: update IKubernetes interface and template for consistency
  • Loading branch information
tg123 committed Sep 2, 2025
commit 1bdbe0bc18aca034e56b20dd6fa0442f686225d3
2 changes: 1 addition & 1 deletion src/KubernetesClient/IKubernetes.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace k8s;

public partial interface IKubernetes : IBasicKubernetes, IDisposable
public partial interface IKubernetes : IDisposable
{
/// <summary>
/// The base URI of the service.
Expand Down
2 changes: 1 addition & 1 deletion src/LibKubernetesGenerator/ApiGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void Generate(OpenApiDocument swagger, IncrementalGeneratorPostInitializa
sc = scriptObjectFactory.CreateScriptObject();
sc.SetValue("groups", groups, true);

context.RenderToContext($"IBasicKubernetes.cs.template", sc, $"IBasicKubernetes.g.cs");
context.RenderToContext($"IKubernetes.cs.template", sc, $"IKubernetes.g.cs");
context.RenderToContext($"AbstractKubernetes.cs.template", sc, $"AbstractKubernetes.g.cs");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace k8s;

/// <summary>
/// </summary>
public partial interface IBasicKubernetes
public partial interface IKubernetes
{
{{for group in groups}}
I{{group}}Operations {{group}} { get; }
Expand Down
Loading