Maxorao commented on issue #5535:
URL: https://github.com/apache/openwhisk/issues/5535#issuecomment-2719499974

   Here is my `run_time.json`:
   ```
   {
       "description": [
           "This file describes the different languages (aka. managed action 
runtimes) supported by the system",
           "as well as blackbox images that support the runtime specification.",
           "Only actions with runtime families / kinds defined here can be 
created / read / updated / deleted / invoked.",
           "Define a list of runtime families (example: 'nodejs') with at least 
one kind per family (example: 'nodejs:20').",
           "Each runtime family needs a default kind (default: true).",
           "When removing or renaming runtime families or runtime kinds from 
this file, preexisting actions",
           "with the affected kinds can no longer be read / updated / deleted / 
invoked. In order to remove or rename",
           "runtime families or runtime kinds, mark all affected runtime kinds 
as deprecated (deprecated: true) and",
           "perform a manual migration of all affected actions.",
           "",
           "This file is meant to list all stable runtimes supported by the 
Apache Openwhisk community."
       ],
       "runtimes": {
           "python": [
               {
                   "kind": "python:3.10",
                   "default": true,
                   "image": {
                       "prefix": "openwhisk",
                       "name": "action-python-v3.10",
                       "tag": "nightly"
                   },
                   "deprecated": false,
                   "attached": {
                       "attachmentName": "codefile",
                       "attachmentType": "text/plain"
                   }
               },
               {
                   "kind": "python:3.11",
                   "default": false,
                   "image": {
                       "prefix": "openwhisk",
                       "name": "action-python-v3.11",
                       "tag": "nightly"
                   },
                   "deprecated": false,
                   "attached": {
                       "attachmentName": "codefile",
                       "attachmentType": "text/plain"
                   }
               }
           ]
       },
       "blackboxes": [
           {
               "prefix": "openwhisk",
               "name": "dockerskeleton",
               "tag": "nightly"
           }
       ]
   }
   ```
   
   Here is my `whisk.properties`:
   ```
   openwhisk.home=/home/huazhang/zyq/openwhisk/ansible/..
   
   python.27=python
   nginx.conf.dir=/var/tmp/wskconf/nginx
   testing.auth=/home/huazhang/zyq/openwhisk/ansible/../ansible/files/auth.guest
   vcap.services.file=
   
   whisk.logs.dir=/var/tmp/wsklogs
   whisk.coverage.logs.dir=/var/tmp/wskcov
   environment.type=local
   whisk.ssl.client.verification=off
   
whisk.ssl.cert=/home/huazhang/zyq/openwhisk/ansible/roles/nginx/files/openwhisk-server-cert.pem
   
whisk.ssl.key=/home/huazhang/zyq/openwhisk/ansible/roles/nginx/files/openwhisk-server-key.pem
   whisk.ssl.challenge=openwhisk
   
   whisk.api.host.proto=https
   whisk.api.host.port=443
   whisk.api.host.name=192.168.35.5
   whisk.api.localhost.name=localhost
   whisk.api.vanity.subdomain.parts=1
   
   whisk.action.concurrency=True
   whisk.feature.requireApiKeyAnnotation=true
   whisk.feature.requireResponsePayload=true
   
   runtimes.manifest={"description": ["This file describes the different 
languages (aka. managed action runtimes) supported by the system", "as well as 
blackbox images that support the runtime specification.", "Only actions with 
runtime families / kinds defined here can be created / read / updated / deleted 
/ invoked.", "Define a list of runtime families (example: 'nodejs') with at 
least one kind per family (example: 'nodejs:20').", "Each runtime family needs 
a default kind (default: true).", "When removing or renaming runtime families 
or runtime kinds from this file, preexisting actions", "with the affected kinds 
can no longer be read / updated / deleted / invoked. In order to remove or 
rename", "runtime families or runtime kinds, mark all affected runtime kinds as 
deprecated (deprecated: true) and", "perform a manual migration of all affected 
actions.", "", "This file is meant to list all stable runtimes supported by the 
Apache Openwhisk community."], "runtimes": {"python": [{"kind
 ": "python:3.10", "default": true, "image": {"prefix": "openwhisk", "name": 
"action-python-v3.10", "tag": "nightly"}, "deprecated": false, "attached": 
{"attachmentName": "codefile", "attachmentType": "text/plain"}}]}, 
"blackboxes": [{"prefix": "openwhisk", "name": "dockerskeleton", "tag": 
"nightly"}]}
   
   limits.actions.invokes.perMinute=60
   limits.actions.invokes.concurrent=30
   limits.triggers.fires.perMinute=60
   limits.actions.sequence.maxLength=50
   
   edge.host=192.168.35.5
   kafka.hosts=192.168.35.5:9093
   redis.host=192.168.35.5
   router.host=192.168.35.5
   zookeeper.hosts=192.168.35.5:2181
   invoker.hosts=192.168.35.8
   
   edge.host.apiport=443
   kafkaras.host.port=8093
   redis.host.port=6379
   invoker.hosts.basePort=12001
   invoker.username=invoker.user
   invoker.password=invoker.pass
   
   controller.hosts=192.168.35.5
   controller.host.basePort=10001
   controller.instances=1
   controller.protocol=https
   controller.username=controller.user
   controller.password=controller.pass
   
   invoker.container.network=bridge
   invoker.container.policy=
   invoker.container.dns=
   invoker.useRunc=True
   
   main.docker.endpoint=192.168.35.5:4243
   
   docker.registry=
   docker.image.prefix=whisk
   #use.docker.registry=false
   docker.port=4243
   docker.timezone.mount=
   docker.image.tag=latest
   docker.tls.cmd=
   docker.addHost.cmd=
   docker.dns.cmd=
   docker.restart.opts=always
   
   db.provider=CouchDB
   db.protocol=http
   db.host=192.168.35.5
   db.port=5984
   db.username=whisk_admin
   db.password=some_passw0rd
   db.prefix=whisk_local_
   db.whisk.auths=whisk_local_subjects
   db.whisk.actions=whisk_local_whisks
   db.whisk.activations=whisk_local_activations
   db.hostsList=192.168.35.5
   db.instances=1
   
   apigw.auth.user=
   apigw.auth.pwd=
   apigw.host.v2=http://192.168.35.5:9000/v2
   ```
   
   I check my elasticsearch docker after it start successfully, so i wonder 
whether there is something configured wrong about elasticsearch?


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to