erDiagram
Web3StorageUser {
}
StripeSubscription {
string stripeSubscriptionId
}
DataStore {
}
Web3StorageUser ||--o| StripeSubscription: hasPaymentPolicy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as pulumi from "@pulumi/pulumi"; | |
import * as k8s from "@pulumi/kubernetes"; | |
let config = new pulumi.Config(); | |
const k8sNamespacePrefix = config.require('k8sNamespacePrefix') | |
// https://github.com/pulumi/pulumi-kubernetes/issues/217#issuecomment-459105809 | |
const addNamespaceTransformation = (namespaceName: string) => (o: any) => { | |
if (o !== undefined) { | |
if (o.metadata !== undefined) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
did:3:kjzl6cwe1jw147h45rino9lc48jaw0ylyczicoj7578cpg9j9lc5yhizuswkit9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
title: Account Payment API | |
version: "0" | |
servers: | |
- url: https://staging.web3.storage/api | |
tags: | |
- name: payment | |
description: Pay for things | |
paths: |
OlderNewer