-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
165b436
commit e02ae14
Showing
6 changed files
with
36 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/Contrast.K8s.AgentOperator/Entities/Argo/V1Alpha1Rollout.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Contrast Security, Inc licenses this file to you under the Apache 2.0 License. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using JetBrains.Annotations; | ||
using k8s.Models; | ||
using KubeOps.Operator.Entities; | ||
|
||
namespace Contrast.K8s.AgentOperator.Entities.Argo | ||
{ | ||
[KubernetesEntity(Group = "argoproj.io", ApiVersion = "v1alpha1", Kind = "Rollout", PluralName = "rollouts"), UsedImplicitly] | ||
public class V1Alpha1Rollout : CustomKubernetesEntity<V1Alpha1Rollout.RolloutSpec> | ||
{ | ||
//Drop-in replacement for Deployment (with additional fields for the rollout info) | ||
public class RolloutSpec : V1DeploymentSpec | ||
{ | ||
} | ||
} | ||
|
||
} |
30 changes: 0 additions & 30 deletions
30
src/Contrast.K8s.AgentOperator/Entities/V1Alpha1ArgoRollout.cs
This file was deleted.
Oops, something went wrong.