provider-spotify

module
v0.2.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 6, 2024 License: Apache-2.0

README

Provider Spotify

CI GitHub release Go Report Card

provider-spotify is a Crossplane provider that is built using Upjet code generation tools and exposes XRM-conformant managed resources for the Spotify API. It currently only supports managing Spotify playlists.

This crossplane provider is generated from conradludgate/terraform-provider-spotify.

Table of contents

Getting Started

Requirements

You need to create a Spotify developer app and run Spotify's authorization proxy server spotify-auth-proxy. It is recommended to install the spotify-auth-proxy in the same Kubernetes cluster as the provider-spotify via this Helm chart. Check its README and the comments in the values.yaml to set it up.

Additional documentation:

Configuration

Assuming that spotify-auth-proxy is running, and that the Auhentication against Spotify has been successful, you need to create a Kubernetes Secret that contains the API Key and the URL of the spotify-auth-proxy Kubernetes Service.

  • If you have not set a custom API Key in the Helm chart (default):

    export SPOTIFY_API_KEY=$(kubectl -n spotify-auth-proxy logs spotify-auth-proxy-0 | grep APIKey | cut -d':' -f2 | xargs)
    
  • If you have set a custom API Key in the Helm chart:

    export SPOTIFY_API_KEY=$(kubectl -n spotify-auth-proxy exec spotify-auth-proxy-0 -- env | grep API_KEY | cut -d'=' -f2)
    

Next, create the Kubernetes Secret with the API Key and the URL of the spotify-auth-proxy Kubernetes Service:

sed -e "s/YOUR_API_KEY/$SPOTIFY_API_KEY/" examples/providerconfig/secret.yaml.tmpl > examples/providerconfig/secret.yaml
Installation

Install the provider by using the following command after changing the image tag to the latest release using either of the following methods:

  • Using up:

    up ctp provider install crossplane-contrib/provider-spotify:v0.2.3
    
  • Using crossplane:

    crossplane xpkg install provider crossplane-contrib/provider-spotify:v0.2.3
    
  • Using declarative installation:

    kubectl apply -f examples/install.yaml
    

You can see the API reference here.

Finally, you can install the Secret and the ProviderConfig:

kubectl apply -f examples/providerconfig/

You should get outputs similar to the following:

➜ kubeclt get providers
NAME               INSTALLED   HEALTHY   PACKAGE                                      AGE
provider-spotify   True        True      crossplane-contrib/provider-spotify:v0.2.0   12m
➜ kubectl get spotify
NAME                                           AGE
providerconfig.spotify.crossplane.io/default   4m9s
➜ kubectl get secrets provider-spotify-example-creds
NAME                             TYPE     DATA   AGE
provider-spotify-example-creds   Opaque   1      7m7s

Usage

See this example playlist. Example outputs:

➜ kubectl apply -f examples/playlist/playlist.yaml
playlist.playlist.spotify.crossplane.io/crossplane-can-play-music created
➜ kubectl get spotify
NAME                                                                READY   SYNCED   EXTERNAL-NAME            AGE
playlist.playlist.spotify.crossplane.io/crossplane-can-play-music   True    True     3HXwBJSvBPHnWHQZ3z0o3b   4m44s

NAME                                           AGE
providerconfig.spotify.crossplane.io/default   13m

NAME                                                                             AGE     CONFIG-NAME   RESOURCE-KIND   RESOURCE-NAME
providerconfigusage.spotify.crossplane.io/46502e43-db94-4ba1-85bc-6f7df2352459   4m44s   default       Playlist        crossplane-can-play-music

📣 🔊 Side note, this is a real playlist, which is tracked in this Git repository, PRs are always welcome!

Developing

Run code-generation pipeline:

go run cmd/generator/main.go "$PWD"

Run against a Kubernetes cluster:

make run

Build, push, and install:

make all

Build binary:

make build

Report a Bug

For filing bugs, suggesting improvements, or requesting new features, please open an issue.

Directories

Path Synopsis
Package apis contains Kubernetes API for the provider.
Package apis contains Kubernetes API for the provider.
playlist/v1alpha1
+kubebuilder:object:generate=true +groupName=playlist.spotify.crossplane.io +versionName=v1alpha1
+kubebuilder:object:generate=true +groupName=playlist.spotify.crossplane.io +versionName=v1alpha1
v1alpha1
Package v1alpha1 contains the core resources of the spotify jet provider.
Package v1alpha1 contains the core resources of the spotify jet provider.
v1beta1
Package v1beta1 contains the core resources of the spotify upjet provider.
Package v1beta1 contains the core resources of the spotify upjet provider.
cmd
internal

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL