Skip to content

Commit

Permalink
fix: add DaemonSet to deployment supported kinds (#1090)
Browse files Browse the repository at this point in the history
Signed-off-by: Soumil Paranjpay <[email protected]>
  • Loading branch information
Soumil-07 authored Sep 12, 2023
1 parent 89a9d8f commit 1ab63f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transformer/kubernetes/apiresource/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ type Deployment struct {

// getSupportedKinds returns kinds supported by the deployment
func (d *Deployment) getSupportedKinds() []string {
return []string{podKind, jobKind, common.DeploymentKind, deploymentConfigKind, replicationControllerKind}
return []string{podKind, jobKind, common.DeploymentKind, deploymentConfigKind, replicationControllerKind, daemonSetKind}
}

// createNewResources converts ir to runtime object
Expand Down

0 comments on commit 1ab63f1

Please sign in to comment.