pixime edited a comment on issue #6135: Unable to deploy on GKE, blocked at bookie.yaml step URL: https://github.com/apache/pulsar/issues/6135#issuecomment-578859072 What do you mean exactly ? This is what I did: **1. fist attempt:** I commented only the PULSAR_PREFIX_zkServers variable ``` apiVersion: v1 kind: ConfigMap metadata: name: bookie-config data: PULSAR_MEM: "\" -Xms4g -Xmx4g -XX:MaxDirectMemorySize=4g\"" PULSAR_GC: "\" -XX:+UseG1GC \"" PULSAR_PREFIX_dbStorage_writeCacheMaxSizeMb: "1024" PULSAR_PREFIX_dbStorage_readAheadCacheMaxSizeMb: "1024" #PULSAR_PREFIX_zkServers: zk-0.zookeeper,zk-1.zookeeper,zk-2.zookeeper PULSAR_PREFIX_statsProviderClass: org.apache.bookkeeper.stats.prometheus.PrometheusMetricsProvider PULSAR_PREFIX_useHostNameAsBookieID: "true" ``` **But it failed**. **2° attempt:** With all PULSAR_PREFIX variables commented ``` apiVersion: v1 kind: ConfigMap metadata: name: bookie-config data: PULSAR_MEM: "\" -Xms4g -Xmx4g -XX:MaxDirectMemorySize=4g\"" PULSAR_GC: "\" -XX:+UseG1GC \"" #PULSAR_PREFIX_dbStorage_writeCacheMaxSizeMb: "1024" #PULSAR_PREFIX_dbStorage_readAheadCacheMaxSizeMb: "1024" #PULSAR_PREFIX_zkServers: zk-0.zookeeper,zk-1.zookeeper,zk-2.zookeeper #PULSAR_PREFIX_statsProviderClass: org.apache.bookkeeper.stats.prometheus.PrometheusMetricsProvider #PULSAR_PREFIX_useHostNameAsBookieID: "true" ``` **And it failed as well**. Same behavior than previously
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
