You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template.WriteString(" # etcd replicas is 3 by default, modification not supported\n")
772
797
template.WriteString(" replicas: 3\n")
798
+
template.WriteString(" # etcd storage size is 10Gi by default, supports both Gi and Mi units\n")
773
799
template.WriteString(" storage_size: 10Gi\n")
774
800
template.WriteString(" # specify the pvc storageclass of the etcd, use the cluster default storageclass by default\n")
775
801
template.WriteString(" # storage_class: gp3\n")
776
802
template.WriteString("controller:\n")
803
+
template.WriteString(" # controller service ports\n")
804
+
template.WriteString(" ports:\n")
805
+
template.WriteString(" controller: 2048\n")
806
+
template.WriteString(" root_controller: 2021\n")
777
807
template.WriteString(" # controller replicas is 2 by default, modification not supported\n")
778
808
template.WriteString(" replicas: 2\n")
809
+
template.WriteString(" # segment capacity is 64Mi by default, supports both Gi and Mi units\n")
810
+
template.WriteString(" segment_capacity: 64Mi\n")
779
811
template.WriteString("store:\n")
780
812
template.WriteString(" replicas: 3\n")
813
+
template.WriteString(" # store storage size is 10Gi by default, supports both Gi and Mi units\n")
781
814
template.WriteString(" storage_size: 10Gi\n")
782
815
template.WriteString(" # specify the pvc storageclass of the store, use the cluster default storageclass by default\n")
783
816
template.WriteString(" # storage_class: io2\n")
784
817
template.WriteString("gateway:\n")
818
+
template.WriteString(" # gateway service ports\n")
819
+
template.WriteString(" # gateway.ports.cloudevents specify the cloudevents port, the default value is gateway.ports.proxy+1 and customization is not supported\n")
820
+
template.WriteString(" ports:\n")
821
+
template.WriteString(" proxy: 8080\n")
822
+
template.WriteString(" cloudevents: 8081\n")
823
+
template.WriteString(" nodeports:\n")
824
+
template.WriteString(" proxy: 30001\n")
825
+
template.WriteString(" cloudevents: 30002\n")
785
826
template.WriteString(" # gateway replicas is 1 by default, modification not supported\n")
786
827
template.WriteString(" replicas: 1\n")
787
828
template.WriteString("trigger:\n")
788
829
template.WriteString(" replicas: 1\n")
789
830
template.WriteString("timer:\n")
790
831
template.WriteString(" # timer replicas is 2 by default, modification not supported\n")
0 commit comments