@@ -118,6 +118,42 @@ var _ = Describe("indingsep test", func() {
118
118
})
119
119
})
120
120
121
+ // Context("Ingestor and Indexer deployment", func() {
122
+ // It("indingsep, smoke, indingsep: Splunk Operator can deploy Ingestors and Indexers with additional configurations", func() {
123
+ // // Create Service Account
124
+ // testcaseEnvInst.Log.Info("Create Service Account")
125
+ // testcaseEnvInst.CreateServiceAccount(serviceAccountName)
126
+
127
+ // // Deploy Ingestor Cluster
128
+ // testcaseEnvInst.Log.Info("Deploy Ingestor Cluster")
129
+ // _, err := deployment.DeployIngestorCluster(ctx, deployment.GetName()+"-ingest", 3, bus, pipelineConfig, serviceAccountName)
130
+ // Expect(err).To(Succeed(), "Unable to deploy Ingestor Cluster")
131
+
132
+ // // Deploy Cluster Manager
133
+ // testcaseEnvInst.Log.Info("Deploy Cluster Manager")
134
+ // _, err = deployment.DeployClusterManagerWithGivenSpec(ctx, deployment.GetName(), cmSpec)
135
+ // Expect(err).To(Succeed(), "Unable to deploy Cluster Manager")
136
+
137
+ // // Deploy Indexer Cluster
138
+ // testcaseEnvInst.Log.Info("Deploy Indexer Cluster")
139
+ // _, err = deployment.DeployIndexerCluster(ctx, deployment.GetName()+"-idxc", "", 3, deployment.GetName(), "", bus, pipelineConfig, serviceAccountName)
140
+ // Expect(err).To(Succeed(), "Unable to deploy Indexer Cluster")
141
+
142
+ // // Ensure that Ingestor Cluster is in Ready phase
143
+ // testcaseEnvInst.Log.Info("Ensure that Ingestor Cluster is in Ready phase")
144
+ // testenv.IngestorReady(ctx, deployment, testcaseEnvInst)
145
+
146
+ // // Ensure that Cluster Manager is in Ready phase
147
+ // testcaseEnvInst.Log.Info("Ensure that Cluster Manager is in Ready phase")
148
+ // testenv.ClusterManagerReady(ctx, deployment, testcaseEnvInst)
149
+
150
+ // // Ensure that Indexer Cluster is in Ready phase
151
+ // testcaseEnvInst.Log.Info("Ensure that Indexer Cluster is in Ready phase")
152
+ // testenv.SingleSiteIndexersReady(ctx, deployment, testcaseEnvInst)
153
+
154
+ // })
155
+ // })
156
+
121
157
Context ("Ingestor and Indexer deployment" , func () {
122
158
It ("indingsep, integration, indingsep: Splunk Operator can deploy Ingestors and Indexers with correct setup" , func () {
123
159
// Create Service Account
0 commit comments