Skip to content

Commit

Permalink
Remove nav-integration-test from example
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenlj committed Jun 28, 2024
1 parent 6981b28 commit 831759e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkg/apis/kafka.nais.io/v1/topic_doc_example.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package kafka_nais_io_v1

import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/pointer"
"k8s.io/utils/ptr"
)

func ExampleTopicForDocumentation() *Topic {
Expand All @@ -19,16 +19,16 @@ func ExampleTopicForDocumentation() *Topic {
},
},
Spec: TopicSpec{
Pool: "nav-integration-test",
Pool: "dev-nais-dev",
Config: &Config{
CleanupPolicy: pointer.StringPtr("delete"),
MinimumInSyncReplicas: pointer.IntPtr(2),
Partitions: pointer.IntPtr(1),
Replication: pointer.IntPtr(3),
RetentionBytes: pointer.IntPtr(-1),
RetentionHours: pointer.IntPtr(168),
SegmentHours: pointer.IntPtr(168),
MaxMessageBytes: pointer.IntPtr(1048588),
CleanupPolicy: ptr.To("delete"),
MinimumInSyncReplicas: ptr.To(2),
Partitions: ptr.To(1),
Replication: ptr.To(3),
RetentionBytes: ptr.To(-1),
RetentionHours: ptr.To(168),
SegmentHours: ptr.To(168),
MaxMessageBytes: ptr.To(1048588),
},
ACL: TopicACLs{
{
Expand Down

0 comments on commit 831759e

Please sign in to comment.