2023 Feb 03 10:53 AM - edited 2023 Feb 07 12:19 PM
Mission: https://developers.sap.com/mission.cp-kyma-multitenant.html
--------------------------
Hi All,
I'm new to Kyma, BTP and all things cloud. Was trying to implement the above tutorial for a Kyma based multitenant app. The backend and app router are deployed to the cluster successfully. I tried subscribing from a Consumer subaccount, but it fails with following error:
Technical Details:
subscribe failed. Error: subscribe failed in create callback.
Error description: Timestamp: Fri Feb 03 09:53:47 GMT 2023, correlationId: 8007ab48-fa1b-4d3a-73cc-d67f2a4efe42, Details: Error manage callbacks: Failed to call callback url.....
eventType=CREATE) Reason: returned value from application: 500 INTERNAL_SERVER_ERROR, with body: create APIRule error
As the error log contains uuids to subaccounts, I havent pasted the whole log, do let me know what else to add.
While exploring the API Rule resource, I found that the Kyma runtime is enforcing beta1 version, so I tweaked the 'createApiRule.js' to create a v1beta APIRule, but the same error still occurs. Could someone support on this?
module.exports = {
createApiRule: createApiRule
}
function createApiRule(svcName, svcPort, host, clusterName) {
let forwardUrl = host + '.' + clusterName;
const supportedMethodsList = [
'GET',
'POST',
'PUT',
'PATCH',
'DELETE',
'HEAD',
];
const access_strategy = {
path: '/.*',
methods: supportedMethodsList,
// mutators: [{
// handler: 'header',
// config: {
// headers: {
// "x-forwarded-host": forwardUrl,
// }
// },
// }],
accessStrategies: [{
handler: 'allow'
}],
};
const apiRuleTemplate = {
apiVersion: 'gateway.kyma-project.io/v1beta1',
kind: 'APIRule',
metadata: {
name: host + '-apirule',
},
spec: {
gateway: 'kyma-gateway.kyma-system.svc.cluster.local',
host: host,
service: {
name: svcName,
port: svcPort,
},
rules: [access_strategy],
},
};
return apiRuleTemplate;
}
Request clarification before answering.
Hi @George_James
We are very happy to welcome you to our SAP BTP Learning Group
While the topic you addressed isn't specifically covered here and since it can hardly be answered without in-depth knowledge, I can point you to an excellent resource to help find an answer to your question.
Please access the
SAP Developers Tutorial Navigator Develop and Register Multitenant Application in the SAP BTP Kyma R...
Click the Feedback option there and choose the channel that fits best for your inquiry
In your case I recommend to post the question in our SAP community where you can directly exchange with experienced experts with project Background - SAP Community is a public space where anyone can start discussions and questions are answered by anyone.
Please always feel free to come back to our SAP BTP Learning group to ask your questions related to our SAP Business Technology Platform Learning Journeys or to our certification published on SAP Learning and collaborate with other learners to reach your learning goals and to prepare for your SAP Certification exams. However, for your particular question, I'd recommend the resource above.
I hope this helps, and best of luck!
Margit
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
6 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.