Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion examples/apps/lgtm/grafana.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function grafanaDeployment(k8sTarget: formae.Target, appNs: ns.Namespace, enable
replicas = 1
selector = new k8s.LabelSelector { matchLabels = grafanaLabels }
template = new k8s.PodTemplateSpec {

metadata = new k8s.PodTemplateMetadata { labels = grafanaLabels }
spec = new k8s.PodSpec {
containers = new Listing {
new k8s.Container {
Expand Down
2 changes: 1 addition & 1 deletion examples/apps/lgtm/minio.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function minioStatefulSet(
replicas = 1
selector = new k8s.LabelSelector { matchLabels = minioLabels }
template = new k8s.PodTemplateSpec {

metadata = new k8s.PodTemplateMetadata { labels = minioLabels }
spec = new k8s.PodSpec {
containers = new Listing {
new k8s.Container {
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/lgtm/otel.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function gatewayDeployment(k8sTarget: formae.Target, appNs: ns.Namespace): dep.D
replicas = 2
selector = new k8s.LabelSelector { matchLabels = gatewayLabels }
template = new k8s.PodTemplateSpec {

metadata = new k8s.PodTemplateMetadata { labels = gatewayLabels }
spec = new k8s.PodSpec {
containers = new Listing {
new k8s.Container {
Expand Down Expand Up @@ -294,7 +294,7 @@ function agentDaemonSet(k8sTarget: formae.Target, appNs: ns.Namespace): ds.Daemo
spec = new ds.DaemonSetSpec {
selector = new k8s.LabelSelector { matchLabels = agentLabels }
template = new k8s.PodTemplateSpec {

metadata = new k8s.PodTemplateMetadata { labels = agentLabels }
spec = new k8s.PodSpec {
serviceAccountName = agentServiceAccount
containers = new Listing {
Expand Down
Loading